latex-templates/phd/main.tex
2026-02-26 17:01:09 +01:00

245 lines
5.7 KiB
TeX

%%% DOCUMENT EXPLANATION:
%%% Remove: \blindtext
%%% Add at each chapter, section, and subsection start to set what is written in the page header: \markboth{Chapter Title}{Chapter Title}
\documentclass{book}
\usepackage{thesisehess}
\usepackage{pdfpages}
\begin{document}
%%% Front cover IPParis %%%
%%% PLEASE: Compile 1ere.tex first!!!!!
\includepdf[pages=1]{1ere.pdf}
% Blank page for page 2:
\thispagestyle{empty}
% Acknowledgments
\chapter*{Acknowledgments - Remerciements}
\pagestyle{noheader}
\blindtext
% Table of Contents
\tableofcontents
\pagestyle{noheader}
% Summary [ENGLISH AND French]
\chapter*{Summary}
\pagestyle{noheader}
\blindtext
\chapter*{Résumé}
\pagestyle{noheader}
\blindtext
% General Introduction
\begin{bibunit}[chicago] % Set general introduction bibliography start (take into account only references \cite in between \bengin{bibunit} et \end{bibunit}
% General Introduction
\chapter*{General Introduction}
\markboth{General Introduction}{General Introduction}
\pagestyle{plain_center}
\blindtext
% Introduction générale (translation)
\chapter*{Introduction générale}
\markboth{Introduction générale}{Introduction générale}
\blindtext
% Bibliography General Introduction
\newpage
\singlespacing
\renewcommand{\bibname}{Bibliography General Introduction}
\putbib[biblio]
\end{bibunit}
% Chapter 1
\chapter{Chapter Title}
\markboth{Chapter Title}{Chapter Title}
\pagestyle{plain_center}
\newpage
% Abstract Chapter 1
\section*{Abstract}
\markboth{Abstract}{Abstract}
\newpage
% Chapter 1 Section1
\section{Titre de niveau 1}
\blindtext
% Chapter 1 Subsection1
\subsection{Titre de niveau 1.1}
\markboth{Titre de niveau 1.1}{Titre de niveau 1.1}
\blindtext
% Chapter 1 Subsubsection1
\subsection{Titre de niveau 1.1.1}
\markboth{Titre de niveau 1.1.1}{Titre de niveau 1.1.1}
\blindtext
% Appendix chapter 1
\newpage
\section*{Appendix To Chapter 1}
\markboth{Appendix To Chapter 1}{Appendix To Chapter 1}
%%%%%%%%%%%%%%%% Settings Appendix %%%%%%%%%%%%%%%
% Set table and figure numbering to 0
% Add letter prefix to table and figure names
\setcounter{table}{0}
\renewcommand{\thetable}{A\arabic{table}}
\setcounter{figure}{0}
\renewcommand{\thefigure}{A\arabic{figure}}
\setcounter{section}{0}
\renewcommand{\thesection}{A\arabic{section}}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\section{Appendix 1}
\section{Appendix 2}
%%%%%%%%%%%%%%%% Transition between Chapters %%%%%%%%%%%%%%%
% Reset table and figure numbering to 0
% Remove letter prefix from table and figure names
\setcounter{table}{0}
\renewcommand{\thetable}{A\arabic{table}}
\setcounter{figure}{0}
\renewcommand{\thefigure}{A\arabic{figure}}
\setcounter{section}{0}
\renewcommand{\thesection}{A\arabic{section}}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Chapter 2
\chapter{Chapter Title 2}
\markboth{Chapter Title 2}{Chapter Title 2}
\newpage
% Abstract Chapter 2
\section*{Abstract}
\markboth{Abstract}{Abstract}
\blindtext
\newpage
% Chapter 2: Section 1
\section{Titre de niveau 1}
\markboth{Titre de niveau 1}{Titre de niveau 1}
\blindtext
% Chapter 2: Subsection 1
\subsection{Titre de niveau 1.1}
\markboth{Titre de niveau 1.1}{Titre de niveau 1.1}
\blindtext
% Chapter 2: Subsubsection 1
\subsubsection{Titre de niveau 1.1.1}
\markboth{Titre de niveau 1.1.1}{Titre de niveau 1.1.1}
\blindtext
% Appendix chapter 2
\newpage
\section*{Appendix To Chapter 2}
\markboth{Appendix To Chapter 2}{Appendix To Chapter 2}
%%%%%%%%%%%%%%%% Settings Abstract %%%%%%%%%%%%%%%
% Set tables and figure numerotation to 0
% Integrate letter to Tables and Figures name
\setcounter{table}{0}
\renewcommand{\thetable}{A\arabic{table}}
\setcounter{figure}{0}
\renewcommand{\thefigure}{A\arabic{figure}}
\setcounter{section}{0}
\renewcommand{\thesection}{A\arabic{section}}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\section{Appendix 1}
\section{Appendix 2}
%%%%%%%%%%%%%%%% Transition between Chapters %%%%%%%%%%%%%%%
% Reset table and figure numbering to 0
% Remove letter prefix from table and figure names
\setcounter{table}{0}
\renewcommand{\thetable}{A\arabic{table}}
\setcounter{figure}{0}
\renewcommand{\thefigure}{A\arabic{figure}}
\setcounter{section}{0}
\renewcommand{\thesection}{A\arabic{section}}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Chapter 3
\chapter{Chapter Title 3}
\markboth{Chapter Title 3}{Chapter Title 3}
\newpage
% Abstract : Chapter 3
\section*{Abstract}
\markboth{Abstract}{Abstract}
\blindtext
\newpage
% Chapter 3: section 1
\section{Titre de niveau 1}
\markboth{Titre de niveau 1}{Titre de niveau 1}
\blindtext
% Chapter 3: subsection 1
\subsection{Titre de niveau 1.1}
\markboth{Titre de niveau 1.1}{Titre de niveau 1.1}
\blindtext
% Chapter 3: subsubsection 1
\subsection{Titre de niveau 1.1.1}
\markboth{Titre de niveau 1.1.1}{Titre de niveau 1.1.1}
\blindtext
% Appendix Chapter 3
\newpage
\section*{Appendix To Chapter 3}
\markboth{Appendix To Chapter 3}{Appendix To Chapter 3}
%%%%%%%%%%%%%%%% Settings Abstract %%%%%%%%%%%%%%%
% Set tables and figure numerotation to 0
% Integrate letter to Tables and Figures name
\setcounter{table}{0}
\renewcommand{\thetable}{A\arabic{table}}
\setcounter{figure}{0}
\renewcommand{\thefigure}{A\arabic{figure}}
\setcounter{section}{0}
\renewcommand{\thesection}{A\arabic{section}}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\section{Appendix 1}
\section{Appendix 2}
% Bibliography for all papers
\newpage
\chapter*{Bibliography}
\markboth{Bibliography}{Bibliography}
\singlespacing
\bibliographystyle{chicago}
\bibliography{biblio}
% List of figures
\listoffigures
% List of tables
\listoftables
%%% Back cover IPParis %%%
%%% First compile 4eme.tex separately, then include the resulting PDF:
\includepdf[pages=1]{4eme.pdf}
\end{document}