summaryrefslogtreecommitdiff
path: root/esempi
diff options
context:
space:
mode:
Diffstat (limited to 'esempi')
-rw-r--r--esempi/05.tex44
-rw-r--r--esempi/06.tex59
2 files changed, 103 insertions, 0 deletions
diff --git a/esempi/05.tex b/esempi/05.tex
new file mode 100644
index 0000000..3f0ccd8
--- /dev/null
+++ b/esempi/05.tex
@@ -0,0 +1,44 @@
+% 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{Formule matematiche\thanks{
+I sorgenti di questo documento sono nel file \texttt{05.tex}}}
+\author{Elena ``of Valhalla''}
+\date{16 marzo 2011}
+
+\begin{document}
+
+\maketitle
+\tableofcontents
+
+Ciò per cui \LaTeX\ è specialmente famoso è la sua capacita di
+trattare formule matematiche, anche di una certa complessità.
+
+\section{Formule}
+
+Le formule possono essere inserite direttamente nel testo, specialmente se
+sono semplici come questo esempio: $2 + 2 \equiv 1 \pmod{3}$, ma anche più
+complicate, come $\sum_{n=1}^{m}n = \frac{m(m+1)}{2} $.
+
+Formule più complicate possono essere messe in una loro riga, ad esempio
+$$f(x)=\int_{x_0}^{x} \frac{e^x\frac{\log(x+1)}{x^3+2x^2-1}}{\frac{3}{4}x^4}$$
+oppure in modo tale da poter essere richiamate nel testo, ad esempio
+\begin{equation}
+X = \bigcup_{i \in I} X_i
+\label{eqno1}
+\end{equation}
+alla quale ci si può riferire come equazione \ref{eqno1}.
+
+\end{document}
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}