main.tex 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  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. % If it is still a draft, doesn't work because of xcolor and hyperref inclutions?
  38. %\usepackage[printwatermark]{xwatermark}
  39. %\usepackage[]{xcolor}
  40. %\newwatermark[allpages,color=red!10,angle=45,scale=2,xpos=0,ypos=-80]{DRAFT}
  41. %\newwatermark[allpages,color=red!10,angle=45,scale=2,xpos=0,ypos=80]{DRAFT}
  42. %%% Define command for playing around with margin paragraphs.
  43. \definecolor{Warning}{rgb}{1.0,0.5,0.0}
  44. \newcommand{\Warning}[2][Warning]{\marginpar{\fcolorbox{Warning}{white}{\begin{minipage}{\linewidth}\textbf{\textcolor{Warning}{\emph{#1:}}}\par \tiny \sffamily #2\end{minipage}}}}
  45. %%% Convenient todo command
  46. \usepackage{xifthen}
  47. \newcommand{\todo}[1][]{%
  48. \ifthenelse{\equal{#1}{}}% if no argument given
  49. { \emph{TODO}\Warning[TODO]{}}%
  50. %else
  51. {\emph{\uppercase{TODO}}\Warning[TODO]{#1}}%
  52. }
  53. %%% Put text inside a square %%%
  54. \newcommand{\squareit}[1]{\fbox{\parbox{\textwidth}{#1}}}
  55. % For the use of \nobreakdash-
  56. \usepackage{amsmath}
  57. %%% Non breaking prints of the ISO standards
  58. \newcommand{\nd}{\nobreakdash-}
  59. %%% Commands for writing out the standards
  60. \def\setpos#1#2#3{\expandafter\def\csname GO-#1-#2-\endcsname{#3}}
  61. \def\getpos#1#2{\csname GO-#1-#2-\endcsname}
  62. \setpos{A}{1}{black}
  63. \setpos{B}{14}{white}
  64. % Tables something?
  65. \usepackage{tabularx}
  66. % For H placement in figures
  67. \usepackage{float}
  68. % To be able to adjust caption with using \captionsetup{width=.8\linewidth}, also subfigures
  69. \usepackage{graphicx,caption}
  70. % Ability to use subfigures
  71. \usepackage{subcaption}
  72. % Makes DOI numbers to links
  73. \usepackage{doi}
  74. % For the use of \nobreakdash-
  75. \usepackage{amsmath}
  76. % The footnotes are renumbered for each page
  77. \usepackage[perpage]{footmisc}
  78. %& Make bold mathmode available
  79. \usepackage{bm}
  80. % Make it possible to change size of tables
  81. \usepackage{adjustbox}
  82. %% For highlighting using \hl
  83. \usepackage{color,soul}
  84. % Use SI units
  85. \usepackage{siunitx}
  86. %% Enable use of svg
  87. \usepackage{svg}
  88. %%% Tell \includegraphics where to search for files.
  89. \graphicspath{{figures/}{figures/measurements/}}
  90. % \usepackage{changebar}
  91. \department{Institutionen för datavetenskap}
  92. \departmentenglish{Department of Computer and Information Science}
  93. \departmentshort{IDA}
  94. % If this is a thesis at the cognitive science study programme, use
  95. % the "area" command to generate a proper (?) ISRN
  96. % \area{KOGVET-A}
  97. % Include an external supervisor on the cover page
  98. \externalsupervisor{Gunnar Karlström}
  99. \supervisor{Peter Johansson}
  100. \examiner{Michael Josefsson}
  101. \titleenglish{Reuse and verification of test equipment for ISO 7637}
  102. %\subtitleenglish{SUBTITLE}
  103. \titleswedish{Återanvändning och verifiering av testutrustning för ISO 7637}
  104. \thesissubject{Elektronik}
  105. \publicationyear{2020}
  106. \currentyearthesisnumber{001}
  107. \dateofpublication{2020-xx-xx}
  108. \author{Jonatan Gezelius}
  109. % Two authors
  110. % \author{\parbox{\textwidth}{Ola Leifler\\
  111. % Alexander Sanner}}
  112. \begin{document}
  113. \chapterstyle{VZ43}
  114. \include{intro}
  115. \include{theory}
  116. \include{method}
  117. \include{results}
  118. \include{discussion}
  119. \include{conclusion}
  120. \printbibliography
  121. \end{document}
  122. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  123. %%% demothesis.tex ends here