summaryrefslogtreecommitdiffstats
path: root/Smarker/smarker.py
diff options
context:
space:
mode:
authorjwansek <eddie.atten.ea29@gmail.com>2022-05-24 17:36:08 +0100
committerjwansek <eddie.atten.ea29@gmail.com>2022-05-24 17:36:08 +0100
commit80b5876ac8ce0322e0a5d821e51a1ce07fc95316 (patch)
tree187c2d53044276c85c87649117c4d3e5db02985f /Smarker/smarker.py
parentf2f734194c03dfff2024cf417c502515ddb7a855 (diff)
downloadSmarker-80b5876ac8ce0322e0a5d821e51a1ce07fc95316.tar.gz
Smarker-80b5876ac8ce0322e0a5d821e51a1ce07fc95316.zip
Fixed bug in tex template, added alternative similarity metric, updated docs
Diffstat (limited to 'Smarker/smarker.py')
-rw-r--r--Smarker/smarker.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Smarker/smarker.py b/Smarker/smarker.py
index 39c22e6..aec04d1 100644
--- a/Smarker/smarker.py
+++ b/Smarker/smarker.py
@@ -57,7 +57,7 @@ def main(**kwargs):
output_file = os.path.splitext(output_file)[0] + ".tex"
with open(output_file, "w") as f:
f.write(strout)
- subprocess.run(["pdflatex", output_file])
+ subprocess.run(["pdflatex", "-interaction=nonstopmode", output_file])
subprocess.run(["mv", os.path.splitext(os.path.split(output_file)[-1])[0] + ".pdf", os.path.split(output_file)[0]])
if os.path.exists(os.path.splitext(output_file)[0] + ".tex"):