diff options
Diffstat (limited to 'esempi/09.tex')
-rw-r--r-- | esempi/09.tex | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/esempi/09.tex b/esempi/09.tex new file mode 100644 index 0000000..c2bdcc7 --- /dev/null +++ b/esempi/09.tex @@ -0,0 +1,51 @@ +% 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} + +\ifx\pdfoutput\undefined % LaTeX normale +\usepackage[dvips]{graphicx} +\else % pdfLaTeX +\usepackage[pdftex]{graphicx} +\DeclareGraphicsExtensions{.pdf,.png,.jpg} +\fi + +\usepackage{babel} +\frenchspacing +\usepackage[utf8]{inputenc} + +\title{Immagini\thanks{ +I sorgenti di questo documento sono nel file \texttt{09.tex}}} +\author{Elena ``of Valhalla''} +\date{16 marzo 2011} + +\begin{document} + +\maketitle +\tableofcontents + +\section{Float} + +In \LaTeX alcuni elementi non hanno una posizione prefissata, ma vengono +inseriti automaticamente nel posto migliore in base ad alcune regole +tipografiche. Questi comprendono tavole (ovvero il contenuto di un +environment \texttt{table}, da non confondersi con le tabelle, +\texttt{tabular}) e figure. + +\section{Immagini} + +\begin{figure} + \centering + \includegraphics[width=0.3\textwidth]{logo} + \caption{Il logo del \texttt{LIFO}} + \label{fig:lifo} +\end{figure} + +Prima di questo testo è stata insierita la figura \ref{fig:lifo}, +che appare più in basso sulla pagina. + +\end{document} |