From b55cc86f04a911267affd60e344d357d847d317d Mon Sep 17 00:00:00 2001 From: Alex_Mueller Date: Wed, 10 Jan 2024 11:32:41 +0100 Subject: [PATCH] fix documentation MathJax --- docs/website/doxygen/Doxylocal | 1 + ikarus/controlroutines/pathfollowing.hh | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/website/doxygen/Doxylocal b/docs/website/doxygen/Doxylocal index 6b26def31..d399e56f3 100644 --- a/docs/website/doxygen/Doxylocal +++ b/docs/website/doxygen/Doxylocal @@ -81,6 +81,7 @@ HTML_COLORSTYLE = LIGHT # required with Doxygen >= 1.9.5 EXTRA_PACKAGES += amsmath amssymb +MATHJAX_EXTENSIONS += cases PROJECT_ICON = @top_srcdir@/docs/website/auxiliaryImages/BigLogo_transparent.png PROJECT_LOGO = @top_srcdir@/docs/website/auxiliaryImages/BigLogo_transparent.png GENERATE_XML = YES diff --git a/ikarus/controlroutines/pathfollowing.hh b/ikarus/controlroutines/pathfollowing.hh index 8f6791af6..356554f41 100644 --- a/ikarus/controlroutines/pathfollowing.hh +++ b/ikarus/controlroutines/pathfollowing.hh @@ -59,9 +59,9 @@ namespace Ikarus { * \mapsto \mathbf{R}(\mathbf{D},\lambda) \end{cases}.\f] * * Then in each step \f$k+1\f$ of the path following algorithm, the following problem is solved - * \f[ \begin{aligned} + * \f[ \begin{align} * \mathbf{R}(\mathbf{D}_k+ \mathrm{D}\mathbf{D}, \lambda_k+ \mathrm{D} \lambda) &= \mathbf{0} \\ - * f(\mathrm{D}\mathbf{D}, \mathrm{D} \lambda) &= 0 \end{aligned} \f] + * f(\mathrm{D}\mathbf{D}, \mathrm{D} \lambda) &= 0 \end{align} \f] * * where \f$\mathrm{D}\mathbf{D}\f$ is the increment of the solution vector and \f$\mathrm{D} \lambda\f$ is the load * factor increment. The subsidiary function \f$f\f$ is provided by the user and needs to fulfill the concept