Files
writeup/example_thesis/example.tex
2014-01-16 14:06:12 +09:00

60 lines
1.5 KiB
TeX

\documentclass{mythesis}
\usepackage{mythesis}
%% You can set the line spacing this way
%\setallspacing{double}
%% or a section at a time like this
%\setfrontmatterspacing{double}
%% PDF metadata
\makeatletter
\@ifpackageloaded{hyperref}{%
\hypersetup{%
pdftitle = {Studying B to K pi decays with LHCb},
pdfsubject = {Andy Buckley's PhD thesis},
pdfkeywords = {LHCb, B, physics, LHC, heavy flavour},
pdfauthor = {\textcopyright\ Andy Buckley}
}
}{}
\makeatother
%% Define the thesis title and author
\title{A study of \BToKPi decays with\\ the \LHCb experiment}
\author{Andrew Gordon Buckley}
%% Start the document
\begin{document}
%% Define the un-numbered front matter (cover pages, rubrik and table of contents)
\begin{frontmatter}
\input{chapters/frontmatter}
\end{frontmatter}
%% Start the content body of the thesis
\begin{mainmatter}
%% Actually, more semantic chapter filenames are better, like "chap-bgtheory.tex"
\input{chapters/chap1}
\input{chapters/chap2}
\input{chapters/chap3}
\input{chapters/chap4}
\input{chapters/chap5}
\input{chapters/chap6}
%% To ignore a specific chapter while working on another,
%% making the build faster, comment it out like this:
%\input{chapters/chap4}
\end{mainmatter}
%% Produce the appendices
\begin{appendices}
%\input{chapters/appendices}
\end{appendices}
%% Produce the un-numbered back matter (e.g. colophon,
%% bibliography, tables of figures etc., index...)
\begin{backmatter}
\input{chapters/backmatter}
\end{backmatter}
%% Close
\end{document}