Fix fonts not found error

This commit is contained in:
Oliver Ford 2025-12-29 16:02:29 +00:00
parent 669ac14d92
commit 852b04279f
No known key found for this signature in database
GPG key ID: 15CCFACF010F70D2
6 changed files with 11 additions and 3 deletions

View file

@ -13,6 +13,14 @@ jobs:
- name: Checkout repo - name: Checkout repo
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Install fonts
run: |
apt update
apt install --yes \
fonts-roboto \
fonts-adobe-sourcesans3 \
;
- name: Compile - name: Compile
run: make run: make

View file

@ -1,6 +1,6 @@
.PHONY: examples .PHONY: examples
CC = xelatex CC = lualatex
EXAMPLES_DIR = examples EXAMPLES_DIR = examples
RESUME_DIR = examples/resume RESUME_DIR = examples/resume
CV_DIR = examples/cv CV_DIR = examples/cv

View file

@ -80,11 +80,11 @@
\defaultfontfeatures{ \defaultfontfeatures{
Renderer=HarfBuzz, Renderer=HarfBuzz,
} }
\setmainfont{SourceSansPro}[ \setmainfont{SourceSans3}[
FontFace={l}{n}{Font=*-Light}, FontFace={l}{n}{Font=*-Light},
FontFace={l}{it}{Font=*-LightItalic}, FontFace={l}{it}{Font=*-LightItalic},
] ]
\setsansfont{SourceSansPro}[ \setsansfont{SourceSans3}[
FontFace={l}{n}{Font=*-Light}, FontFace={l}{n}{Font=*-Light},
FontFace={l}{it}{Font=*-LightItalic}, FontFace={l}{it}{Font=*-LightItalic},
] ]

Binary file not shown.

Binary file not shown.

Binary file not shown.