Merge complete

This commit is contained in:
2018-09-10 20:31:01 -03:00
parent 4a50fbe7bb
commit c7464eea4d
13 changed files with 27 additions and 486 deletions

6
pandoc-md2pdf.sh Executable file
View File

@@ -0,0 +1,6 @@
#!/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 fontsize=12pt -V lang=pt-BR -o $DEST.pdf $ORIGIN; xdg-open $DEST.pdf