From: Wolfgang Bangerth Date: Thu, 9 Jan 2020 20:36:32 +0000 (-0700) Subject: Fix the dealcoloneq command. X-Git-Tag: v9.2.0-rc1~705^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F9277%2Fhead;p=dealii.git Fix the dealcoloneq command. It leads to funny spacing in latex (non-MathJax) mode because we accidentally delimited only the ':' with the mathrel command, when we really wanted all of the ':=' to be the operator. --- diff --git a/doc/doxygen/extra.sty b/doc/doxygen/extra.sty index 77a56b30ac..42a4a1e779 100644 --- a/doc/doxygen/extra.sty +++ b/doc/doxygen/extra.sty @@ -18,4 +18,4 @@ % Note: If you add an entry here, also put it into % ./doc/doxygen/scripts/mod_header.pl.in -\newcommand{\dealcoloneq}{\mathrel{\vcenter{:}}=} +\newcommand{\dealcoloneq}{\mathrel{\vcenter{:}=}} diff --git a/doc/doxygen/scripts/mod_header.pl.in b/doc/doxygen/scripts/mod_header.pl.in index 55cb1d3de0..6544e86617 100644 --- a/doc/doxygen/scripts/mod_header.pl.in +++ b/doc/doxygen/scripts/mod_header.pl.in @@ -43,6 +43,6 @@ if (eof) { print '', "\n"; print '
', "\n"; - print '\(\newcommand{\dealcoloneq}{\mathrel{\vcenter{:}}=}\)', "\n"; + print '\(\newcommand{\dealcoloneq}{\mathrel{\vcenter{:}=}}\)', "\n"; print '
', "\n"; }