如何使粗体部分标题中的符号更加粗体

如何使粗体部分标题中的符号更加粗体

我有以下部分标题:

\section{The system M of Minimal Logic}  

当然,在 pdf 中,它们全部以粗体显示。我怎样才能使此标题中的“M”更加粗体?

答案1

一种方法是使用比常规和粗体更粗的字体。Adobe Serif Pro 就是这样一种字体。但有很多字体,有些有软件包。如果没有软件包,那么我会使用它,fontspec因为它很容易加载任意字体。

\documentclass{article}
\usepackage{sourceserifpro}
\pagestyle{empty}
\begin{document}
\ifxetex
  \section{The system {\sourceserifproextreme\bfseries M} of Minimal Logic}
\else
  \section{The system {\fontseries{k}\selectfont M} of Minimal Logic}
\fi
This is regular weight.
\end{document}

在此处输入图片描述

相关内容