From cdcc4125c294636eac89691bacdf7167b673b950 Mon Sep 17 00:00:00 2001 From: SamTov Date: Thu, 8 Jul 2021 18:35:03 +0200 Subject: [PATCH] update theme. --- docs/source/_theory/algebra.rst | 12 +++++++++++- docs/source/conf.py | 5 +++-- requirements.txt | 1 - 3 files changed, 14 insertions(+), 4 deletions(-) diff --git a/docs/source/_theory/algebra.rst b/docs/source/_theory/algebra.rst index 4999497..3149995 100644 --- a/docs/source/_theory/algebra.rst +++ b/docs/source/_theory/algebra.rst @@ -1,2 +1,12 @@ Algebra -======= \ No newline at end of file +======= +Most people who have found their way to this web-page have likely come across +the notion of an Algebra in their lifetime. This is because it is introduced to +us at a very early stage in the context of solving systems of equations of +arbitrary complexity, e.g. + +.. math:: + + 2\cdot x + 1 = 5 + +please solve for x. \ No newline at end of file diff --git a/docs/source/conf.py b/docs/source/conf.py index bc73434..727c799 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -3,11 +3,12 @@ """ import os import sys +import sphinx_rtd_theme sys.path.insert(0, os.path.abspath(".")) sys.path.insert(0, os.path.abspath("../../")) - -html_theme = "sphinx_material" +html_theme_path = [sphinx_rtd_theme.get_html_theme_path()] +html_theme = "sphinx_rtd_theme" # -- Project information ----------------------------------------------------- diff --git a/requirements.txt b/requirements.txt index b797ba7..93ef214 100644 --- a/requirements.txt +++ b/requirements.txt @@ -10,4 +10,3 @@ IPython pandoc numpydoc pre-commit -sphinx-material \ No newline at end of file