28 Novembre 2006 alle 15:22
#11523
::
robdex\n
La cosa più brutale che mi viene in mente è
`\let\grassetto\bfseries%
\renewcommand{\bfseries}{}`
Un po’ troppo brutale, direi, potrebbe anche avere conseguenze inaspettate. Meglio
`\makeatletter
\let\mybf\bfseries
\DeclareTextFontCommand{\textmybf}{\mybf}
\renewcommand{\bfseries}{%
\not@math@alphabet\bfseries\mathbf\fontseries\mddefault\selectfont}
\makeatother`
In questo modo hai il fallback da usare sia come {\mybf pippo} che come \textmybf{pippo}.
Ciao
Enrico