Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
huangyxi committed Mar 4, 2024
0 parents commit e76cb66
Show file tree
Hide file tree
Showing 7 changed files with 816 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
/build/*

*.ins
*.sty
*.pdf
*.zip


*.aux
*.fdb_latexmk
*.fls
*.glo
*.synctex.gz
*.synctex(busy)
*.hd
*.idx
*.ind
*.log
*.out
*.pdf
*.toc
*.xdv
15 changes: 15 additions & 0 deletions .latexmkrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
$_latex_arguments = "-synctex=1 -shell-escape -file-line-error",
$_silent_switch = "-interaction=nonstopmode";

$pdflatex = "pdflatex $_latex_arguments %O %S";

$xelatex = "xelatex $_latex_arguments %O %S";

$silence_logfile_warnings = 1;

$out_dir = 'build';
$pdf_mode = 1;

@default_files = ('useclass.dtx');

$makeindex = "touch %B.ind"; # temporary workaround for issues with l3doc
Loading

0 comments on commit e76cb66

Please sign in to comment.