I'm using TeXStudio (2.6.2) for all my tex documents. For my thesis I'm using biblatex, but for papers I usally use bibtex. Therefor I always have to change the configuration of TeXStudio when I'm switching to another document. Is there a !TEX like directive for TeXStudio so I can configure it on a per document base? I've seen here that TeXShop supports !BIB program = .... I tried that in TeXStudio, but unfortunately it does not work. I also haven't found any indication in the manual that there is something like that. So my question is: Is there any kind of such a directive for TeXStudio or some other easy work around?
Asked
Active
Viewed 591 times
6
1 Answers
8
You can use % !TeX TXS-program:bibliography = txs:///biber. This is a general syntax. TXS understands a number of commands (each starting with txs:///). You will find the names when hovering over the command names in the options pages Command and Build. The above means that a call to txs:///bibliography (actually that's called when you click the Bibliography menu item) should be resolved to txs:///biber (which in turn resolves to the exact biber call).
Future releases (2.7.x) will also support % !BIB program = biber to remain fully compatible with the TeXShop syntax.
Tim Hoffmann
- 11,159
-
1It should be
% !TeX TXS-program:bibliography = txs:///biberas you described in the feature request. And that works like a charm! Thanks for the quick response. – quinmars Mar 06 '14 at 21:58
make-like options, such aslatexmkandarara(which I've yet to try, but seems dead simple to use). Can TeXStudio be configured to use them? Or even a simpleMakefileis pretty simple to create... – jon Mar 05 '14 at 05:48ararais a good alternative though. Instructions for setting up TeXstudio forararais found in http://tex.stackexchange.com/a/118899/586. – Torbjørn T. Mar 05 '14 at 12:49