Skip to content

Commit 6c9efba

Browse files
zydouxu-cheng
authored andcommitted
fix: use Doulos SIL to test extra_fonts function
Because `NotoSans-Regular` is a built-in font in recent texlive versions, so we change to an external font `Doulos SIL` to test the `extra_fonts`
1 parent a9c06ad commit 6c9efba

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,14 +83,14 @@ jobs:
8383
latexmk_use_lualatex: true
8484
- name: Download extra fonts
8585
run: |
86-
curl -OL https://github.com/google/fonts/raw/main/ofl/notosans/NotoSans-Regular.ttf
86+
curl -OL https://github.com/silnrsi/font-doulos/raw/78bd59af3dd78e8276918471d8a228348bf741e8/references/v6200/DoulosSIL-Regular.ttf
8787
- name: Compile LaTeX document with extra_fonts
8888
uses: ./
8989
with:
9090
root_file: extra_fonts.tex
9191
working_directory: test/
9292
latexmk_use_xelatex: true
93-
extra_fonts: "./../NotoSans-Regular.ttf"
93+
extra_fonts: "./../DoulosSIL-Regular.ttf"
9494
- name: Compile LaTeX document with arara and graphviz
9595
uses: ./
9696
with:

test/extra_fonts.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
\documentclass{article}
22
\usepackage{fontspec}
3-
\setmainfont{NotoSans-Regular}
3+
\setmainfont{Doulos SIL}
44
\begin{document}
55
Hello world!
66
\end{document}

0 commit comments

Comments
 (0)