When I make a table of contents with the article and report classes the results are different. I have two questions.
Why does this happen?
How can I make the
reportToC look like thearticleone?
Here are a pair of examples:
\documentclass[]{report}
\usepackage{lipsum}
\begin{document}
\tableofcontents
\section{Section}
\lipsum
\end{document}
\documentclass[]{article}
\usepackage{lipsum}
\begin{document}
\tableofcontents
\section{Section}
\lipsum
\end{document}