blob: ff867a1771be6426d214dccd0495a9c92c2f09c4 (
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
#!/usr/bin/env python3
# Render a single document
import argparse
import os
import jinja2
import subprocess
import re
tex_template = """\\documentclass[12pt]{article}
\\usepackage{amsmath}
\\usepackage{amsfonts}
\\newtheorem{definition}{Definition}
\\newtheorem{lemma}{Lemma}
{% if p is not none %}
\\title{ {{title}} }
{% endif %}
\\setlength{\parindent}{0cm}
\\setlength{\parskip}{0.3em}
\\begin{document}
{% if title is not none %}
\maketitle
{% endif %}
{{content}}
\\end{document}
"""
parser = argparse.ArgumentParser()
parser.add_argument("file", help="The file to load")
args = parser.parse_args()
# Load the file
content = []
title = None
with open(args.file, "r") as f:
for line in f:
m = re.findall("\\\\title\{(.*)\}", line)
if m:
title = m[0]
else:
content.append(line)
content = "".join(content)
print(content)
# Write to output
tmpl = jinja2.Template(tex_template)
output = tmpl.render(title=title,content=content)
# Create build folder
if not os.path.exists("render_build"):
os.mkdir("render_build")
os.chdir("render_build")
with open("input.tex", "w") as f:
f.write(output)
subprocess.call(["pdflatex", "input.tex"])
|