From 7538a4b59edd28c52a36e7acffec80a351d50bab Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Fri, 15 May 2009 19:31:17 +0000 Subject: [PATCH] Use the right kind of markup for formulas. git-svn-id: https://svn.dealii.org/trunk@18853 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/examples/step-35/step-35.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/deal.II/examples/step-35/step-35.cc b/deal.II/examples/step-35/step-35.cc index d76bfbe20b..a82cf35e33 100644 --- a/deal.II/examples/step-35/step-35.cc +++ b/deal.II/examples/step-35/step-35.cc @@ -927,13 +927,13 @@ template void Navier_Stokes_Projection::projection_step( const boo // @sect4{ Navier_Stokes_Projection::update_pressure } // This is the pressure update step of the projection method. It implements the // standard formulation of the method, that is -// $$ +// @f[ // p^{n+1} = p^n + \phi^{n+1}, -// $$ +// @f] // or the rotational form, which is -// $$ +// @f[ // p^{n+1} = p^n + \phi^{n+1} - \frac{1}{Re} \nabla\cdot u^{n+1}. -// $$ +// @f] template void Navier_Stokes_Projection::update_pressure( const bool reinit_prec ){ pres_n_minus_1 = pres_n; switch( type ){ -- 2.39.5