File tree Expand file tree Collapse file tree 3 files changed +678
-1
lines changed
Expand file tree Collapse file tree 3 files changed +678
-1
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 88bch_dir = "./public/batch/"
99utl_dir = "./typeset/"
1010fnt_dir = "./typeset/font/"
11+ sty_dir = "./typeset/macro"
1112tmp_dir = "./.tmp/"
1213
1314bch_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" )
You can’t perform that action at this time.
0 commit comments