51 lines
1.1 KiB
TeX
51 lines
1.1 KiB
TeX
% The following settings are inspired from
|
|
% https://www.semipol.de/2018/06/12/latex-best-practices.html#building-latex-documents
|
|
|
|
% Filter out acceptable warnings that would otherwise flood the error window
|
|
\RequirePackage{silence}
|
|
\WarningFilter{scrreprt}{Usage of package `titlesec'}
|
|
\WarningFilter{scrreprt}{Activating an ugly workaround}
|
|
\WarningFilter{titlesec}{Non standard sectioning command detected}
|
|
\WarningFilter{microtype}{protrusion codes list}
|
|
\WarningFilter{latexfont}{Font}
|
|
\WarningFilter{latexfont}{Some font shapes}
|
|
|
|
\documentclass[
|
|
paper = a4,
|
|
fontsize = 12pt,
|
|
BCOR = 10mm,
|
|
toc = listofnumbered,
|
|
numbers = noenddot,
|
|
headings = normal,
|
|
listof = leveldown]{scrbook}
|
|
|
|
\input{preamble.tex}
|
|
|
|
\begin{document}
|
|
|
|
\frontmatter
|
|
|
|
\input{titlepage}
|
|
|
|
\input{abstract}
|
|
\cleardoublepage
|
|
|
|
\tableofcontents
|
|
\cleardoublepage
|
|
|
|
\mainmatter
|
|
\include{introduction}
|
|
\include{lhcb}
|
|
\include{scifi}
|
|
\include{fee}
|
|
%\include{testbeams}
|
|
\include{commissioning}
|
|
\include{performance}
|
|
\include{conclusion}
|
|
|
|
\printbibliography[heading=bibintoc]
|
|
\include{acknowledgements}
|
|
|
|
|
|
\end{document}
|