Go to file
2023-12-24 02:31:20 +01:00
dockerfiles Add make to all dockerfiles 2023-12-24 02:01:27 +01:00
examples Minor changes to colorscheme example 2023-12-23 20:15:06 +01:00
res Add Makefile & more examples 2023-12-23 18:37:49 +01:00
.gitignore Initial commit 2023-12-20 23:40:59 +01:00
.latexmkrc Add dockerfiles and README.md 2023-12-21 02:16:25 +01:00
common.tex Add proper values for matplotlib coolwarm colormap 2023-12-24 02:31:20 +01:00
Makefile Move 'all' target to top of Makefile 2023-12-24 02:02:19 +01:00
README.md Fix typo in README.md 2023-12-24 01:03:37 +00:00

latex-common

Repository containing common latex code that can be shared across multiple projects.

Usage

Put

\input{/path/to/common.tex}

in your preamble. See the examples folder for usage examples.

Build examples

Build manually

$ make

Build using docker

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