7 lines
228 B
Bash
Executable File
7 lines
228 B
Bash
Executable File
#!/bin/sh
|
|
|
|
pandoc thesis.md -o thesis.tex --biblatex --bibliography=bibliography.bib -N --listings --pdf-engine=lualatex -s --filter pandoc-crossref --include-after-body=appendix.tex
|
|
lualatex thesis
|
|
biber thesis
|
|
lualatex thesis
|