mirror of
https://github.com/curioustorvald/tsvm.git
synced 2026-06-10 23:04:04 +09:00
documentation wip
This commit is contained in:
23
doc/makepdf.sh
Executable file
23
doc/makepdf.sh
Executable file
@@ -0,0 +1,23 @@
|
||||
#!/bin/bash
|
||||
export LC_ALL="en_US.UTF-8"
|
||||
|
||||
TEXJOBNAME=tsvmman
|
||||
|
||||
echo "Making pdfs from dot-graph"
|
||||
for f in *.dot; do
|
||||
echo $f;
|
||||
dot -Tpdf -o ${f%.*}.pdf $f;
|
||||
done
|
||||
|
||||
rm $TEXJOBNAME.idx
|
||||
rm $TEXJOBNAME.ind
|
||||
rm $TEXJOBNAME.toc
|
||||
rm $TEXJOBNAME.ilg
|
||||
rm $TEXJOBNAME.aux
|
||||
|
||||
# we REALLY need triple-compilation here because LaTeX, otherwise 'constants' will point to p.24 when it should be p.26
|
||||
|
||||
lualatex $TEXJOBNAME.tex
|
||||
lualatex $TEXJOBNAME.tex
|
||||
makeindex $TEXJOBNAME
|
||||
lualatex $TEXJOBNAME.tex
|
||||
Reference in New Issue
Block a user