使部分粗体标题(包括一些内联数学)非粗体的最简单方法是什么?
答案1
将标题的相应部分放入\textmd{}
。
\documentclass{article}
\usepackage[font=bf]{caption}
\begin{document}
\begin{figure}
\caption{A bold caption with a \textmd{medium/regular} part}
\end{figure}
\end{document}
编辑:默认情况下,即使在粗体标题中,LaTeX 也会使用(非粗体)斜体来显示内联数学。我假设您想将标题的其他部分更改为非粗体。