Switch from pdflatex to lualatex

main
Ethan Reece 2024-11-30 22:46:10 -06:00
parent 47407152ab
commit fb756028e9
Signed by: me
GPG Key ID: 198E9EB433DB1B28
3 changed files with 13 additions and 2 deletions

View File

@ -1,5 +1,5 @@
default:
guix time-machine --channels=./channels.scm.lock -- shell --container --emulate-fhs --manifest=./manifest.scm -- sh -c "mkdir -p ./out && pdflatex -output-directory=./out ./src/document.tex"
guix time-machine --channels=./channels.scm.lock -- shell --container --emulate-fhs --manifest=./manifest.scm -- sh -c "mkdir -p ./out && lualatex -output-directory=./out ./src/document.tex"
dev:
guix time-machine --channels=./channels.scm.lock -- shell --manifest=./manifest.scm

11
channels.scm.lock 100644
View File

@ -0,0 +1,11 @@
(list (channel
(name 'guix)
(url "https://git.savannah.gnu.org/git/guix.git")
(branch "master")
(commit
"10e99250f49d40563619c849b0d4ada31f985991")
(introduction
(make-channel-introduction
"9edb3f66fd807b096b48283debdcddccfea34bad"
(openpgp-fingerprint
"BBB0 2DDF 2CEA F6A8 0D1D E643 A2A0 6DF2 A33A 54FA")))))

View File

@ -2,4 +2,4 @@
(use-modules (template-package)
(gnu packages tex))
(packages->manifest (list texlive-scheme-basic texlive-cm-super texlive-hyperref texlive-pgf texlive-geometry coreutils))
(packages->manifest (list texlive-scheme-basic texlive-cm-super texlive-hyperref texlive-etoolbox texlive-pgf texlive-geometry coreutils))