From 12447ca5874d34080fc943c0903cbcf170c4629b Mon Sep 17 00:00:00 2001 From: David Wells Date: Fri, 1 May 2020 12:53:16 -0400 Subject: [PATCH] Remove some unneeded backslashes. MathJax doesn't need to escape underscores in text mode. --- include/deal.II/lac/linear_operator.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/include/deal.II/lac/linear_operator.h b/include/deal.II/lac/linear_operator.h index f210c3dc1e..d7c855ff3a 100644 --- a/include/deal.II/lac/linear_operator.h +++ b/include/deal.II/lac/linear_operator.h @@ -370,8 +370,8 @@ public: * @relatesalso LinearOperator * * Addition of two linear operators @p first_op and @p second_op given by - * $(\text{first\_op}+\text{second\_op})x \dealcoloneq \text{first\_op}(x) + - * \text{second\_op}(x)$ + * $(\text{first_op}+\text{second_op})x \dealcoloneq \text{first_op}(x) + + * \text{second_op}(x)$ * * @ingroup LAOperators */ @@ -429,8 +429,8 @@ operator+(const LinearOperator &first_op, * @relatesalso LinearOperator * * Subtraction of two linear operators @p first_op and @p second_op given by - * $(\text{first\_op}-\text{second\_op})x \dealcoloneq \text{first\_op}(x) - - * \text{second\_op}(x)$ + * $(\text{first_op}-\text{second_op})x \dealcoloneq \text{first_op}(x) - + * \text{second_op}(x)$ * * @ingroup LAOperators */ @@ -564,8 +564,8 @@ operator*(const LinearOperator &op, * @relatesalso LinearOperator * * Composition of two linear operators @p first_op and @p second_op given by - * $(\text{first\_op}*\text{second\_op})x \dealcoloneq - * \text{first\_op}(\text{second\_op}(x))$ + * $(\text{first_op}*\text{second_op})x \dealcoloneq + * \text{first_op}(\text{econd_op}(x))$ * * @ingroup LAOperators */ -- 2.39.5