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
|
\documentclass{minimal}
\begin{document}
Hello
\begin{centering} centered \end{centering}
world
\begin{outer}
\begin{inner} inline environment \end{inner}
\end{outer}
\begin{tabular}{%
ccc}
$a$ & $b$ & $c$ \\
$d$ & $e$ & $f$
\end{tabular}
\begin{itemize}
\item item is indented twice
and the next line is indented to match
\end{itemize}
\begin{description}
\item[One] IngenierÃa Electrónica ``first'';
a couple of lines.
\item[Doctorado] ``Generic title''
(Author): commentaries here
\end{description}
\begin{mydocument}
hello world
\end{mydocument}
\end{document}
|