[LaTeX] Section e main

Sto scrivendo la tesi e quindi ho una main e molte sezioni. Ora invece di scrivere tutto in un file evidentemente è molto meglio scrivere le diverse sezioni/capitoli separatamente e poi nella main semplicemente le includo tutte.

Così la mia main è così

\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?

Risposte
megas_archon
[inline]\input{path/to/file/binary.tex}[/inline]
Oppure [inline]\include[/inline]: https://tex.stackexchange.com/questions ... vs-include

Grazie

Rispondi
Per rispondere a questa discussione devi prima effettuare il login.