Last active
October 17, 2021 06:26
-
-
Save evgenyneu/af4e852eb7373bf6fd6d21753af9886c to your computer and use it in GitHub Desktop.
A build file Sublime Text 3 that builds a PDF from LaTeX on macOS
This file contains 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
{ | |
"cmd": ["/Library/TeX/texbin/pdflatex '$file' && open -a Skim.app '$file_path/$file_base_name.pdf'"], | |
"shell": true, | |
"selector": "text.tex.latex" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The script requires MacTeX and Skim apps installed. The Skim PDF viewer is automatically opened when the build finishes.