Last active
June 27, 2018 12:49
-
-
Save nicholastay/cb755a1d44c0269391b0e3f9652cc607 to your computer and use it in GitHub Desktop.
Misc MD to PDF build with pandoc system for sublime
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
Show hidden characters
{ | |
"selector": "text.html.markdown", | |
"cmd": ["pandoc", "--verbose", "-o", "$file_path\\\\$file_base_name.pdf", "$file"], | |
"variants": [ | |
{ | |
"name": "Pandoc LaTeX PDF (Essay template)", | |
"cmd": ["pandoc", "--verbose", "--template", "C:\\Users\\Nicholas\\Template\\pandoc_essay.tex", "--pdf-engine=xelatex", "-o", "$file_path\\\\$file_base_name.pdf", "$file"] | |
}, | |
{ | |
"name": "Pandoc LaTeX PDF (Beamer)", | |
"cmd": ["pandoc", "--verbose", "-t", "beamer", "-o", "$file_path\\\\$file_base_name.pdf", "$file"] | |
}, | |
{ | |
"name": "Pandoc LaTeX PDF (Clean A4)", | |
"cmd": ["pandoc", "--verbose", "-V", "geometry:a4paper,margin=2cm", "-o", "$file_path\\\\$file_base_name.pdf", "$file"], | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment