Skip to content

Instantly share code, notes, and snippets.

View carlosparadis's full-sized avatar

Carlos Paradis carlosparadis

View GitHub Profile
@carlosparadis
carlosparadis / LaTeX.sublime-build
Created December 25, 2019 03:54 — forked from evgenyneu/LaTeX.sublime-build
LaTeX build file for Sublime Text 3 for MacOS. Builds PDF (Command-B) and bibliography (Shift-Command-B).
{
"cmd": ["/Library/TeX/texbin/pdflatex","$file"],
"selector": "text.tex.latex",
"variants": [
{
"name": "Build Bibliography",
"cmd": ["/Library/TeX/texbin/bibtex","$file_base_name"],
}
]
}
@carlosparadis
carlosparadis / LaTeX.sublime-build
Created December 25, 2019 03:54 — forked from evgenyneu/LaTeX.sublime-build
LaTeX build file for Sublime Text 3 for MacOS. Builds PDF (Command-B) and bibliography (Shift-Command-B).
{
"cmd": ["/Library/TeX/texbin/pdflatex","$file"],
"selector": "text.tex.latex",
"variants": [
{
"name": "Build Bibliography",
"cmd": ["/Library/TeX/texbin/bibtex","$file_base_name"],
}
]
}