-
Notifications
You must be signed in to change notification settings - Fork 197
/
build-full-article.py
239 lines (181 loc) · 7.22 KB
/
build-full-article.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
#!/usr/bin/env python
# Usage:
#
# python build-full-article.py > blischak-et-al.tex
################################################################################
# Setup
################################################################################
import sys
import textwrap
import glob
def write_file(fname, blankline = 1, code_adjust = -0.5):
"""Write contents of file to standard out.
Args:
fname - the filename (str)
blankline - the number of blank lines to add after the text (int)
code_adjust - the number of inches to adjust the width of the code
blocks (float)
"""
handle = open(fname, "r")
for line in handle:
if "Table 1" in line:
line = line.replace("Table 1", "Table \\ref{tab:resources}")
if "begin{verbatim}" in line:
sys.stdout.write("\\begin{adjustwidth}{%.2fin}{0in}\n"%(code_adjust))
sys.stdout.write(line)
if "end{verbatim}" in line:
sys.stdout.write("\\end{adjustwidth}\n")
handle.close()
sys.stdout.write("\n" * blankline)
def write_figure(caption, label):
"""Write labeled figure with the provided caption.
Args:
caption - a list of strings
label - a string to be used with \label
"""
sys.stdout.write("\\begin{figure}[h]\n")
# Remove \ref macro from figure caption
caption[0] = caption[0].split("}.")[1]
# Bold face the caption title
caption[0] = "\\bf" + caption[0]
sys.stdout.write("\\cprotect\\caption{{" + caption[0] + "\n")
for line in caption[1:]:
sys.stdout.write(line)
# End caption
sys.stdout.write("}\n")
# Add label
sys.stdout.write("\\label{%s}\n"%(label))
# End figure
sys.stdout.write("\\end{figure}\n\n")
################################################################################
# Extract figure legends
################################################################################
d_figs = {}
for i in range(4):
d_figs[i + 1] = []
legend_file = open("figures/figure-legends.tex", "r")
# Skip subsection macro and blank line
legend_file.readline()
legend_file.readline()
i = 1
for line in legend_file:
if line != "\n":
d_figs[i] = d_figs[i] + [line]
else:
i = i + 1
################################################################################
# Add header
################################################################################
write_file("header-local.tex")
################################################################################
# Begin document
################################################################################
sys.stdout.write(r"\begin{document}" + "\n" +
r"\vspace*{0.35in}" + "\n")
################################################################################
# Add title
################################################################################
title_file = open("title.tex", "r")
title = title_file.read().strip("\n")
sys.stdout.write(textwrap.dedent("""
\\begin{flushleft}
{\\Large
\\textbf\\newline{%s}
}
\\newline
%% Insert author names, affiliations and corresponding author email (do not include titles, positions, or degrees).
\\\\
"""%(title)
))
################################################################################
# Add authors
################################################################################
authors_file = open("authors.tex", "r")
# First skip unnecessary contents needed for Authorea build
for line in authors_file:
if "else" in line:
break
for line in authors_file:
sys.stdout.write(line.lstrip(" "))
sys.stdout.write("\n")
sys.stdout.write(r"\end{flushleft}" + "\n\n")
################################################################################
# Introduction
################################################################################
sys.stdout.write(r"\linenumbers" + "\n\n")
write_file("introduction.tex")
################################################################################
# Version your code
################################################################################
write_file("version-your-code.tex")
################################################################################
# Table
################################################################################
table_file = open("table-1-resources.tex", "r")
# Ignore subsection macro
table_file.readline()
#
sys.stdout.write("""
\\begin{table}[!ht]
\\begin{adjustwidth}{-1.25in}{0in} % Comment out/remove adjustwidth environment if table fits in text column.
\\caption{
{\\bf Resources.}}
"""
)
for line in table_file:
sys.stdout.write(line)
sys.stdout.write("""
\label{tab:resources}
\end{adjustwidth}
\end{table}
"""
)
sys.stdout.write("\n")
################################################################################
# Figure 1 and 2
################################################################################
write_figure(d_figs[1], label = "fig:Fig1")
write_figure(d_figs[2], label = "fig:Fig2")
################################################################################
# Share your code
################################################################################
write_file("share-your-code.tex")
################################################################################
# Figure 3
################################################################################
write_figure(d_figs[3], label = "fig:Fig3")
################################################################################
# Contribute to other projects
################################################################################
write_file("contribute-to-other-projects.tex")
################################################################################
# Figure 4
################################################################################
write_figure(d_figs[4], label = "fig:Fig4")
################################################################################
# Conclusion
################################################################################
write_file("conclusion.tex")
################################################################################
# Boxes
################################################################################
for i in range(7):
box_name = glob.glob("box-" + str(i + 1) + "-*tex")[0]
write_file(box_name)
################################################################################
# Methods
################################################################################
write_file("methods.tex")
################################################################################
# References
################################################################################
sys.stdout.write(r"\nolinenumbers" + "\n\n")
write_file("bibliography.bbl")
################################################################################
# Supporting Information Legends
################################################################################
write_file("supporting-information-legends.tex")
################################################################################
# End document
################################################################################
sys.stdout.write(r"\end{document}" + "\n\n")