From 5d70c29ecb012f48a4fa88f6728b607b012961ab Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Fri, 15 May 2009 19:16:03 +0000 Subject: [PATCH] Use $, not \f$. We do the translation for doxygen ourselves. git-svn-id: https://svn.dealii.org/trunk@18852 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/base/include/base/polynomials_adini.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/deal.II/base/include/base/polynomials_adini.h b/deal.II/base/include/base/polynomials_adini.h index df33961981..fb1d187f36 100644 --- a/deal.II/base/include/base/polynomials_adini.h +++ b/deal.II/base/include/base/polynomials_adini.h @@ -112,40 +112,40 @@ class PolynomialsAdini /** * Store the coefficients of the * polynominals in the order - * \f$1,x,y,x^2,y^2,xy,x^3,y^3,xy^2,x^2y,x^3y,xy^3\f$ + * $1,x,y,x^2,y^2,xy,x^3,y^3,xy^2,x^2y,x^3y,xy^3$ */ Table<2, double> coef; /** * Store the coefficients of the x-derivative * of the polynominals in the order - * \f$1,x,y,x^2,y^2,xy,x^3,y^3,xy^2,x^2y,x^3y,xy^3\f$ + * $1,x,y,x^2,y^2,xy,x^3,y^3,xy^2,x^2y,x^3y,xy^3$ */ Table<2, double> dx; /** * Store the coefficients of the y-derivative * of the polynominals in the order - * \f$1,x,y,x^2,y^2,xy,x^3,y^3,xy^2,x^2y,x^3y,xy^3\f$ + * $1,x,y,x^2,y^2,xy,x^3,y^3,xy^2,x^2y,x^3y,xy^3$ */ Table<2, double> dy; /** * Store the coefficients of the second x-derivative * of the polynominals in the order - * \f$1,x,y,x^2,y^2,xy,x^3,y^3,xy^2,x^2y,x^3y,xy^3\f$ + * $1,x,y,x^2,y^2,xy,x^3,y^3,xy^2,x^2y,x^3y,xy^3$ */ Table<2, double> dxx; /** * Store the coefficients of the second y-derivative * of the polynominals in the order - * \f$1,x,y,x^2,y^2,xy,x^3,y^3,xy^2,x^2y,x^3y,xy^3\f$ + * $1,x,y,x^2,y^2,xy,x^3,y^3,xy^2,x^2y,x^3y,xy^3$ */ Table<2, double> dyy; /** * Store the coefficients of the second mixed derivative * of the polynominals in the order - * \f$1,x,y,x^2,y^2,xy,x^3,y^3,xy^2,x^2y,x^3y,xy^3\f$ + * $1,x,y,x^2,y^2,xy,x^3,y^3,xy^2,x^2y,x^3y,xy^3$ */ Table<2, double> dxy; -- 2.39.5