summaryrefslogtreecommitdiff
path: root/esempi/06.tex
diff options
context:
space:
mode:
Diffstat (limited to 'esempi/06.tex')
-rw-r--r--esempi/06.tex59
1 files changed, 59 insertions, 0 deletions
diff --git a/esempi/06.tex b/esempi/06.tex
new file mode 100644
index 0000000..4c7fb87
--- /dev/null
+++ b/esempi/06.tex
@@ -0,0 +1,59 @@
+% Copyright (C) 2004 - 2011 Elena Grandi
+% This work is licensed under the Creative Commons Attribution-ShareAlike
+% 2.5 Italy License. To view a copy of this license, visit
+% http://creativecommons.org/licenses/by-sa/2.5/it/ or send a letter to
+% Creative Commons, 171 Second Street, Suite 300, San Francisco,
+% California, 94105, USA.
+
+\documentclass[a4paper,italian]{article}
+
+\usepackage{babel}
+\frenchspacing
+\usepackage[utf8]{inputenc}
+
+\usepackage{amsfonts}
+
+\title{Environment\thanks{
+I sorgenti di questo documento sono nel file \texttt{06.tex}}}
+\author{Elena ``of Valhalla''}
+\date{16 marzo 2011}
+
+\begin{document}
+
+\maketitle
+\tableofcontents
+
+\section{Elenchi}
+
+Oltre a quelli visti per la modalità matematica, \LaTeX\ offre vari
+ambienti, in inglese \emph{environment}, per l'inserimento di testo
+con particolari esigenze di formattazione.
+
+Si possono avere:
+
+\begin{itemize}
+\item elenchi puntati, come questo;
+\item elenchi numerati, ad esempio
+ \begin{enumerate}
+ \item primo elemento
+ \item secondo elemento
+ \end{enumerate}
+\item elenchi descrittivi, ad esempio
+ \begin{description}
+ \item[un nome] descrizione
+ \item[altro nome] altra descrizione
+ \end{description}
+\end{itemize}
+
+\section{Tabelle}
+
+Un'altro \emph{environment} permette di inserire tabelle:
+
+\begin{tabular}[h]{r@{.}lc|p{8em}}
+1 & 0 & uno & questa è la prima riga della tabella \\
+\hline
+2 & 3 & due virgola tre & la seconda riga \\
+18 & 42 & diciotto virgola quarantadue & \\
+\end{tabular}
+
+\end{document}