diff options
author | jwansek <eddie.atten.ea29@gmail.com> | 2022-05-24 17:36:08 +0100 |
---|---|---|
committer | jwansek <eddie.atten.ea29@gmail.com> | 2022-05-24 17:36:08 +0100 |
commit | 80b5876ac8ce0322e0a5d821e51a1ce07fc95316 (patch) | |
tree | 187c2d53044276c85c87649117c4d3e5db02985f /Smarker/smarker.py | |
parent | f2f734194c03dfff2024cf417c502515ddb7a855 (diff) | |
download | Smarker-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.py | 2 |
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"): |