Please excuse me if I’ve posted this in the wrong area. I’ve just started using Sublime Text 2 for Latex with the Latex tools plugin. It’s wonderful.
I’m using Mac ox 10.6.8
I’m wondering about adding an engine/build for processing .gabc files. Using gregoriotex I can run this in the command line gregorio *.gabc and it will process the file and output a .tex file.
I can also do this with texworks which uses an engine with this :
#!/bin/tcsh
set path= ($path /usr/texbin /usr/local/bin)
set filename = “$1”
set texname = “${filename:r}.tex”
gregorio “$filename”
echo “produced $texname”
any help you can provide would be much appreciated.