我在 LaTeX 中对节名中的“pi”有点小问题\section{ $\pi$ }
。我需要加粗\pi
,但我不知道怎么做。我尝试使用
$\mbox{\boldmath${\pi}$}$,
$\mbox{\mathbf{\pi}}$,
$\mathbf{\pi}$,
$\bm{\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}