commit 5b1aefc6daefe0d77f9778a6a6adaaf5799e954a parent 4160b2908f4e0beb0b5f340d48ce523f4ae014b5 Author: Özgür Kesim <oec-taler@kesim.org> Date: Sun, 3 Nov 2024 13:25:26 +0100 use svg for math Diffstat:
| M | conf.py | | | 2 | ++ |
| M | contrib/ci/Containerfile | | | 23 | ++++++++++++----------- |
2 files changed, 14 insertions(+), 11 deletions(-)
diff --git a/conf.py b/conf.py @@ -62,6 +62,8 @@ extensions = [ "sphinx.ext.graphviz", ] +imgmath_image_format = 'svg' + # Add any paths that contain templates here, relative to this directory. templates_path = ["_templates"] diff --git a/contrib/ci/Containerfile b/contrib/ci/Containerfile @@ -5,17 +5,18 @@ ENV DEBIAN_FRONTEND=noninteractive # Install docs generation utils RUN apt-get update -yqq && \ apt-get install -yqq --no-install-recommends \ - make \ - graphviz \ - python3-sphinx \ - python3-recommonmark \ - python3-texext \ - python3-sphinx-book-theme \ - texlive-latex-extra \ - texlive-fonts-recommended \ - tex-gyre \ - dvipng \ - latexmk \ + make \ + graphviz \ + python3-sphinx \ + python3-recommonmark \ + python3-texext \ + python3-sphinx-book-theme \ + texlive-latex-extra \ + texlive-fonts-recommended \ + tex-gyre \ + dvipng \ + dvisvg \ + latexmk \ && rm -rf /var/lib/apt/lists/* WORKDIR /workdir