我正在 Beamer 中创建一个使用拆分主题的演示文稿。如果我在小节标题中使用数学模式,则在编译文件时会收到错误消息。小节标题不会发生同样的情况。下面给出了一个最小示例:
\documentclass{beamer}
\useoutertheme{split}
\begin{document}
\section{A title}
\subsection{\texorpdfstring{\(\Delta\geq6\)}{Delta at least 6}}
\begin{frame}
\end{frame}
\end{document}
请注意,您需要运行两次 LaTeX 才能产生错误。
答案1
使用 $ 进行数学模式工作(使用 pdflatex):
\subsection{\texorpdfstring{$\Delta\geq6$}{Delta at least 6}}