-
Notifications
You must be signed in to change notification settings - Fork 0
/
local_build.py
executable file
·357 lines (299 loc) · 14.9 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
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
#!/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`` and/or``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.
If it doesn't exist that's ok too, it'll just be ignored.
* Figures are in the ``figures`` directory (where authorea puts them), and in
the correct place in the ``layout.md`` file. A file named 'latexfigopts.json'
can specify a dictionary for additional figure options (see the
`FIGURE_DEFAULTS` below for what options that can be replaced).
If pdf or eps figures exist alongside referenced raster image files, they will
be favored over the raster format.
"""
import os
import sys
import shutil
import subprocess
#lots of dobule-{}'s are here because we use it as a formatting template below
MAIN_TEMPLATE = r"""
{preamblein}
{headerin}
{titlecontent}
{authorsin}
\begin{{document}}
{sectioninputs}
\bibliography{{{bibloc}}}{{}}
\end{{document}}
"""
FIGURE_TEMPLATE = r"""
\begin{<figure_env>}[<placement>]
\begin{center}
\includegraphics[width=<width>]{<figfn>}
<caption>
\end{center}
\end{<figure_env>}
""".replace('{', '{{').replace('}', '}}').replace('<', '{').replace('>', '}')
FIGURE_DEFAULTS = {'placement': '', 'width': '1\columnwidth', 'figure_env': 'figure'}
def get_input_string(filename, localdir, quotepath=True, flatten=False):
if flatten:
filepath = os.path.join(localdir, filename)
if not os.path.exists(filepath):
filepath = filepath + '.tex'
with open(filepath, 'r') as f:
return f.read()
else:
if filename.endswith('.tex'):
filename = filename[:-4]
if quotepath:
quote_chr = '"'
else:
quote_chr = ''
return r'\input{' + quote_chr + os.path.join(localdir, filename) + quote_chr + '}'
def get_figure_string(filename, localdir, inputdir, flatten=False, copyto=False):
import json
figdir, figname = os.path.split(filename)
fignamebase = os.path.splitext(figname)[0]
figfn = os.path.join(inputdir, filename)
pdffn = os.path.join(localdir, figdir, fignamebase + '.pdf')
epsfn = os.path.join(localdir, figdir, fignamebase + '.eps')
if copyto:
figpath = os.path.join(localdir, filename)
if os.path.exists(pdffn):
figpath = pdffn
figfn = fignamebase
elif os.path.exists(epsfn):
figpath = epsfn
figfn = fignamebase
elif os.path.exists(figpath):
figfn = figname
else:
raise IOError('Could not find figure file {}'.format(figpath))
shutil.copy(figpath, os.path.join(copyto, os.path.split(figpath)[1]))
else:
if os.path.exists(pdffn) or os.path.exists(epsfn):
figfn = os.path.join(inputdir, figdir, fignamebase)
if os.path.exists(os.path.join(localdir, figdir, 'caption.tex')):
capinput = get_input_string('caption', os.path.join(inputdir, figdir), False, flatten=flatten)
caption = r'\caption{ \protect' + capinput.strip() + '}'
else:
caption = ''
optsfn = os.path.join(localdir, figdir, 'latexfigopts.json')
figopts = FIGURE_DEFAULTS.copy()
if os.path.exists(optsfn):
with open(optsfn) as f:
optsjson = json.load(f)
if not isinstance(optsjson, dict):
raise ValueError('File "{0}" does not have a top-level dict'.format(optsfn))
for k in FIGURE_DEFAULTS.keys():
v = optsjson.pop(k, None)
if v is not None:
figopts[k] = v
if len(optsjson) != 0:
raise ValueError('Entries in "{0}" that were not understood: {1}'.format(optsfn, optsjson))
sizefn = os.path.join(localdir, figdir, 'size.tex')
if os.path.exists(sizefn):
_size = open(sizefn, 'r')
sizeIn = _size.read()
# Split on \n to get heigh/width spearately
size_split = sizeIn.split('\\n')
for ii in range(len(size_split)):
size_split_again = size_split[ii].split("=")
figopts[size_split_again[0]] = size_split_again[1] + 'px'
figopts.update(locals())
return FIGURE_TEMPLATE.format(**figopts)
# if builddir and local dir are the same set the paths used for input/include in
# the output tex file to be relative paths (this helps if sharing the created
# tex file with collaborator who don't use this script) otherwise use absolute
# paths. Alternatively, use the user defined option for whether relative or
# absolute paths are used.
def get_in_path(localdir, builddir, pathtype=None):
"""
Figure out the path for a file in ``localdir`` relative to ``builddir``, or
just use an absolute path dependeing on whether ``pathtype`` is 'rel' or
'abs'. Or if it is None, pick relative only if ``localdir`` is the same as
``builddir``.
"""
if pathtype == 'rel':
return os.path.relpath(localdir, builddir)
elif pathtype == 'abs':
return os.path.abspath(localdir)
elif pathtype is None:
if builddir == localdir:
return os.path.relpath(localdir, builddir)
else:
return os.path.abspath(localdir)
else:
raise ValueError('Invalid pathtype: "{0}"'.format(pathtype))
def build_authorea_latex(localdir, builddir, latex_exec, bibtex_exec, outname,
usetitle, dobibtex, npostbibcalls, openwith, titleinput,
dobuild, pathtype, flatten, copy_figs):
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
if os.path.exists(os.path.join(localdir, 'preamble.tex')):
preamblein = get_input_string('preamble', get_in_path(localdir, builddir, pathtype), flatten=flatten)
else:
preamblein = ''
if os.path.exists(os.path.join(localdir, 'header.tex')):
headerin = get_input_string('header', get_in_path(localdir, builddir, pathtype), flatten=flatten)
else:
headerin = ''
if os.path.exists('authors.tex'):
authorsin = get_input_string('authors', get_in_path(localdir, builddir, pathtype), flatten=flatten)
else:
authorsin = ''
if not headerin and not preamblein:
print("Neither preable nor header found! Proceeding, but that's rather weird")
if copy_figs:
bibloc_abs = os.path.join(get_in_path(localdir, builddir, 'abs'), 'bibliography', 'biblio') + '.bib'
shutil.copy(bibloc_abs, os.path.join(builddir, os.path.split(bibloc_abs)[1]))
bibloc = 'biblio'
else:
bibloc = os.path.join(get_in_path(localdir, builddir, pathtype), 'bibliography', 'biblio')
titlecontent = []
if usetitle:
if titleinput:
titlestr = get_input_string('title', get_in_path(localdir, builddir, pathtype), flatten=flatten)
else:
with open(os.path.join(get_in_path(localdir, builddir, 'abs'), 'title.tex')) as f:
titlestr = f.read()
titlecontent.append(r'\title{' + titlestr + '}')
sectioninputs = []
with open(os.path.join(localdir, 'layout.md')) as f:
for l in f:
ls = l.strip()
if ls == '':
pass
elif ls in ('posttitle.tex', 'title.tex', 'preamble.tex', 'header.tex'):
pass # skip any that have been processed above
elif ls in ('abstract.tex'):
# add abstract to title content
abstractin = get_input_string('abstract', get_in_path(localdir, builddir, pathtype), flatten=flatten)
sectioninputs.append(r'\maketitle' + '\n')
sectioninputs.append(r'\begin{abstract}' + abstractin + '\end{abstract}')
elif ls.endswith('.html') or ls.endswith('.htm'):
pass # html files aren't latex-able
elif ls.startswith('figures'):
inpath = get_in_path(localdir, builddir, pathtype)
sectioninputs.append(get_figure_string(ls, localdir, inpath, flatten=flatten,
copyto=builddir if copy_figs else False))
else:
sectioninputs.append(get_input_string(ls, get_in_path(localdir, builddir, pathtype), flatten=flatten))
sectioninputs = '\n'.join(sectioninputs)
if os.path.exists(os.path.join(localdir, 'posttitle.tex')):
titlecontent.append(get_input_string('posttitle', get_in_path(localdir, builddir, pathtype), flatten=flatten))
# swap this to before the abstract
if r'\begin{abstract}' in titlecontent[-2]: # check second to last value and swap position
titlecontent[-1], titlecontent[-2] = titlecontent[-2], titlecontent[-1]
titlecontent = '\n'.join(titlecontent)
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]
if dobuild:
#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')
else:
msg = 'Preprocessing done but skipping build. Main file:"{0}.tex"'
print(msg.format(os.path.join(builddir, outname)))
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('--title-input', action='store_true', dest='titleinput',
help='Provide this to have the title included via the '
'\\input command instead of directly in the '
'generated tex file. This is useful because \\input'
'sometimes prevents the title from being cased '
'correctly.', default=False)
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.')
parser.add_argument('--no-build', action='store_false', dest='dobuild',
help='Only do preprocessing and skip all the build/open steps')
parser.add_argument('--relative-links', action='store_true', dest='rellinks',
help='Always make links (to input files and figures) within '
'the .tex file relative. Default is to do this if '
'localdir and buildir are the same.')
parser.add_argument('--absolute-links', action='store_true', dest='abslinks',
help='Always make links (to input files and figures) within '
'the .tex file absolute. Default is to do this if '
'localdir and buildir are different.')
parser.add_argument('--flatten', '-t', action='store_true',
help=r'Directly includes the content from tex files '
r'instead of using \input.')
parser.add_argument('--copy-figs', '-c', action='store_true',
help='Copy figures and any bib files into the build '
'directory and set includes to point to those copies.')
args = parser.parse_args()
pathtype = None
if args.flatten and (args.rellinks or args.abslinks):
print('You cannot use both "--flatten" and either "--relative-links" '
'or "--absolute-links".')
sys.exit(1)
if args.rellinks and args.abslinks:
print('You must use either "--relative-links", "--absolute-links", or '
'neither, but not both.')
sys.exit(1)
else:
if args.rellinks:
pathtype = 'rel'
if args.abslinks:
pathtype = 'abs'
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,
args.titleinput, args.dobuild, pathtype, args.flatten,
args.copy_figs)