main.tex 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  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. % Tables something?
  56. \usepackage{tabularx}
  57. % For H placement in figures
  58. \usepackage{float}
  59. % To be able to adjust caption with using \captionsetup{width=.8\linewidth}, also subfigures
  60. \usepackage{graphicx,caption}
  61. % Ability to use subfigures
  62. \usepackage{subcaption}
  63. % Makes DOI numbers to links
  64. \usepackage{doi}
  65. % The footnotes are renumbered for each page
  66. \usepackage[perpage]{footmisc}
  67. %& Make bold mathmode available
  68. \usepackage{bm}
  69. % Make it possible to change size of tables
  70. \usepackage{adjustbox}
  71. %% For highlighting using \hl
  72. \usepackage{color,soul}
  73. % Use SI units
  74. \usepackage{siunitx}
  75. %% Enable use of svg
  76. \usepackage{svg}
  77. %%% Tell \includegraphics where to search for files.
  78. \graphicspath{{figures/}{figures/measurements/}}
  79. % \usepackage{changebar}
  80. \department{Institutionen för datavetenskap}
  81. \departmentenglish{Department of Computer and Information Science}
  82. \departmentshort{IDA}
  83. % If this is a thesis at the cognitive science study programme, use
  84. % the "area" command to generate a proper (?) ISRN
  85. % \area{KOGVET-A}
  86. % Include an external supervisor on the cover page
  87. \externalsupervisor{Gunnar Karlström}
  88. \supervisor{Peter Johansson}
  89. \examiner{Michael Josefsson}
  90. \titleenglish{Reuse and verification of test equipment for ISO 7637}
  91. %\subtitleenglish{SUBTITLE}
  92. \titleswedish{Återanvändning och verifiering av testutrustning för ISO 7637}
  93. \thesissubject{Elektronik}
  94. \publicationyear{2020}
  95. \currentyearthesisnumber{001}
  96. \dateofpublication{2020-xx-xx}
  97. \author{Jonatan Gezelius}
  98. % Two authors
  99. % \author{\parbox{\textwidth}{Ola Leifler\\
  100. % Alexander Sanner}}
  101. \begin{document}
  102. \chapterstyle{VZ43}
  103. \include{intro}
  104. \include{theory}
  105. \include{method}
  106. \include{results}
  107. \include{discussion}
  108. \include{conclusion}
  109. \printbibliography
  110. \end{document}
  111. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  112. %%% demothesis.tex ends here