在 Beamer Section 中使用 bm

在 Beamer Section 中使用 bm

如果这个问题在其他地方已经得到解答,请原谅我,但我的搜索失败了。

我在 beamer 中使用节标题,并希望在标题中包含粗体数学变量。这会引发一个我无法修复的错误。下面是一个最小示例。我在 macOS 上使用相对较新的 TeXShop (v. 4.44)。

\documentclass{beamer}  
\usetheme{default}

\usepackage{bm}

\begin{document}

\begin{frame}
\tableofcontents
\end{frame}

\section{Test $\bm{v}$} % Does not work
%\section{Test}  % Works

\begin{frame}
Test
\end{frame}

\end{document}

我收到的错误:

./mwe.tex:12: Forbidden control sequence found while scanning use of \PD1\v.

\vec{}如果我使用或\textbf{}代替 ,则会成功\bm{}。任何帮助都将不胜感激。

答案1

根据@Ulrike 的评论:

\documentclass{beamer}
\usepackage{bm}

\begin{document}
\section{Boundary conditions \texorpdfstring{$\bm{v}$}{v}}
\begin{frame}
\tableofcontents
\end{frame}
\end{document}

在此处输入图片描述

相关内容