Re: eliminazione grassetto da titoli e tableofcontents

#11523
Up
0
Down
::


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

Go to top