From: Ralf Hartmann Date: Tue, 11 Oct 2005 14:49:55 +0000 (+0000) Subject: Replace all $ by & as doxygen thinks they were tex flags. X-Git-Tag: v8.0.0~13017 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6642c29c5c045956ddc946705e6e7c35e2120703;p=dealii.git Replace all $ by & as doxygen thinks they were tex flags. git-svn-id: https://svn.dealii.org/trunk@11586 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/base/include/base/data_out_base.h b/deal.II/base/include/base/data_out_base.h index 2403d4dc3b..35ce033df4 100644 --- a/deal.II/base/include/base/data_out_base.h +++ b/deal.II/base/include/base/data_out_base.h @@ -1400,20 +1400,21 @@ class DataOutBase * i.e. two points each associated with one or more data sets. There * are therefore 12 lines for each subcells of a patch. * - * Given the lines as described above, a cut through this data in Gnuplot - * can then be achieved like this: + * Given the lines as described above, a cut through this data in + * Gnuplot can then be achieved like this (& stands for the dollar + * sign in the following): * @verbatim * set data style lines - * splot [:][:][0:] "T" using 1:2:($3==.5 ? $4 : -1) + * splot [:][:][0:] "T" using 1:2:(&3==.5 ? &4 : -1) * @endverbatim * * This command plots data in x- and y-direction unbounded, but in * z-direction only those data points which are above the x-y-plane * (we assume here a positive solution, if it has negative values, you * might want to decrease the lower bound). Furthermore, it only takes - * the data points with z-values ($3) equal to 0.5, i.e. a + * the data points with z-values (&3) equal to 0.5, i.e. a * cut through the domain at z=0.5. For the data points on - * this plane, the data values of the first data set ($4) are + * this plane, the data values of the first data set (&4) are * raised in z-direction above the x-y-plane; all other points are * denoted the value -1 instead of the value of the data * vector and are not plotted due to the lower bound in z plotting