Il corso è da 2 crediti. È indirizzato agli studenti di Matematica, ma può essere utile a qualunque studente di facoltà scientifiche, specialmente in vista della tesi di laurea. L'esame consiste in due parti:
presentazione e discussione di un "progettino": 3-4 pagine di senso compiuto, a scelta dello studente, scritte in LaTeX, e contenenti gli elementi principali (intestazione, sezionamento, formule, rimandi ecc.). Il progettino va presentato o in versione cartacea o elettronica, in entrambi i casi con sia il testo sorgente che il typeset. Il progetto sarà respinto se contenente non pochi fra gli errori tipografici, di LaTeX o di stile discussi durante il corso: lettere accentate, dettagli tipografici (virgolette, trattini ecc.), capoversi, uso di accenti con backslash nel sorgente al posto di unicode, rimandi incrociati, formule scritte come testo o viceversa, regola dei simboli matematici formati da più lettere, formule su più righe, gestione non standard di andate a capo, font, spazi, cambi di pagina.
traduzione in italiano e formattazione in LaTeX di un articolo di ricerca in inglese generato casualmente dal sito Mathgen (per gli studenti di matematica) o da SCIgen (per gli studenti di informatica o TWM). Sarà il docente a fornire allo studente un articolo individualizzato.
L'esame avviene in un appello ufficiale oppure su appuntamento individuale. Il candidato contatti il docente via mail con indicativamente una settimana di anticipo. Il docente spedirà una mail di conferma con l'articolo in pdf da tradurre. Il risultato dell'esame è approvato o non approvato, senza voto.
I principali pacchetti che ho usato per scrivere le presentazioni sono TeXPower
e Marslides.
Introduction
Question: What is TeX???
Answer: it is not a cartoon character
(that one is Tex
Willer, with lower-case x). It is a text and page layout system,
specially designed for mathematical and scientific printing. Browse
the .pdffiles in this site to see some of TeX's
capabilities.
Question: How shall I pronounce
"TeX"?
Answer: The official pronunciation is
tricky for speakers of many languages. You will be forgiven if you
just say "TEK", as in English "TECHnology". Please do
not say "teks" as in (English) "Texas"!
LaTeX para las humanidades (pdf),
Este documento tiene como objetivo ofrecer a todos los autores relacionados con cualquier campo de las Humanidades una introducción práctica, elemental y amena al uso de LaTeX.
Bibfilex A free software to manage Biblatex files, by Massimo Nardello.
Here is a zip archive (last
updated on 2018-08-31) with style file and sample template for print thesis, updated for PDF-A compliance. For this package to work, it is advisable to update the TeX installation to the most recent full version. Older versions lack some essential components.
The example is for a Math thesis, but the style file allows thesis
in any subject. Unzip the archive and then compile the master file tesi.tex. To produce the final pdf you should also personalize the content of the file tesi.xmpdata.
TeX FAQ
The special font for the number sets are loaded with
This special calligraphic font is called RSFS (Ralph Smith's
Formal Font). It is available from CTAN
(search for the "rsfs" string). A ready-made pack for Textures on
the Macintosh is here.
With the LaTeX package mathrsfs
you can call the rsfs font with \mathscr{A}. With
PlainTeX you get the same effect with the following
definitions:
To make it comfortable to type in Italian when using LaTeX
load the inputenc package like this:
\usepackage[latin1]{inputenc} for
use with Windows or Unix,
\usepackage[applemac]{inputenc} for
use with Macintosh.
A discussion on the correct use of the accents on the letters
"i" and "u" in Italian spelling can be found here.
Headers and footers: sometimes the title of a chapter or of a
section is too long to fit into the page header. Then you can
declare a shortened title with \chaptermark and
\sectionmark:
\chapter{full title}
\chaptermark{title for header}
\sectionmark{title for
header}
\section{full title}
\sectionmark{title for
header}
Note that \sectionmark is repeated twice,
before AND after \section. This is awkward, but
it's not my fault. Read here
for more explanation.