-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcompile.xml
More file actions
63 lines (55 loc) · 2.04 KB
/
compile.xml
File metadata and controls
63 lines (55 loc) · 2.04 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<a:application xmlns:a="http://ajax.org/2005/aml">
<a:state id="stDebugProcessRunning" active="false" />
<a:skin id="latex"
src = "{require('ext/latex/compile').skin}"
media-path = "/static/style/images/"
icon-path = "/static/style/icons/" />
<a:menu id="mnuViewLog">
<a:item disabled="true" caption="View Log" />
</a:menu>
<a:bar id="tbLatexCompile">
<a:divider skin="c9-divider" />
<a:button id="btnCompile"
caption = "Compile"
skin = "c9-toolbarbutton"
icon = "run.png"
onclick = "require('ext/latex/compile').compile()" />
</a:bar>
<a:vbox id="noPdf" edge="5 5 5 5">
<a:style>
.no_pdf {
text-align: center;
font-size: 1.2em;
}
</a:style>
<div class="no_pdf">
Sorry, no PDF was produced. Please check the log for details.
</div>
</a:vbox>
<a:vbox id="logContent" height="100%" edge="0 5 0 5">
<pre class='log'></pre>
</a:vbox>
<a:window
id = "winNoRootResource"
title = "No main file found"
icon = ""
center = "true"
render = "runtime"
kbclose = "true"
width = "512"
skin = "change_photo">
<a:vbox padding="10" edge="15 20 20 20">
<div id="winNoRootResourceMsg" class="alertMsg">
Sorry, none of the files you have open look like top-level LaTeX files.
To select the file to compile from, please right click on it
and select "Set as main file".
</div>
</a:vbox>
<a:vbox edge="0 0 4 0" padding="8">
<a:divider skin="hordivider" />
<a:hbox pack="end" padding="7" edge="0 10 0 10">
<a:button id="btnNoRootResourceOk" default="3" class="ui-btn-green" onclick="winNoRootResource.hide()">Ok</a:button>
</a:hbox>
</a:vbox>
</a:window>
</a:application>