使用 sffamily 在节标题中加粗数学符号

使用 sffamily 在节标题中加粗数学符号

我使用带有sffamily作为字体的标题,如下所示:

\documentclass[]{standalone}

\usepackage{titlesec}
\titleformat{\section}{\Large\sffamily\bfseries}{\thesection}{1em}{}

\begin{document}

\section{Let $x^2=1$}

\end{document}

但是,x=1标题部分看起来不太好看,因为它使用的字体比标题要细得多。我尝试将其更改为\mathbf{$x=1$},但它看起来仍然不太好看,因为我使用的sffamily是字体。有什么方法可以让它看起来好一点吗?

答案1

您的示例会产生错误,但您可以通过以下方式获得粗体数学

在此处输入图片描述

 \documentclass{article}

\usepackage{titlesec}
\titleformat{\section}{\Large\sffamily\bfseries\boldmath}{\thesection}{1em}{}

\begin{document}

\section{Let $x=1$}
\section{Let $\mathsf{x=1}$}

\end{document}

相关内容