From 7ee8cc85c3f41e12ee3d76cbf27f2cd3d9150f19 Mon Sep 17 00:00:00 2001 From: Timo Heister Date: Fri, 24 Apr 2015 09:14:11 -0400 Subject: [PATCH] doxygen fixes - Looks like \footnotesize is not valid in MathJax - escape _ in linear_operator.h --- examples/step-27/doc/intro.dox | 2 +- examples/step-28/doc/intro.dox | 4 ++-- include/deal.II/lac/linear_operator.h | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/examples/step-27/doc/intro.dox b/examples/step-27/doc/intro.dox index a1a6e88696..d728c0814c 100644 --- a/examples/step-27/doc/intro.dox +++ b/examples/step-27/doc/intro.dox @@ -553,7 +553,7 @@ following sums: @f[ \sum_{{\bf k}, |{\bf k}|\le N} \longrightarrow - \sum_{\footnotesize \begin{matrix}{{\bf k}, |{\bf k}|\le N} \\ {|\hat U_{{\bf k}}| \ge |\hat U_{{\bf k}'}| + \sum_{\begin{matrix}{{\bf k}, |{\bf k}|\le N} \\ {|\hat U_{{\bf k}}| \ge |\hat U_{{\bf k}'}| \ \textrm{for all}\ {\bf k}'\ \textrm{with}\ |{\bf k}'|=|{\bf k}|}\end{matrix}} @f] This is the form we will implement in the program. diff --git a/examples/step-28/doc/intro.dox b/examples/step-28/doc/intro.dox index b7076cbc86..a9969b3e40 100644 --- a/examples/step-28/doc/intro.dox +++ b/examples/step-28/doc/intro.dox @@ -323,7 +323,7 @@ whose errors satisfy \frac{\eta_{g,K}}{\|\phi_g\|_\infty} > \alpha_1 - \displaystyle{\max_{\footnotesize \begin{matrix}1\le g\le G \\ K\in {\cal T}_g\end{matrix}} + \displaystyle{\max_{\begin{matrix}1\le g\le G \\ K\in {\cal T}_g\end{matrix}} \frac{\eta_{g,K}}{\|\phi_g\|_\infty}} @f} and coarsen the cells where @@ -331,7 +331,7 @@ and coarsen the cells where \frac{\eta_{g,K}}{\|\phi_g\|_\infty} < \alpha_2 - \displaystyle{\max_{\footnotesize \begin{matrix}1\le g\le G \\ K\in {\cal T}_g\end{matrix}} + \displaystyle{\max_{\begin{matrix}1\le g\le G \\ K\in {\cal T}_g\end{matrix}} \frac{\eta_{g,K}}{\|\phi_g\|_\infty}}. @f} We chose $\alpha_1=0.3$ and $\alpha_2=0.01$ in the code. Note that this will, diff --git a/include/deal.II/lac/linear_operator.h b/include/deal.II/lac/linear_operator.h index 18fe51f05a..174057d13b 100644 --- a/include/deal.II/lac/linear_operator.h +++ b/include/deal.II/lac/linear_operator.h @@ -265,7 +265,7 @@ public: * \relates LinearOperator * * Addition of two linear operators @p first_op and @p second_op given - * by $(\text{first_op}+\text{second_op})x:=\text{first_op}(x)+\text{second_op}(x)$ + * by $(\text{first\_op}+\text{second\_op})x:=\text{first\_op}(x)+\text{second\_op}(x)$ * * @ingroup LAOperators */ @@ -314,7 +314,7 @@ operator+(const LinearOperator &first_op, * \relates LinearOperator * * Subtraction of two linear operators @p first_op and @p second_op given - * by $(\text{first_op}-\text{second_op})x:=\text{first_op}(x)-\text{second_op}(x)$ + * by $(\text{first\_op}-\text{second\_op})x:=\text{first\_op}(x)-\text{second\_op}(x)$ * * @ingroup LAOperators */ @@ -332,7 +332,7 @@ operator-(const LinearOperator &first_op, * \relates LinearOperator * * Concatenation of two linear operators @p first_op and @p second_op given - * by $(\text{first_op}*\text{second_op})x:=\text{first_op}(\text{second_op}(x))$ + * by $(\text{first\_op}*\text{second\_op})x:=\text{first\_op}(\text{second\_op}(x))$ * * @ingroup LAOperators */ -- 2.39.5