From 607d9f79d3345abc60b1cc9d79b1ea4d6a98730c Mon Sep 17 00:00:00 2001 From: Nicholas Curtis Date: Wed, 7 Jun 2023 10:23:49 -0400 Subject: [PATCH] Add options to enable latexpdf builds Signed-off-by: Nicholas Curtis --- src/docs/conf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/docs/conf.py b/src/docs/conf.py index af0003fb73..d97f79bb7b 100644 --- a/src/docs/conf.py +++ b/src/docs/conf.py @@ -90,8 +90,8 @@ exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"] pygments_style = None # options for latex output -latex_engine = "lualatex" -latex_show_urls = "footnote" +latex_engine = 'lualatex' +latex_show_urls = 'footnote' # -- Options for HTML output -------------------------------------------------