Skip to content
Snippets Groups Projects
Forked from agse / thesis-template
This fork has diverged from the upstream repository.
Brahms's avatar
6e0460db
History

Thesis Template

Prerequisites

You want to have the following things installed if you intend to use this template:

You may also use a Docker-based workflow. See below for details.

HowTo

See the automatically created PDF file for more documentation on the "configuration options" of your document.

To create a PDF file manually (i.e. if you don't use a LaTeX frontend), you need to call:

latexmk -pdf thesis

Alternative

You can also use a Docker image to compile the LaTeX source:

docker run --rm -it -v $(pwd):/home danteev/texlive latexmk -pdf thesis.tex

# For continuous builds
docker run --rm -it -v $(pwd):/home danteev/texlive latexmk -pdf -pvc thesis.tex