Questa è una vecchia versione del documento!


Guidelines for master and PhD disserations

Contents
  • Introduction

Introduction

Quick code references and guidelines for your master or PhD dissertations in LaTex.

Sources organization

Split your work in a tree-like structure and use the \input{} statement to include sources in your main .tex file

\input{...}
\input{...}

Documentclass

\documentclass[a4paper,11pt]{book}

Frontpage

Backmatter

Appendices, glossary and references close the thesis.

Appendices

Appendices are created with the \appendix command and work as any LaTex chapter, with sections and subsection.

\appendix
% Appendix A
\chapter{Appendix A title}  
\section{...}
...
...
\section{...}
...
...
% Appendix B
\chapter{Appendix B title}
...
...

The default appendix ordering follows A, B, C etc. letters.

References (Bibliography)

http://en.wikibooks.org/wiki/LaTeX/Bibliography_Management

Built-in environment: thebibliography

External tool: BibTeX (now BibLaTex) http://www.bibtex.org/



Last update: Luca Pacher - Oct 27, 2013