Skip to content

Commit d3323b3

Browse files
committed
Move to xelatex.
pdflatx runs out of memory with minted-v3. Moving to xelatex fixed this.
1 parent 217200d commit d3323b3

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

Diff for: .github/workflows/build-slides.yml

+2
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ jobs:
2828
with:
2929
root_file: C++Course.tex
3030
latexmk_shell_escape: true
31+
latexmk_use_xelatex: true
3132
args: -pdf -interaction=nonstopmode -halt-on-error -usepretex=\def\makebasic{}
3233
working_directory: talk
3334
extra_system_packages: "py-pygments"
@@ -37,6 +38,7 @@ jobs:
3738
with:
3839
root_file: C++Course.tex
3940
latexmk_shell_escape: true
41+
latexmk_use_xelatex: true
4042
args: -pdf -interaction=nonstopmode -halt-on-error
4143
working_directory: talk
4244
extra_system_packages: "py-pygments"

Diff for: talk/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
all: C++Course.pdf
22

33
LATEXMK=latexmk
4-
OPTIONS=-pdf -shell-escape -halt-on-error
4+
OPTIONS=-pdf -xelatex -shell-escape -halt-on-error
55

66
essentials: all
77
essentials: OPTIONS+=-usepretex='\def\makebasic{}'

0 commit comments

Comments
 (0)