Created
February 6, 2019 08:36
-
-
Save matteopic/4a374387cfd1971ac7f410033adb1a51 to your computer and use it in GitHub Desktop.
Snippets pandoc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@ECHO OFF | |
SET MIKTEX=C:\Program Files (x86)\MiKTeX | |
:Loop | |
IF "%~1"=="" GOTO END | |
echo Creating file "%~n1.pdf" | |
pandoc -s %1 -o "%~n1.pdf" "--latex-engine=%MIKTEX%\miktex\bin\pdflatex.exe" -V papersize:A4 -V geometry:margin=1cm | |
SHIFT | |
GOTO Loop | |
:END | |
pause |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@ECHO OFF | |
:Loop | |
IF "%~1"=="" GOTO END | |
echo Creating file "%~n1.docx" | |
pandoc -s %1 -o "%~n1.docx" -V papersize:A4 -V geometry:margin=1cm "--reference-docx=C:\Users\matteo.DOM_FILI\Desktop\PANDOC.docx" | |
SHIFT | |
GOTO Loop | |
:END | |
pause |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment