|
To know subjects available for graduate or undergraduate thesis, contact Prof. Antonio Lioy by mail (lioy at polito dot it) or phone (011-564-7021)
The preferred format for thesis written inside the TORSEC group is LaTeX. If you don't have it available, the following tools are suggested:
Addtional rules for TORSEC thesis:
\usepackage{times}
However if you create the PDF file directly with pdflatex then there is
no advantage in using the Postscript fonts (because pdflatex is not using
these fonts but it emulates them).
\usepackage[pdftex]{graphicx}
\DeclareGraphicsExtensions{.pdf,.png,.jpg,.gif}
and then including the picture file via the following command (the text in brackets is to be used only if you want to fit the picture to the page size, otherwise the natural dimension of the picture would be used):
\begin{figure}
\centerline{\includegraphics[width=0.9\textwidth]{myfig.pdf}}
\label{fig:myfig}
\caption{My figure.}
\end{figure}
Note that PDF is the preferred format, because it allows inclusion of the
picture both in PS and PDF.
\usepackage[latin1]{inputenc}
\usepackage{color}
\usepackage[a4paper,colorlinks=true,urlcolor=blue,citecolor=blue,linkcolor=blue]{hyperref}
In this way internal document references (e.g. page and section numbers) are automatically turned into links while external web references must explicitly be formatted by using the following syntax:
\url{http://security.polito.it}
\def\ipsec{IPsec}
\def\rfc[1]{RFC-#1}
remember that for using these abbreviations you need to insert a backslash after them, unless there is a puntuaction mark:
The \ipsec\ architecture is defined in the standard \rfc{1825}.
\begin{document}
\renewcommand{\lapagina}{\Roman{page}}
\frontespizio
\indici
...
\renewcommand{\lapagina}{\arabic{page}}
% here go the chapters
...
\advance\voffset -5mm \advance\textheight 20mm
\usepackage[top=2cm, bottom=2cm, left=2cm, right=2cm]{geometry}