Dissertation: Commissioning of the Front-End Electronics of the LHCb Scintillating Fibre Tracker https://cds.cern.ch/record/2810671
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

50 lines
1.1 KiB

  1. % The following settings are inspired from
  2. % https://www.semipol.de/2018/06/12/latex-best-practices.html#building-latex-documents
  3. % Filter out acceptable warnings that would otherwise flood the error window
  4. \RequirePackage{silence}
  5. \WarningFilter{scrreprt}{Usage of package `titlesec'}
  6. \WarningFilter{scrreprt}{Activating an ugly workaround}
  7. \WarningFilter{titlesec}{Non standard sectioning command detected}
  8. \WarningFilter{microtype}{protrusion codes list}
  9. \WarningFilter{latexfont}{Font}
  10. \WarningFilter{latexfont}{Some font shapes}
  11. \documentclass[
  12. paper = a4,
  13. fontsize = 12pt,
  14. BCOR = 10mm,
  15. toc = listofnumbered,
  16. numbers = noenddot,
  17. headings = normal,
  18. listof = leveldown]{scrbook}
  19. \input{preamble.tex}
  20. \begin{document}
  21. \frontmatter
  22. \input{titlepage}
  23. \input{abstract}
  24. \cleardoublepage
  25. \tableofcontents
  26. \cleardoublepage
  27. \mainmatter
  28. \include{introduction}
  29. \include{lhcb}
  30. \include{scifi}
  31. \include{fee}
  32. %\include{testbeams}
  33. \include{commissioning}
  34. \include{performance}
  35. \include{conclusion}
  36. \printbibliography[heading=bibintoc]
  37. \include{acknowledgements}
  38. \end{document}