From: Timo Heister Date: Wed, 20 May 2020 20:44:38 +0000 (-0400) Subject: [9.2] fix step-69 doxygen formula X-Git-Tag: v9.3.0-rc1~1601^2~2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7a2cf2febe9be9fbd45336ff7e82daa46c8ec8b0;p=dealii.git [9.2] fix step-69 doxygen formula this works with and without mathjax --- diff --git a/examples/step-69/doc/intro.dox b/examples/step-69/doc/intro.dox index d2d5e44c03..556d156ca3 100644 --- a/examples/step-69/doc/intro.dox +++ b/examples/step-69/doc/intro.dox @@ -317,9 +317,9 @@ $t_n$: @f{align*} &\textbf{for } i \in \mathcal{V} \\ &\ \ \ \ \{\mathbf{c}_{ij}\}_{j \in \mathcal{I}(i)} \leftarrow -\texttt{gather_cij_vectors} (\textbf{c}, \mathcal{I}(i)) \\ +\mathrm{gather\_cij\_vectors} (\textbf{c}, \mathcal{I}(i)) \\ &\ \ \ \ \{\textbf{U}_j^n\}_{j \in \mathcal{I}(i)} \leftarrow -\texttt{gather_state_vectors} (\textbf{U}^n, \mathcal{I}(i)) \\ +\mathrm{gather\_state\_vectors} (\textbf{U}^n, \mathcal{I}(i)) \\ &\ \ \ \ \ \textbf{U}_i^{n+1} \leftarrow \mathbf{U}_i^{n} \\ &\ \ \ \ \textbf{for } j \in \mathcal{I}(i)\backslash\{i\} \\ &\ \ \ \ \ \ \ \ \texttt{compute } d_{ij} \\ @@ -327,7 +327,7 @@ $t_n$: &\ \ \ \ \ \ \ \ \textbf{U}_i^{n+1} \leftarrow \textbf{U}_i^{n+1} - \frac{\tau_n}{m_i} \mathbb{f}(\mathbf{U}_j^{n})\cdot \mathbf{c}_{ij} + d_{ij} \mathbf{U}_j^{n} \\ &\ \ \ \ \textbf{end} \\ -&\ \ \ \ \texttt{scatter_updated_state} (\textbf{U}_i^{n+1}) \\ +&\ \ \ \ \mathrm{scatter\_updated\_state} (\textbf{U}_i^{n+1}) \\ &\textbf{end} @f} @@ -336,8 +336,8 @@ We note here that: - Here $\textbf{c}$ and $\textbf{U}^n$ are a global matrix and a global vector containing all the vectors $\mathbf{c}_{ij}$ and all the states $\mathbf{U}_j^n$ respectively. -- $\texttt{gather_cij_vectors}$, $\texttt{gather_state_vectors}$, and -$\texttt{scatter_updated_state}$ are hypothetical implementations that +- $\mathrm{gather\_cij\_vectors}$, $\mathrm{gather\_state\_vectors}$, and +$\mathrm{scatter\_updated\_state}$ are hypothetical implementations that either collect (from) or write (into) global matrices and vectors. - If we assume a Cartesian mesh in two space dimensions, first-order polynomial space $\mathbb{Q}^1$, and that