Ce repo contient un code latex proche du code proposé par l'INRIA pour les manuscrits de thèse: https://gitlab.inria.fr/ed-mathstic/latex-template
main.tex
contains the backbone structure of the document, no content is present in this filethese-dbl.cls
contains the package dependencies, bibliography parameters including citation style and overall layout specifications including both front and back cover layoutscover/front.tex
contains the variables that must be filled by the author to complete the front cover, these variables are used in\maketitle
redefined inthese-dbl.cls
cover/back.tex
contains the variables that must be filled by the author to complete the back cover, these variables are used in the macros defined inthese-dbl.cls
- The
Makefile
helps you compile the latex and bibliography into a pdf (details below) - The rest of the directories each contain one chapter of the document
The front cover details must be provided by filling the variables in cover/front.tex
and cover/back.tex
.
To change the compagny logo, you need to change the file cover/logo_entreprise.png
To change the profile image, you need to change the file cover/profile.jpg
A LaTeX distribution such as texlive is necessary in order to compile your document. Please note some necessary packages are not directly included in a base texlive installation.
Required additional packages:
- Fedora (install using
dnf install
)- texlive-abstract
- texlive-wallpaper
- Archlinux:
- Other distributions: Search on pkgs.org
A Makefile
is provided to help you compile your document. It uses pdflatex
andbiber
to generate the pdf file and can display it by using your prefered PDF reader on Linux and MacOS.
Compile your document with pdflatex/biber
:
make
Display the generated pdf:
make viewpdf
Remove all generated files, pdf included:
make clean