blob: eb65af0cbfb98f4e60ea9e78110d38426ce6ea12 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
#!/usr/bin/perl
# tbraun 18.7.2007
print <<EOT;
[Tool/BibTeX/8bitVersion]
class=Compile
command=bibtex8
options='%S'
from=aux
to=bbl
type=Process
[Tool/Asymptote/Default]
class=Compile
command=asy
options='%S'
from=
to=
type=Process
[Tool/PDFLaTeX/Draft]
class=LaTeX
command=pdflatex
options=-draftmode-interaction=nonstopmode'%source'
from=
to=pdf
type=Process
checkForRoot=yes
jumpToFirstError=yes
autoRun=yes
[Tool/PDFTeX/Draft]
class=Compile
command=pdftex
options=-draftmode-interaction=nonstopmode'%source'
from=
to=pdf
type=Process
[Tools]
Asymptote=Default
EOT
|