Created
July 1, 2021 23:53
-
-
Save smellman/4a176d4730d3a56e0bfe3cc7bc649c0f to your computer and use it in GitHub Desktop.
pandoc/latex + eisvogel template
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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