From: Wolfgang Bangerth Date: Fri, 15 May 2009 19:31:17 +0000 (+0000) Subject: Use the right kind of markup for formulas. X-Git-Tag: v8.0.0~7684 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7538a4b59edd28c52a36e7acffec80a351d50bab;p=dealii.git Use the right kind of markup for formulas. git-svn-id: https://svn.dealii.org/trunk@18853 0785d39b-7218-0410-832d-ea1e28bc413d --- 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 ){