main.tex 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. %%% demothesis.tex ---
  2. %%
  3. %% Filename: demothesis.tex
  4. %% Description:
  5. %% Author: Ola Leifler
  6. %% Maintainer:
  7. %% Created: Thu Oct 14 12:52:20 2010 (CEST)
  8. %% Version: $Id$
  9. %% Version:
  10. %% Last-Updated: Wed Jun 28 10:57:24 2017 (+0200)
  11. %% By: Ola Leifler
  12. %% Update #: 169
  13. %% URL:
  14. %% Keywords:
  15. %% Compatibility:
  16. %%
  17. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  18. %%
  19. %%% Commentary:
  20. %%
  21. %%
  22. %%
  23. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  24. %%
  25. %%% Change log:
  26. %%
  27. %%
  28. %% RCS $Log$
  29. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  30. %%
  31. %%% Code:
  32. \documentclass[bachelor,lith,english,table]{liuthesis}
  33. %% Settings go in settings.tex
  34. \include{settings}
  35. \usepackage{rotating}
  36. \usepackage{color}
  37. %%% Define command for playing around with margin paragraphs.
  38. \definecolor{Warning}{rgb}{1.0,0.5,0.0}
  39. \newcommand{\Warning}[2][Warning]{\marginpar{\fcolorbox{Warning}{white}{\begin{minipage}{\linewidth}\textbf{\textcolor{Warning}{\emph{#1:}}}\par \tiny \sffamily #2\end{minipage}}}}
  40. %%% Convenient todo command
  41. \usepackage{xifthen}
  42. \newcommand{\todo}[1][]{%
  43. \ifthenelse{\equal{#1}{}}% if no argument given
  44. { \emph{TODO}\Warning[TODO]{}}%
  45. %else
  46. {\emph{\uppercase{TODO}}\Warning[TODO]{#1}}%
  47. }
  48. %%% Put text inside a square %%%
  49. \newcommand{\squareit}[1]{\fbox{\parbox{\textwidth}{#1}}}
  50. % Tables something?
  51. \usepackage{tabularx}
  52. % For H placement in figures
  53. \usepackage{float}
  54. % To be able to adjust caption with using \captionsetup{width=.8\linewidth}, also subfigures
  55. \usepackage{graphicx,caption}
  56. % Ability to use subfigures
  57. \usepackage{subcaption}
  58. % Makes DOI numbers to links
  59. \usepackage{doi}
  60. % The footnotes are renumbered for each page
  61. \usepackage[perpage]{footmisc}
  62. %& Make bold mathmode available
  63. \usepackage{bm}
  64. % Make it possible to change size of tables
  65. \usepackage{adjustbox}
  66. %% For highlighting using \hl
  67. \usepackage{color,soul}
  68. % Use SI units
  69. \usepackage{siunitx}
  70. % For consistent formatting of lengths and other physical quantities.
  71. %\RequirePackage[squaren]{SIunits}
  72. % If it is still a draft
  73. %\usepackage[printwatermark]{xwatermark}
  74. %\usepackage[]{xcolor}
  75. %\newwatermark[allpages,color=red!10,angle=45,scale=2,xpos=0,ypos=-80]{DRAFT}
  76. %\newwatermark[allpages,color=red!10,angle=45,scale=2,xpos=0,ypos=80]{DRAFT}
  77. %% Enable use of svg
  78. \usepackage{svg}
  79. %%% Tell \includegraphics where to search for files.
  80. \graphicspath{{figures/}{figures/measurements/}}
  81. % \usepackage{changebar}
  82. \department{Institutionen för datavetenskap}
  83. \departmentenglish{Department of Computer and Information Science}
  84. \departmentshort{IDA}
  85. % If this is a thesis at the cognitive science study programme, use
  86. % the "area" command to generate a proper (?) ISRN
  87. % \area{KOGVET-A}
  88. % Include an external supervisor on the cover page
  89. \externalsupervisor{Gunnar Karlström}
  90. \supervisor{Peter Johansson}
  91. \examiner{Michael Josefsson}
  92. \titleenglish{Reuse and verification of test equipment for ISO 7637}
  93. %\subtitleenglish{SUBTITLE}
  94. \titleswedish{Återanvändning och verifiering av testutrustning för ISO 7637}
  95. \thesissubject{Elektronik}
  96. \publicationyear{2020}
  97. \currentyearthesisnumber{001}
  98. \dateofpublication{2020-xx-xx}
  99. \author{Jonatan Gezelius}
  100. % Two authors
  101. % \author{\parbox{\textwidth}{Ola Leifler\\
  102. % Alexander Sanner}}
  103. \begin{document}
  104. \chapterstyle{VZ43}
  105. \include{intro}
  106. \include{theory}
  107. \include{method}
  108. \include{results}
  109. \include{discussion}
  110. \include{conclusion}
  111. \printbibliography
  112. \end{document}
  113. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  114. %%% demothesis.tex ends here