| language | en |
|---|---|
| layout | default |
| title | Didactic material |
| permalink | /en/materiale.html |
{%include pageglobal.html %}
This material has been developed for the students of this course. Since knowledge should be considered everyone's heritage, my material is available to anyone who wants to study the course topics. However, such material cannot be used, even in part, for other purposes or in other courses, without my explicit permission and without citing the source.
The course is currently given in Italian. The material include an English translation of all the slides used during the course lectures. Such a translation is the first result of a long and complex adaptation work. Therefore, the slides may still contain some errors, typos and poorly readable statements. I'll do my best to refine them, but it takes time. Suggestions are always appreciated!
{% if materialinfo.slides %}
-
{% for s in materialinfo.slides %}
-
{% if s.nome[language] %}{{ s.nome[language] }}
{% elsif s.nome['all'] %}{{ s.nome['all'] }}{% endif %}
{% if s.commento[language] %}
{{ s.commento[language] }} {% elsif s.commento['all'] %}
{{ s.commento['all'] }} {% endif %} {% endfor %}
{% if materialinfo.projects %}
-
{% for s in materialinfo.projects %}
-
{% if s.nome[language] %}{{ s.nome[language] }}
{% elsif s.nome['all'] %}{{ s.nome['all'] }}{% endif %}
{% if s.commento[language] %}
{{ s.commento[language] }} {% elsif s.commento['all'] %}
{{ s.commento['all'] }} {% endif %} {% endfor %}
Before trying to run or modify these examples, read the Software section and set-up all the required software
{% if materialinfo.examples %}
-
{% for s in materialinfo.examples %}
-
{% if s.nome[language] %}{{ s.nome[language] }}
{% elsif s.nome['all'] %}{{ s.nome['all'] }}{% endif %}
{% if s.commento[language] %}
{{ s.commento[language] }} {% elsif s.commento['all'] %}
{{ s.commento['all'] }} {% endif %} {% endfor %}
{% if courseinfo.testi %}
{% assign a = courseinfo.testi | where_exp: "testo","testo.lingua == language" %}
-
{% for testo in a %}
- {{ testo.autori }}, {{ testo.titolo }}, {{ testo.editore }}
{% if testo.commento[language] %}
{{ testo.commento[language] }} {% elsif testo.commento['all'] %}
{{ testo.commento['all'] }} {% endif %} {% endfor %}