Così la mia main è così
- Codice:
\documentclass{article}
%in that file you will find the packages and other macro needed like \R for the real number set.
\input{Preamble}
\date{\today}
\begin{document}
%this creates the title page. You must complete the information there
\input{Titlepage}
\clearpage
\thispagestyle{empty}
\tableofcontents
\clearpage
\pagenumbering{arabic}
\setcounter{page}{1}
\clearpage
\begin{appendices}
\end{appendices}
\clearpage
\bibliography{biblio.bib}
\bibliographystyle{CUP} % author-year citation style
% \bibliographystyle{siam} % numbered citation style (deprecated by some)
\end{document}
Ora se voglio inserire una sezione come devo fare? Cioé se voglio inserire \section{Binary forms}
poi devo creare un'altro file LaTeX chiamarlo Binary forms? O devo dire che è la sezione di questa main in qualche modo? Come farlo?