I would like to use the T1 font character Ð, \DH, as a mathematical symbol, as so in a quick and dirty way I defined
\newcommand{\dH}{\text{\DH}}
However, in my theorem environments, where the default is italic text, the Ð is italicised, which is not the case for my equation symbols which are standard roman characters. For instance,
\begin{lemma}\label{depth_bounds}
The depth function $\dH_{Y'}$ satisfies the inequalities
\[
\dH_{Y'}(x,y) \le lcm(\dH_{G/K}(x),\dH_Y(y))
\]
\end{lemma}
The disparity with \dH_Y outside the lemma environment, for example, is blatantly obvious:
ÐY vs ÐY, modulo HTML spacing issues.


\normalfontin front of\DHshould solve your problem --\newcommand{\dH}{\text{\normalfont\DH}}– PattaFeuFeu Nov 2 '12 at 3:16