-
Notifications
You must be signed in to change notification settings - Fork 4
/
local_build.py
executable file
·273 lines (218 loc) · 9.07 KB
/
local_build.py
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
#!/usr/bin/env python
from __future__ import division, print_function
"""
This script generates a file to use for building authorea papers, and then runs
latex on them.
Requires python >= 2.6 (3.x should work, too)
The key assumptions are:
* ``layout.md`` exists in the article (I think it always does in Authorea)
* ``preamble.tex``, ``header.tex``, ``title.tex``, and
``bibliobgraphy/biblio.bib`` exist (I think these are created normally in a
new Authorea article)
* ``posttitle.tex`` exists. This one you'll have to create, containing
everything you want after the title but before the beginning of the document.
"""
import os, re
import subprocess
#lots of dobule-{}'s are here because we use it as a formatting template below
MAIN_TEMPLATE = r"""
{preamblein}
{headerin}
\newif\iflatexml\latexmlfalse
\begin{{document}}
\begin{{frontmatter}}
{titlecontent}
\begin{{abstract}}
{abstract}
\end{{abstract}}
\end{{frontmatter}}
{sectioninputs}
\bibliography{{{bibloc}}}{{}}
\end{{document}}
"""
FIGURE_TEMPLATE=r"""
\begin{figure}[tb]
\centering
\includegraphics[width=<figsize>\linewidth]{<figfn>}
<caption>
\end{figure}
""".replace('{', '{{').replace('}', '}}').replace('<', '{').replace('>', '}')
WRAPFIGURE_TEMPLATE=r"""
\begin{wrapfigure}<wrapoptions>
\centering
\includegraphics[width=1\linewidth]{<figfn>}
<caption>
<endcap>
\end{wrapfigure}
""".replace('{', '{{').replace('}', '}}').replace('<', '{').replace('>', '}')
FIGURESC_TEMPLATE=r"""
\begin{SCfigure}[50][tb]
\centering
\includegraphics[width=<figwidth>]{<figfn>}
<caption>
\end{SCfigure}
""".replace('{', '{{').replace('}', '}}').replace('<', '{').replace('>', '}')
STARTFIG_TEMPLATE=r"""
\begin{figure}[tb]
\centering
\begin{minipage}{<figwidth>\linewidth}
\includegraphics[width=\linewidth]{<figfn>}
<caption>
\end{minipage}""".replace('{', '{{').replace('}', '}}').replace('<', '{').replace('>', '}')
ENDFIG_TEMPLATE=r"""\hfill
\begin{minipage}{<figwidth>\linewidth}
\includegraphics[width=\linewidth]{<figfn>}
<caption>
\end{minipage}
<bigcaption>
\end{figure}
""".replace('{', '{{').replace('}', '}}').replace('<', '{').replace('>', '}')
def get_input_string(filename, localdir):
if filename.endswith('.tex'):
filename = filename[:-4]
return r'\input{' + os.path.join(os.path.abspath(localdir), filename) + '}'
def get_figure_string(filename, localdir):
figdir, figfn = os.path.split(filename)
figdir = os.path.join(localdir, figdir)
print('rep', figfn)
figfnbase = os.path.splitext(figfn)[0]
figfn = os.path.join(figdir, figfn)
pdffn = os.path.join(figdir, figfnbase + '.pdf')
epsfn = os.path.join(figdir, figfnbase + '.eps')
figsize = 1
if not os.path.exists(pdffn):
pdffn = None
if not os.path.exists(epsfn):
epsfn = None
if pdffn or epsfn:
figfn = os.path.join(figdir, figfnbase)
figfn = os.path.abspath(figfn)
bigcaption = ''
capfn = os.path.join(figdir, 'caption.tex')
template = FIGURE_TEMPLATE
if os.path.exists(capfn):
caption = r'\caption{ \protect\input{' + os.path.abspath(capfn) + '}}'
captext = open(capfn).read()
m = re.search(r'figsize (\S+)',captext)
if m:
figsize = m.group(1)
m = re.search(r'wrapfig (\S+)\s*(\S*)$',captext,flags = re.MULTILINE)
sc = re.search(r'sidecap (\S+)',captext,flags = re.MULTILINE)
stfig = re.search(r'startfig (\S+)',captext,flags = re.MULTILINE)
endfig = re.search(r'endfig (\S+)',captext,flags = re.MULTILINE)
if m:
template = WRAPFIGURE_TEMPLATE
wrapoptions = m.group(1)
endcap = m.group(2)
elif sc:
template = FIGURESC_TEMPLATE
figwidth = sc.group(1)
elif stfig:
template = STARTFIG_TEMPLATE
figwidth = stfig.group(1)
elif endfig:
template = ENDFIG_TEMPLATE
figwidth = endfig.group(1)
elif re.search(r'%nofig',captext):
template = ''
fullfig = re.search(r'fullfig',captext,flags = re.MULTILINE)
if fullfig:
template = template.replace("{figure}","{figure*}")
bigcap = re.search(r'%bigcap',captext,flags = re.MULTILINE)
if bigcap:
bigcaption = caption
caption = ''
nocap = re.search(r'%nocap',captext,flags = re.MULTILINE)
if nocap:
caption = ''
else:
caption = ''
return template.format(**locals())
def build_authorea_latex(localdir, builddir, latex_exec, bibtex_exec, outname,
usetitle, dobibtex, npostbibcalls, openwith):
if not os.path.exists(builddir):
os.mkdir(builddir)
if not os.path.isdir(builddir):
raise IOError('Requested build directory {0} is a file, not a '
'directory'.format(builddir))
# generate the main tex file as a string
preamblein = get_input_string('preamble', localdir)
headerin = get_input_string('header', localdir)
bibloc = os.path.join(os.path.abspath(localdir), 'bibliography', 'biblio')
abstract = get_input_string('Abstract.tex', localdir)
titlecontent = []
if usetitle:
titlecontent.append(r'\title{' + get_input_string('title', localdir) + '}')
if os.path.exists(os.path.join(os.path.abspath(localdir), 'posttitle.tex')):
titlecontent.append(get_input_string('posttitle', localdir))
titlecontent = '\n'.join(titlecontent)
sectioninputs = []
with open(os.path.join(localdir, 'layout.md')) as f:
for l in f:
ls = l.strip()
if ls == '':
pass
elif ls == 'Abstract.tex':
pass
elif ls.startswith('figures'):
sectioninputs.append(get_figure_string(ls, localdir))
else:
sectioninputs.append(get_input_string(ls, localdir))
sectioninputs = '\n'.join(sectioninputs)
maintexstr = MAIN_TEMPLATE.format(**locals())
#now save that string out as a file
outname = outname if outname.endswith('.tex') else (outname + '.tex')
outtexpath = os.path.join(builddir, outname)
with open(outtexpath, 'w') as f:
f.write(maintexstr)
if outname.endswith('.tex'):
outname = outname[:-4]
#now actually run latex/bibtex
args = [latex_exec, outname + '.tex']
print('\n\RUNNING THIS COMMAND: "{0}"\n'.format(' '.join([latex_exec, outname + '.tex'])))
subprocess.check_call(args, cwd=builddir)
if dobibtex:
args = [bibtex_exec, outname]
print('\n\RUNNING THIS COMMAND: "{0}"\n'.format(' '.join([latex_exec, outname + '.tex'])))
subprocess.check_call(args, cwd=builddir)
for _ in range(npostbibcalls):
args = [latex_exec, outname + '.tex']
print('\n\RUNNING THIS COMMAND: "{0}"\n'.format(' '.join([latex_exec, outname + '.tex'])))
subprocess.check_call(args, cwd=builddir)
#launch the result if necessary
resultfn = outtexpath[:-4] + ('.pdf' if 'pdf' in latex_exec else '.dvi')
if openwith:
args = openwith.split(' ')
args.append(resultfn)
print('\nLaunching as:' + str(args), '\n')
subprocess.check_call(args)
else:
msg = '\nBuild completed. You can see the result in "{0}": "{1}"'
print(msg.format(builddir, resultfn), '\n')
if __name__ == '__main__':
import argparse
parser = argparse.ArgumentParser(description='Local builder for authorea papers.')
parser.add_argument('localdir', nargs='?', default='.',
help='The directory to actually search for the authorea'
' files in. Default to the current directory.')
parser.add_argument('--build-dir', '-d', default='authorea_build',
help='the directory to build the paper in')
parser.add_argument('--latex', '-l', default='pdflatex',
help='The executable to use for the latex build step.')
parser.add_argument('--bibtex', '-b', default='bibtex',
help='The executable to use for the bibtex build step.')
parser.add_argument('--filename', '-f', default='authorea_paper',
help='The name to use for the output tex file.')
parser.add_argument('--no-bibtex', action='store_false', dest='usebibtex',
help='Provide this to not run bibtex.')
parser.add_argument('--no-title', action='store_false', dest='usetitle',
help='Provide this to skip the title command.')
parser.add_argument('--n-runs-after-bibtex', '-n', type=int, default=3,
help='The number of times to call latex after bibtex.')
parser.add_argument('--open-with', '-o', default=None,
help='An executable to launch the output file with. '
'Default is to not do anything with it.')
args = parser.parse_args()
build_authorea_latex(args.localdir, args.build_dir, args.latex, args.bibtex,
args.filename, args.usetitle, args.usebibtex,
args.n_runs_after_bibtex, args.open_with)