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
vlsi:resources:latex:thesis [27/10/2013 20:48]
pacher
vlsi:resources:latex:thesis [27/10/2013 23:46] (versione attuale)
pacher
Linea 19: Linea 19:
 Quick code references and guidelines for your master or PhD dissertations in LaTex. Quick code references and guidelines for your master or PhD dissertations in LaTex.
  
 +See also [[ http://​openwetware.org/​wiki/​LaTeX_template_for_PhD_thesis|here]]
  
 ====== 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 37: Linea 58:
  
 <​code>​ <​code>​
-\documentclass[a4paper,​11pt]{book}+\documentclass[a4paper,​10pt,​openright]{book}
 </​code>​ </​code>​
  
-====== Frontpage ======+====== Frontpage(s) ======
  
 +Cover and first page for PhD thesis {{:​vlsi:​phd_thesis_cover.tex.gz}}
  
 +====== 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 99:
 ====== 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.
  
  
Linea 75: Linea 121:
 Any new ''​\chapter{}''​ statement will result in a new appendix with a default ​ Any new ''​\chapter{}''​ statement will result in a new appendix with a default ​
 ordering A, B, C etc. ordering A, B, C etc.
 +
 +
 +
 +
 +====== Glossary ======
 +
 +Useful to collect the list of acronyms...
 +
  
 ====== References (Bibliography) ====== ====== References (Bibliography) ======