Skip to content

ENIB-Community/ENIB_latex_template

Repository files navigation

Report Latex Template

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

Demonstration

Getting Started

Structure of the repository

  • main.tex contains the backbone structure of the document, no content is present in this file
  • these-dbl.cls contains the package dependencies, bibliography parameters including citation style and overall layout specifications including both front and back cover layouts
  • cover/front.tex contains the variables that must be filled by the author to complete the front cover, these variables are used in \maketitle redefined in these-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 in these-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

Fill the front and back cover

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

Dependencies

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:

Compile latex into pdf

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