25 lines
456 B
Bash
Executable File
25 lines
456 B
Bash
Executable File
#!/bin/bash
|
|
|
|
ORIGIN=$1
|
|
DEST=${ORIGIN%.*}
|
|
|
|
pandoc \
|
|
-f markdown \
|
|
-t latex \
|
|
--pdf-engine=xelatex \
|
|
-V papersize=a4 \
|
|
-V documentclass=article \
|
|
-V margin-top=1in \
|
|
-V margin-left=1in \
|
|
-V margin-right=1in \
|
|
-V margin-bottom=1in \
|
|
-V fontfamily=times \
|
|
-V mainfont="Times New Roman" \
|
|
-V monofont="Ubuntu Mono" \
|
|
-V fontsize=12pt \
|
|
-V lang=pt-BR \
|
|
-o $DEST.pdf \
|
|
$ORIGIN
|
|
|
|
# xdg-open $DEST.pdf
|