mhchem - 在 \ce{} 环境中使字体加粗

mhchem - 在 \ce{} 环境中使字体加粗

如何输出\ce{}mhchem 排版为大胆的

答案1

看一下手册,你可以通过添加来全局设置

\mhchemoptions{textfontcommand=\bfseries,mathfontcommand=\mathbf}

回到序言。

对于文本模式下的单个实例,您可以使用\textbf{\ce{..}}

\documentclass{scrartcl}
\usepackage[version=4]{mhchem}
\begin{document}
\ce{H2O} %not bold

\textbf{\ce{H2O}} % bold

\mhchemoptions{textfontcommand=\bfseries,mathfontcommand=\mathbf}

\ce{H2O} %bold

$\ce{H2O}$ %bold
\end{document}

enter image description here

相关内容