From 8676ef8c1ccf447c84f6654d4398167b968e2a92 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Thu, 9 Jan 2020 13:36:32 -0700 Subject: [PATCH] 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. --- doc/doxygen/extra.sty | 2 +- doc/doxygen/scripts/mod_header.pl.in | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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"; } -- 2.39.5