From c03298e367e112bc9ec68f4c6efccb1a145abf72 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, 4 insertions(+) diff --git a/src/docs/conf.py b/src/docs/conf.py index 014ae77527..d97f79bb7b 100644 --- a/src/docs/conf.py +++ b/src/docs/conf.py @@ -89,6 +89,10 @@ exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"] # The name of the Pygments (syntax highlighting) style to use. pygments_style = None +# options for latex output +latex_engine = 'lualatex' +latex_show_urls = 'footnote' + # -- Options for HTML output -------------------------------------------------