Differenze

Queste sono le differenze tra la revisione selezionata e la versione attuale della pagina.

Link a questa pagina di confronto

Prossima revisione
Revisione precedente
Prossima revisione Entrambe le parti successive la revisione
vlsi:resources:latex:thesis [27/10/2013 19:17]
pacher creata
vlsi:resources:latex:thesis [27/10/2013 21:37]
pacher
Linea 22: Linea 22:
 ====== Sources organization ====== ====== Sources organization ======
  
-Split your work in a tree-like structure ​and use the ''​\input{}''​ statement to include +It is a good practice to split your work into separate ''​.tex''​ files  
-sources in your main ''​.tex''​ file+for each component (abstract, chapters etc.) and use the ''​\input{}''​ statement ​ 
 +to include ​different ​sources in main ''​.tex''​ file (e.g. ''​thesis.tex''​),​ 
  
 <​code>​ <​code>​
-\input{...} +\begin{document} 
-\input{...}+ 
 +\input{frontpages.tex} 
 +\input{abstract.tex} 
 +\tableofcontents 
 +\input{chapter1.tex
 +\input{chapter2.tex} 
 +..
 +... 
 +\input{conclusions.tex} 
 +\input{appendixA.tex} 
 +\input{appendixB.tex} 
 +... 
 +\input{references.tex} 
 +\listoftables 
 +\listoffigures 
 +\input{glossary.tex} 
 +\input{acknowledgements.tex} 
 + 
 +\end{document}
 </​code>​ </​code>​
  
Linea 40: Linea 60:
 </​code>​ </​code>​
  
-====== Frontpage ======+====== Frontpage(s) ======
  
  
  
 +
 +====== Abstract ======
 +
 +LaTex ''​article''​ and ''​report''​ classes provide a built-in ''​abstract''​ environment, ​
 +
 +<​code>​
 +\begin{abstract}
 +...
 +\end{abstract}
 +</​code> ​
 +
 +
 +When using the ''​book''​ class you can use an unordered ''​\chapter*{}''​ statement indeed, ​
 +
 +<​code>​
 +\chapter*{Abstract}
 +...
 +</​code>​
 +
 +
 +====== Table of contents ======
 +
 +A table of contents is automatically generated by LaTex with a ''​\tableofcontents''​ statement.
 +
 +<​code>​
 +\tableofcontents
 +</​code> ​
 +
 +====== Backmatter ======
 +
 +Appendices, glossary and references close the thesis.
 +
 +
 +====== Appendices ======
 +
 +Appendices are created with the ''​\appendix''​ command and work as any LaTex chapters,
 +with the possibility of using sections, subsections etc.
 +
 +
 +<​code>​
 +\appendix
 +% Appendix A
 +\chapter{Appendix A title}  ​
 +\section{...}
 +...
 +...
 +\section{...}
 +...
 +...
 +% Appendix B
 +\chapter{Appendix B title}
 +...
 +...
 +</​code>​
 +
 +Any new ''​\chapter{}''​ statement will result in a new appendix with a default ​
 +ordering A, B, C etc.
  
 ====== References (Bibliography) ====== ====== References (Bibliography) ======