Skip to content

Instantly share code, notes, and snippets.

@acarril
Created January 5, 2018 23:19
Show Gist options
  • Save acarril/8cc7883cf961b2481fb37704771a19d5 to your computer and use it in GitHub Desktop.
Save acarril/8cc7883cf961b2481fb37704771a19d5 to your computer and use it in GitHub Desktop.
LaTex.BibTeX.DVIPS.PS2PDF script builder for ST3 - LaTeXTools
"builder_settings" : {
// General settings:
// See README or third-party documentation
// (built-ins): true shows the log of each command in the output panel
"display_log" : false,
"options": ["--shell-escape"],
// Platform-specific settings:
"osx" : {
// See README or third-party documentation
},
"windows" : {
"script_commands": [
"latex --synctex=1 --interaction=nonstopmode $file_name",
"bibtex",
"dvips $file_base_name.dvi",
"ps2pdf $file_base_name.ps"
]
},
"linux" : {
// See README or third-party documentation
}
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment