97 lines
2.8 KiB
TeX
97 lines
2.8 KiB
TeX
%% Template
|
|
\documentclass{thesis}
|
|
\geometry{inner=30mm, outer=25mm, top=30mm, bottom=25mm}
|
|
|
|
%% Content
|
|
\usepackage[backend=biber, backref=true, doi=false, style=authoryear]{biblatex} % Bibliography
|
|
\addbibresource{references.bib}
|
|
\AtEveryBibitem{% Remove some fields from bibliography
|
|
\clearfield{day}%
|
|
\clearfield{location}%
|
|
\clearfield{month}%
|
|
\clearfield{series}%
|
|
}
|
|
\AtEveryCite{% Use square brackets for citations
|
|
\let\bibopenparen=\bibopenbracket%
|
|
\let\bibcloseparen=\bibclosebracket%
|
|
}
|
|
|
|
\usepackage{enumitem} % Customise lists
|
|
|
|
\usepackage{etoc} % Local table of contents
|
|
|
|
\hypersetup{ % Hyperlinks
|
|
bookmarksnumbered=true, % Include section numbers in bookmarks
|
|
bookmarksopen=true, % Auto-open bookmarks
|
|
pdfauthor = {Erwan NORMAND},
|
|
pdftitle = {Wearable Haptics and Augmented Reality},
|
|
pdfsubject = {Ph.D. Thesis of Erwan NORMAND},
|
|
pdfkeywords = {},
|
|
pdfversion=1.7 % Fix /includefigure warnings
|
|
}
|
|
|
|
\usepackage{siunitx} % For numbers with units
|
|
\sisetup{
|
|
retain-explicit-plus=true, % Keep + in numbers
|
|
uncertainty-mode=separate % Separate uncertainty with +- instead of ()
|
|
}
|
|
|
|
%% Typography
|
|
% babel, csquotes, fontenc, microtype, lmodern, textcomp are already loaded by the class
|
|
\usepackage[varqu, varl]{inconsolata} % Better monospace font (with alternative quote [varqu] and l [varl])
|
|
\usepackage[ebgaramond,semibold,textscale=0,vvarbb,subscriptcorrection,amsthm,alth]{newtx} % Use Garamond font for text and math
|
|
\usepackage{microtype} % Micro-typography improvements (slightly more compact, better to read)
|
|
|
|
\allsectionsfont{\sffamily} % Sans-serif for section titles
|
|
\chapterfont{\sffamily}
|
|
|
|
%% Custom commands
|
|
\input{utils/commands}
|
|
\newcommand{\CP}[1]{{\footnote{\textcolor{red}{CP: #1}}}}
|
|
|
|
\newcommand{\inputchapter}[1]{\clearemptydoublepage\input{#1}}
|
|
|
|
\newcommand{\mainchapter}[2]{%
|
|
\chapter{#2}%
|
|
\label{ch:#1}%
|
|
%
|
|
\graphicspath{{#1/figures/}}% Load figures from the chapter folder
|
|
%
|
|
% Print the table of contents for the chapter
|
|
\vspace*{-1cm}%
|
|
\localtableofcontents%
|
|
\par\noindent\rule{\textwidth}{0.4pt}%
|
|
\vspace*{0.5cm}%
|
|
}
|
|
|
|
%% Document
|
|
\begin{document}
|
|
|
|
\selectlanguage{french}
|
|
\input{00-cover/cover}
|
|
\selectlanguage{english}
|
|
|
|
\frontmatter
|
|
\inputchapter{01-front/acknowledgement}
|
|
\inputchapter{01-front/abstract}
|
|
\inputchapter{01-front/résumé}
|
|
\inputchapter{01-front/publications}
|
|
\inputchapter{01-front/contents}
|
|
\inputchapter{01-front/acronyms}
|
|
\inputchapter{01-front/figures}
|
|
\inputchapter{01-front/tables}
|
|
|
|
\mainmatter
|
|
\inputchapter{11-introduction/introduction}
|
|
\inputchapter{12-chapitre1/chapitre1}
|
|
\inputchapter{13-chapitre2/chapitre2}
|
|
\inputchapter{14-conclusion/conclusion}
|
|
|
|
\backmatter
|
|
\clearemptydoublepage
|
|
\printbibliography[heading=bibintoc]
|
|
|
|
\inputchapter{20-back/backcover}
|
|
|
|
\end{document}
|