This is a thesis template, clone and use it on local or server.
Local:
- Install LaTeX:
sudo apt install latexmk texlive-latex-extra texlive-bibtex-extra biber texlive-lang-french
(orsudo apt install latexmk texlive-full
) - Compile project:
make
- Open the result PDF file:
make read
- In local, run
zip -r thesis.zip * -x '*.git*' -x 'Makefile' -x 'main.pdf' -x 'README.md'
- On web interface, select New Project > Upload Project >
thesis.zip
-
Style
tlsflyleaf*
: cover page formatStyleThese*
: main content formatFormatAndDefs.tex
: useful packages and settings
-
Content
main.tex
chapters/
figures/
biblio.bib
-
Result PDF
main.pdf
Bold small caps for author's name is only bold when using TeX Live
version >= 2020 and pdfLaTeX
compiler. Example:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\begin{document}
\fontfamily{cmr}\textbf{\textsc{Sample}}
\end{document}
Solutions:
- Use older version of TeX Live. For Overleaf, change it in project settings, 2019 works fine.
- Or use normal small caps, remove
\textbf
before\textsc{\@author}
intlsflyleaf.sty
(2 locations). - Or replace
\usepackage{lmodern}
by\usepackage{fix-cm}
inFormatAndDefs.tex
. (Provided by Overleaf support team) - Or use
XeLaTeX
orLuaLaTeX
as compiler and replace usepackages (inputenc, fontenc, lmodern) to\usepackage{fontspec}
,\setmainfont{CMU Serif}
. (Provided by Overleaf support team)
Branch original-version
: Original Project from: [https://redmine.laas.fr/projects/latex-laas] and [git://redmine.laas.fr/laas/latex-laas/modele-these.git].