I would like to have multiple sections in mi documents, something like this
1 Capitulo
1.1 Algo
1.1.1 Algo
1.1.1.1 Algo
1.1.1.1.1 Algo
...
this is my test
Code: Select all
\documentclass[12pt]{article}
\usepackage{geometry} % see geometry.pdf on how to lay out the page. There's lots.
\geometry{a4paper} % or letter or a5paper or ... etc
% \geometry{landscape} % rotated page geometry
% See the ``Article customise'' template for come common customisations
\title{Documento}
\author{Hugo}
\date{} % delete this line to display the current date
%%% BEGIN DOCUMENT
\begin{document}
\maketitle
\tableofcontents
\section{Capitulo}
\subsection{Algo}
\subsubsection{Algo}
\end{document}
thanks