LTHthesis: for PhD, Lic Tech, and MSc theses at Automatic Control
\documentclass{LTHthesis}
The standard class for all PhD, Lic Tech, and MSc theses at Automatic Control. Template. Technical reports may also use LTHthesis, or the class LTHreports described below.
It is based on the class memoir, but you should not have to read any of its almost 600 pages manual. The packages graphicx, amsmath, ntheorem and biblatex are implicitly included.
Special features of LTHthesis
- Sectional divisions
The sectional commands, (\part, \chapter, \section) have the form \section[toc-title][head-title]{title}, where the optional arguments have the following meanings:
No optional argument: the title text is used for the division title, the ToC title and the running head title.
One optional argument: the title text is used for the division title; the toc-title is used for the ToC title and the running head title.
Two optional arguments: the title text is used for the division title; the toc-title is used for the ToC title; the head-title is used for the running head title.
- Bibliographies
As mentioned above, this class implicitly uses biblatex instead of the traditional bibtex. The main reason for this is that it makes multiple bibliographies quite easy. The typical use in the main document would be as follows:
\documentclass{LTHthesis} ... \addbibresource{mybibA.bib} %only one per command \addbibresource{mybibB.bib} ... \begin{document} ... \printbibliography \end{document}
One typical example of multiple bibliographies is when you want to mention a small number of your own publications at the beginning of a thesis, and still have the main bibliography at the end. The use would then be
\begin{refsection} \nocite{publKey1} \nocite{publKey2} \nocite{publKey3} \printbibliography[heading=none] \end{refsection}
The default sorting order in the bibliographies is alphabetical by authors. If you want another sorting order in a short extra bibliography, then this is achieved by the environment \begin{refcontext}[sorting=none] ... \end{refcontext} enclosing the part where you want a special sorting order.
When you then run latex or pdflatex on the main tex-file, there will be some information at the end of the output instructing you to run biber on some special files which are named. Please do so.
- Titlepages
The titlepages are the two (possibly four) first pages of the thesis. They are specified according to this example:
\begin{titlepages} \title{A Very Important Contribution to the Theory} \author{Pelle Pettersson} \year{2013} \type{Licentiate Thesis} % The default is 'MSc Thesis', so you will want to set this \TFRT{9999} % The thesis number. Check with Mika. \ISBNprint{long number} % The ISBN number for a printed publication (only for PhD theses) \ISBNweb{long number} % The ISBN number for web publication (only for PhD theses) \printer{MediaTryck} % Probably MediaTryck, check with Mika. \dedication{To my mother} % Optional. \end{titlepages}
The order of the various entries in your source code is irrelevant. The printed order will be determined entirely by the class.- Papers
Many theses contain reprints of research papers published elsewhere. The method to include these papers is shown in the following example:
\begin{papers} \paper{My First Paper} \authors{Pelle Pettersson \and Nisse Nilsson} \begin{abstract} abstract text \end{abstract} \vfill Originally published in xxx. Reprinted with permission. \newpage text text text \printbibliography[heading=subbibliography] \paper{My Second Paper} etc. etc \end{papers}
In a paper the local bibliography is printed where the command \printbibliography is given. The local bibliography is automatically limited to the \cites given inside the paper.
- Subcaptions
The \subcaption command is similar to the \caption command and can only be used inside a float environment. It typesets an identified subtitle, where the identification is an alphabetic character enclosed in parentheses. The subcaption is typeset within a box which is the width of the surrounding environment, so \subcaption should only be used within a fixed width box of some kind, for example a minipage.
In order to use \subcaption, the surrounding float type must be specified via the command \newsubfloat in the preamble, i.e. between \documentclass and \begin{document}. The typical specification would then be \newsubfloat{figure}
Note that \subcaption makes packages like subfigure, subfig, caption etc. unnecessary, and they are in fact counterproductive.