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 21:16]
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 (e.g. ''​thesis.tex''​)+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>​
Linea 31: Linea 34:
 \input{abstract.tex} \input{abstract.tex}
 \tableofcontents \tableofcontents
-\listoftables 
-\listoffigures 
 \input{chapter1.tex} \input{chapter1.tex}
 \input{chapter2.tex} \input{chapter2.tex}
Linea 42: Linea 43:
 ... ...
 \input{references.tex} \input{references.tex}
 +\listoftables
 +\listoffigures
 \input{glossary.tex} \input{glossary.tex}
 \input{acknowledgements.tex} \input{acknowledgements.tex}
Linea 55: Linea 58:
  
 <​code>​ <​code>​
-\documentclass[a4paper,​11pt]{book}+\documentclass[a4paper,​10pt,​openright]{book}
 </​code>​ </​code>​
  
 ====== Frontpage(s) ====== ====== 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, ​
  
-====== Abstract ======+<​code>​ 
 +\begin{abstract} 
 +... 
 +\end{abstract} 
 +</​code>​  
 + 
 + 
 +When using the ''​book''​ class you can use an unordered ''​\chapter*{}''​ statement indeed, ​
  
 <​code>​ <​code>​
 \chapter*{Abstract} \chapter*{Abstract}
- +...
-Write here your abstract...+
 </​code>​ </​code>​
- 
  
  
Linea 110: 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) ======