乳胶部分名称中的粗体希腊字母

乳胶部分名称中的粗体希腊字母

我在 LaTeX 中对节名中的“pi”有点小问题\section{ $\pi$ }。我需要加粗\pi,但我不知道怎么做。我尝试使用

$\mbox{\boldmath${\pi}$}$,

$\mbox{\mathbf{\pi}}$,

$\mathbf{\pi}$,

$\bm{\pi}$

但它不起作用。 “pi” 现在长什么样子 我想要实现的目标 第一张图片显示它现在的样子,第二张图片显示我想要实现的目标。

答案1

\boldsymbol除非使用特殊字体,否则包中的宏amsbsy应该可以。

\texorpdfstring(请注意,除非采用适当的解决方法,否则数学排版会使书签变得奇怪)

\documentclass{article}

\usepackage{amsbsy}
\usepackage[unicode]{hyperref}

\begin{document}


\section{Not bold $\pi$}

\section{Bold $\boldsymbol{\pi}$}

\section{Bold \texorpdfstring{$\boldsymbol{\pi}$}{\textpi}}


\end{document}

在此处输入图片描述

答案2

两个版本,一个没有hyperref,一个有。

hyperref

\documentclass{article}

\begin{document}

\section{\protect\boldmath Bold $\pi$}

\end{document}

hyperref

\documentclass{article}
\usepackage[unicode]{hyperref}

\begin{document}

\section{\protect\boldmath Bold \texorpdfstring{$\pi$}{\textpi}}

\end{document}

在此处输入图片描述

相关内容