From 80b5876ac8ce0322e0a5d821e51a1ce07fc95316 Mon Sep 17 00:00:00 2001 From: jwansek Date: Tue, 24 May 2022 17:36:08 +0100 Subject: Fixed bug in tex template, added alternative similarity metric, updated docs --- Smarker/smarker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Smarker/smarker.py') 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"): -- cgit v1.2.3