| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149 |
- %%% demothesis.tex ---
- %%
- %% Filename: demothesis.tex
- %% Description:
- %% Author: Ola Leifler
- %% Maintainer:
- %% Created: Thu Oct 14 12:52:20 2010 (CEST)
- %% Version: $Id$
- %% Version:
- %% Last-Updated: Wed Jun 28 10:57:24 2017 (+0200)
- %% By: Ola Leifler
- %% Update #: 169
- %% URL:
- %% Keywords:
- %% Compatibility:
- %%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%
- %%% Commentary:
- %%
- %%
- %%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%
- %%% Change log:
- %%
- %%
- %% RCS $Log$
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%
- %%% Code:
- \documentclass[bachelor,lith,english,table]{liuthesis}
- %% Settings go in settings.tex
- \include{settings}
- \usepackage{rotating}
- \usepackage{color}
- % If it is still a draft, doesn't work because of xcolor and hyperref inclutions?
- %\usepackage[printwatermark]{xwatermark}
- %\usepackage[]{xcolor}
- %\newwatermark[allpages,color=red!10,angle=45,scale=2,xpos=0,ypos=-80]{DRAFT}
- %\newwatermark[allpages,color=red!10,angle=45,scale=2,xpos=0,ypos=80]{DRAFT}
- %%% Define command for playing around with margin paragraphs.
- \definecolor{Warning}{rgb}{1.0,0.5,0.0}
- \newcommand{\Warning}[2][Warning]{\marginpar{\fcolorbox{Warning}{white}{\begin{minipage}{\linewidth}\textbf{\textcolor{Warning}{\emph{#1:}}}\par \tiny \sffamily #2\end{minipage}}}}
- %%% Convenient todo command
- \usepackage{xifthen}
- \newcommand{\todo}[1][]{%
- \ifthenelse{\equal{#1}{}}% if no argument given
- { \emph{TODO}\Warning[TODO]{}}%
- %else
- {\emph{\uppercase{TODO}}\Warning[TODO]{#1}}%
- }
- %%% Put text inside a square %%%
- \newcommand{\squareit}[1]{\fbox{\parbox{\textwidth}{#1}}}
- % For the use of \nobreakdash-
- \usepackage{amsmath}
- %%% Non breaking prints of the ISO standards
- \newcommand{\nd}{\nobreakdash-}
- % Tables something?
- \usepackage{tabularx}
- % For H placement in figures
- \usepackage{float}
- % To be able to adjust caption with using \captionsetup{width=.8\linewidth}, also subfigures
- \usepackage{graphicx,caption}
- % Ability to use subfigures
- \usepackage{subcaption}
- % Makes DOI numbers to links
- \usepackage{doi}
- % For the use of \nobreakdash-
- \usepackage{amsmath}
- % The footnotes are renumbered for each page
- \usepackage[perpage]{footmisc}
- %& Make bold mathmode available
- \usepackage{bm}
- % Make it possible to change size of tables
- \usepackage{adjustbox}
- %% For highlighting using \hl
- \usepackage{color,soul}
- % Use SI units
- \usepackage{siunitx}
- %% Enable use of svg
- \usepackage{svg}
- %%% Tell \includegraphics where to search for files.
- \graphicspath{{figures/}{figures/measurements/}}
- % \usepackage{changebar}
- \department{Institutionen för datavetenskap}
- \departmentenglish{Department of Computer and Information Science}
- \departmentshort{IDA}
- % If this is a thesis at the cognitive science study programme, use
- % the "area" command to generate a proper (?) ISRN
- % \area{KOGVET-A}
- % Include an external supervisor on the cover page
- \externalsupervisor{Gunnar Karlström}
- \supervisor{Peter Johansson}
- \examiner{Michael Josefsson}
- \titleenglish{Reuse and verification of test equipment for ISO 7637}
- %\subtitleenglish{SUBTITLE}
- \titleswedish{Återanvändning och verifiering av testutrustning för ISO 7637}
- \thesissubject{Elektronik}
- \publicationyear{2020}
- \currentyearthesisnumber{001}
- \dateofpublication{2020-xx-xx}
- \author{Jonatan Gezelius}
- % Two authors
- % \author{\parbox{\textwidth}{Ola Leifler\\
- % Alexander Sanner}}
- \begin{document}
- \chapterstyle{VZ43}
- \include{intro}
- \include{theory}
- \include{method}
- \include{results}
- \include{discussion}
- \include{conclusion}
- \printbibliography
- \end{document}
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%% demothesis.tex ends here
|