Skip to content

Commit ffbf427

Browse files
committed
feat: supply ltx pkg
1 parent 28c087f commit ffbf427

File tree

3 files changed

+678
-1
lines changed

3 files changed

+678
-1
lines changed

.github/workflows/publ.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Install TeXLive
2424
run: |
2525
sudo apt-get update
26-
sudo apt install -y texlive-luatex texlive-latex-base texlive-lang-japanese
26+
sudo apt install -y texlive-luatex texlive-latex-base
2727
2828
- name: Install C Compiler and Library
2929
run: cc -v

make.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
bch_dir = "./public/batch/"
99
utl_dir = "./typeset/"
1010
fnt_dir = "./typeset/font/"
11+
sty_dir = "./typeset/macro"
1112
tmp_dir = "./.tmp/"
1213

1314
bch_size = 5
@@ -71,6 +72,8 @@ def texcomp(drv):
7172
shutil.copy(utl_dir + drv, tmp_dir + "index.ltx")
7273
for fonts in os.listdir(fnt_dir):
7374
shutil.copy(fnt_dir + fonts, tmp_dir + fonts)
75+
for macro in os.listdir(sty_dir):
76+
shutil.copy(sty_dir + macro, tmp_dir + macro)
7477
pwd = os.getcwd()
7578
os.chdir(tmp_dir)
7679
os.system("lualatex index.ltx --interaction=batchmode")

0 commit comments

Comments
 (0)