Differenze

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

Link a questa pagina di confronto

Entrambe le parti precedenti la revisione Revisione precedente
Prossima revisione
Revisione precedente
Prossima revisione Entrambe le parti successive la revisione
vlsi:resources:latex:thesis [27/10/2013 20:48]
pacher
vlsi:resources:latex:thesis [27/10/2013 21:19]
pacher
Linea 23: Linea 23:
  
 Split your work in a tree-like structure and use the ''​\input{}''​ statement to include Split your work in a tree-like structure and use the ''​\input{}''​ statement to include
-sources in your main ''​.tex''​ file+sources in your main ''​.tex''​ file (e.g. ''​thesis.tex''​)
  
 <​code>​ <​code>​
-\input{...} +\begin{document} 
-\input{...}+ 
 +\input{frontpages.tex} 
 +\input{abstract.tex} 
 +\tableofcontents 
 +\listoftables 
 +\listoffigures 
 +\input{chapter1.tex
 +\input{chapter2.tex} 
 +..
 +... 
 +\input{conclusions.tex} 
 +\input{appendixA.tex} 
 +\input{appendixB.tex} 
 +... 
 +\input{references.tex} 
 +\input{glossary.tex} 
 +\input{acknowledgements.tex} 
 + 
 +\end{document}
 </​code>​ </​code>​
  
Linea 40: Linea 58:
 </​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 ====== ====== Backmatter ======
Linea 53: Linea 97:
 ====== Appendices ====== ====== Appendices ======
  
-Appendices are created with the ''​\appendix''​ command and work as any LaTex chapter+Appendices are created with the ''​\appendix''​ command and work as any LaTex chapters
-with sections ​and subsection.+with the possibility of using sections, subsections etc.