Skip to content

Instantly share code, notes, and snippets.

@smellman
Created July 1, 2021 23:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save smellman/4a176d4730d3a56e0bfe3cc7bc649c0f to your computer and use it in GitHub Desktop.
Save smellman/4a176d4730d3a56e0bfe3cc7bc649c0f to your computer and use it in GitHub Desktop.
pandoc/latex + eisvogel template
FROM pandoc/latex:2.14.0.3
ARG eisvogel_version=2.0.0
RUN tlmgr install luatexja
RUN tlmgr install haranoaji haranoaji-extra
RUN tlmgr install adjustbox babel-german background bidi collectbox csquotes everypage filehook footmisc footnotebackref framed fvextra letltxmacro ly1 mdframed mweights needspace pagecolor sourcecodepro sourcesanspro titling ucharcat ulem unicode-math upquote xecjk xurl zref || exit 1
RUN tlmgr install selnolig || exit 1
RUN mkdir -p /templates/eisvogel \
&& wget https://github.com/Wandmalfarbe/pandoc-latex-template/releases/download/v${eisvogel_version}/Eisvogel-${eisvogel_version}.tar.gz -O /templates/eisvogel/eisvogel.tar.gz \
&& tar -xvzC /templates/eisvogel -f /templates/eisvogel/eisvogel.tar.gz \
&& mv /templates/eisvogel/eisvogel.latex /templates/eisvogel.tex \
&& rm -rf /templates/eisvogel
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment