blob: bebe9e45d36c14dd1ff91584399636965a5d9e33 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
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}
|