| language | it |
|---|---|
| layout | default |
| title | Materiale didattico |
| permalink | /it/materiale.html |
{%include pageglobal.html %}
Questo materiale, mostrato o sviluppato durante le lezioni, è dedicato agli studenti di questo corso. Visto che la conoscenza deve essere considerata un patrimonio di tutti, il mio materiale didattico è a disposizione di chiunque voglia servirsene per studiare la materia. Tuttavia, il materiale non può essere usato, neppure in parte, per altri scopi o in altri corsi senza il mio esplicito consenso e senza citare la provenienza del materiale stesso.
{% 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 %}
Prima di eseguire o modificare questi esempi, consultate la sezione Software e installate tutto il software necessario
{% 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 %}