summaryrefslogtreecommitdiff
path: root/esempi/08.tex
diff options
context:
space:
mode:
authorElena ``of Valhalla'' Grandi <elena.valhalla@gmail.com>2011-03-14 10:17:07 +0100
committerElena ``of Valhalla'' Grandi <elena.valhalla@gmail.com>2011-03-14 10:17:07 +0100
commit0ac8d492b12d9e46e46219d9fd83151fab7de505 (patch)
tree9972c0cc611d79e789d3c80f8947fb7ff3b30908 /esempi/08.tex
parent20dd1632dab77ba31572239e64cc051d5ba2bfb8 (diff)
Esempi 07, 08 e 09
Diffstat (limited to 'esempi/08.tex')
-rw-r--r--esempi/08.tex58
1 files changed, 58 insertions, 0 deletions
diff --git a/esempi/08.tex b/esempi/08.tex
new file mode 100644
index 0000000..c713227
--- /dev/null
+++ b/esempi/08.tex
@@ -0,0 +1,58 @@
+% 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}
+
+\newcommand{\nuovo}[1]{\textbf{#1}}
+
+\newenvironment{nota}
+ {\begin{minipage}{0.5\textwidth}
+ \medskip
+ %\hrulefill\\
+ \rule{\textwidth}{0.5pt}
+ \textbf{Nota:}\\}
+ {\rule{\textwidth}{0.5pt}
+ \smallskip
+ \end{minipage}}
+
+\title{Personalizzazione\thanks{
+I sorgenti di questo documento sono nel file \texttt{08.tex}}}
+\author{Elena ``of Valhalla''}
+\date{16 marzo 2011}
+
+\begin{document}
+
+\maketitle
+\tableofcontents
+
+\section{Nuovi comandi}
+
+\LaTeX permette di definire \nuovo{nuovi comandi} che possono agire su un
+numero di parametri compreso tra 0 e 9.
+
+\section{Nuovi ambienti}
+
+È anche possibile definire nuovi environment, ad esempio una nota
+più stretta dell'intera pagina.
+
+\begin{nota}
+ Questo testo fa parte di un environment definito in questo documento.
+\end{nota}
+
+Ovviamente tali environment possono essere usati quanto si vuole nel
+documento, come un normale environment predefinito.
+
+\begin{nota}
+ Anche questo testo fa parte del \nuovo{nuovo environment}, definito
+ nel preambolo di questo documento.
+\end{nota}
+
+\end{document}