From 5eae98dbfc5191247c3c2876ce6e9370478868e1 Mon Sep 17 00:00:00 2001 From: Andre Anjos <andre.anjos@idiap.ch> Date: Tue, 4 Oct 2016 10:50:51 +0200 Subject: [PATCH] Use SVG math (instead of png) by default (looks better) --- templates/sphinx-conf.py | 1 + 1 file changed, 1 insertion(+) diff --git a/templates/sphinx-conf.py b/templates/sphinx-conf.py index 79c930a..ff69d7e 100644 --- a/templates/sphinx-conf.py +++ b/templates/sphinx-conf.py @@ -30,6 +30,7 @@ extensions = [ import sphinx if sphinx.__version__ >= "1.4.1": extensions.append('sphinx.ext.imgmath') + imgmath_image_format = 'svg' else: extensions.append('sphinx.ext.pngmath') -- GitLab