repo to process Freud XML/TEIs into PDFs via LaTex
- copy XML/TEIs you'd like to process into
to_process
and run./makepdf.sh
, which will- convert all
*.xml
files into_process
into LaTeX files (stored temporarily into the repo's root directory) - run
latexmk -xelatex -output-directory="./tmp"
meaning converting the LaTeX files into PDFs - clean up a bit, meaning
- moving the original XMLs into
./processed
, - moving the LaTeX files into
./tex
- moving the PDFs into
./pdf
- and delete all helper files
- moving the original XMLs into
- convert all
The repo is set up to run locally (tested on linux) as well via GitHub-Actions but you'll need to install any needed packages for LaTeX, Java, etc. yourself. Have a look at .github/workflows/to_pdf.yml to see what needs to be installed