Go to file
2024-09-07 19:13:27 +02:00
dockerfiles Fix bbm font in arch dockerfile 2024-04-09 02:26:40 +02:00
lib Check out v1.0 release of latex-common 2023-12-24 02:40:27 +01:00
res Commit changes made to p_error.csv 2024-08-25 00:11:01 +02:00
.gitignore Initial commit 2023-12-20 21:55:31 +01:00
.gitmodules Add PDF option to latexmkrc 2023-12-23 20:50:22 +01:00
.latexmkrc Add PDF option to latexmkrc 2023-12-23 20:50:22 +01:00
letter.bib Update bilbiography to the one used in the final submission 2024-08-25 00:06:24 +02:00
letter.tex Comment out response to reviewers 2024-09-07 19:13:27 +02:00
Makefile Remove newline from makefile 2023-12-24 03:44:47 +01:00
README.md Update README.md 2024-01-08 13:33:00 +00:00

ba-letter

Repository containing the latex source for the bachelor's thesis letter.

After cloning, make sure to initialize the submodules containing the dependencies:

$ git submodule update --init

Build

Build on host

For a list of dependencies consult one of the dockerfiles in the dockerfiles directory. Build document:

$ make

After compiling, the PDF can be found in the build directory.

Build using docker

Be warned that texlive installations can take some time. Building the docker image may take a few minutes.

  1. Build docker image
    $ docker build -f dockerfiles/Dockerfile.alpine . -t ba-letter
    
  2. Build document
    $ docker run --rm -v $PWD:$PWD -w $PWD -u `id -u`:`id -g` ba-letter make