10 lines
229 B
Bash
Executable File
10 lines
229 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
./pandoc -s -f markdown "trabalho.md" \
|
|
--metadata link-citations=true \
|
|
--pdf-engine=xelatex \
|
|
-C "--csl=ABNT-FA.csl" \
|
|
"--bibliography=All.bib" \
|
|
"--template=./abntex-o-matic.latex" \
|
|
-o trabalho.pdf
|