From f58575cc1168eba2e56b7d0d53ac37fed3a8956e Mon Sep 17 00:00:00 2001 From: Grant Sanderson Date: Thu, 23 Aug 2018 14:44:40 -0700 Subject: [PATCH] Different tex file default --- constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/constants.py b/constants.py index 215c3b5c..e741b75f 100644 --- a/constants.py +++ b/constants.py @@ -140,7 +140,7 @@ with open(TEMPLATE_TEX_FILE, "r") as infile: TEMPLATE_TEXT_FILE_BODY = infile.read() TEMPLATE_TEX_FILE_BODY = TEMPLATE_TEXT_FILE_BODY.replace( TEX_TEXT_TO_REPLACE, - "$${}$$".format(TEX_TEXT_TO_REPLACE) + "\\begin{align*}" + TEX_TEXT_TO_REPLACE + "\\end{align*}", ) FFMPEG_BIN = "ffmpeg"