Hello,
I am trying to make a build system so that Sublime text will compile my latex files for me.
I know there is a plugin for this called “Latextools”, but I prefer not to use that (because it does things that I do not want).
I use windows 8 and Miktex for latex. What I want sublime text to do (and nothing more) is to run pdflatex $file whenever I press ctrl-b, $file being the current file of course.
This is what I did. I wrote the following file
{
"cmd": "pdflatex", "$file_name"],
// "file_regex": "^ ]*File \"(...*?)\", line ([0-9]*)",
"working_dir": "$file.path",
"selector": "text.tex.latex"
}
and put it in “…/App Data/Roaming/Sublime Text 3/Packages/User/latex.sublime-build”
Now whenever I press “Ctrl-b” I get the error “Unable to find target command: exec”. What am I doing wrong? Maybe nothing, and this is some bug?