PhD Thesis Template for DTU Management
Author
Inon Peled
Last Updated
4 years ago
License
Other (as stated in the work)
Abstract
Based on the official MS Word template, with a few stylistic changes.
Based on the official MS Word template, with a few stylistic changes.
%==================================================================================================
% NON-OFFICIAL TEMPLATE FOR PHD THESIS IN DTU MANAGEMENT 2020
% -------------------------
% This template has quite a history:
% * Based on the official DTU-IMM Thesis template made by Finn Kuno Christensen in 2009.
% * Adapted by Luke Herbert (see LukeThesis.sty), who enhanced it with a number of new features and error fixes.
% * Small bugfixes by Kasper Laursen in 2012 and 2013.
% * Small updates by Finn Kuno Christensen/Henning Christiansen in 2015.
% * Adapted by Inon Peled to resemble the official PhD thesis template of DTU Management in 2020 (official2020.docx). Note that there are some stylistic differences from the official template, particularly in fonts and Chapter headers.
% -------------------------
% Last Updated: 13-Nov-2020
%==================================================================================================
% ######### DOCUMENT SETUP
\documentclass[10pt,twoside,openany]{book} % The openany option allows chapters to start also on even numbered pages, thus avoiding blank pages between chapters.
%Set to 'print' for printed version, use 'net' for online version
\def\thesisversion{net}
% ######### PACKAGES
\usepackage{thesis} %Import Thesis base style
% ######### THESIS PROPERTIES (Modify these fields with your details)
\def\thesisauthor{Author~Name} %Author
\def\thesistitle{Thesis Title} %Title
\def\thesismonth{Month} % January, etc.
\def\thesisdegree{PhD}
\def\thesisyear{20??} % Submission year
\def\thesismainsupervisor{Main~Supervisor~Details}
\def\thesiscosupervisor{Co-Supervisor~Details}
\def\thesisdepartment{Department of Technology, Management and Economics}
\def\thesisdivision{Division~Name} % E.g. Division of Transport
\def\thesisaddress{Bygning ????, DTU\\*[0.1cm]
2800 Kgs. Lyngby\\*[0.1cm]Denmark}
\def\thesiscoverpicture{\begin{center}\includegraphics[width=\textwidth]{figures/exmplcvr.jpg}\end{center}}
\def\thesisnumber{????} %DTU-IMM Serial number (do not include year)
\def\thesisISSN{0000-0000} %ISSN number
\def\thesiskeywords{keywords are,comma separated} %PDF keywords
\derivethesisprops % Derive dependent properties
% ######### SECTION NUMBERING SETUP
\setcounter{tocdepth}{2} %2 adds sections up to subsections
\setcounter{secnumdepth}{3} %Subsubsections get a number when this is 3
% ######### THESIS STRUCTURE (Modify to include more chapters etc)
\begin{document}
\prefrontmatter
\frontmatter
\pagenumbering{roman} % Set frontmatter numbering style
\input{sumen} % English summary of Thesis
\markboth{}{} % Set headings (left)(right)
\input{sumdk} % Danish summary of Thesis
\markboth{}{}
\input{preface} % Preface
\markboth{}{}
\input{ack} % Acknowledgements
\markboth{}{}
\chaptermark{Contents}
\pdfbookmark{\contentsname}{toc}
\renewcommand{\sectionmark}[1]{\markright{#1}}
\sectionmark{Contents}
\addtolength{\parskip}{-\baselineskip}
\tableofcontents
\begingroup
\let\clearpage\relax
\vspace*{20pt}
\listoftables
\vspace*{20pt}
\listoffigures
\endgroup
\addtolength{\parskip}{\baselineskip}
\renewcommand{\sectionmark}[1]{\markright{\thesection\ #1}}
\mainmatter
\include{chap1} % Chapter 1
\include{chap2} % Chapter 2, etc.
% \backmatter % Commented out to enable Appendix numbering after bibliography.
\chaptermark{References}
\renewcommand\bibname{References}
\renewcommand{\sectionmark}[1]{\markright{#1}}
\sectionmark{References}
\addcontentsline{toc}{chapter}{References} % Force addition of Bibliography to TOC
\bibliographystyle{alpha} % Use alpha codes for references
\bibliography{refer} % bib file
\appendix
\include{appx1} % Appendix (if needed)
\end{document}