在我的论文中,我的一些章节标题中有数学/希腊语表达式。我收到错误消息:
Token not allowed in PDF string
。我\textorpdfstring{}
从发布的类似问题中发现,虽然它在最终的 PDF 中有效,但我希望没有错误。
\subsection{\textorpdfstring{$E1$} transitions in and out of the
\textorpdfstring{$\kappa$} band}
谢谢!
答案1
我认为需要解决两个不同的问题:
有问题的命令被称为
\texorpdfstring
,而不是\textorpdfstring
。该命令接受两个参数——TeX 字符串(可以包含数学标记)和 pdf 字符串(不应包含)。
以下代码运行良好。顺便说一下,\boldmath
参数开头的指令\section
是可选的。
\documentclass{article}
\usepackage{hyperref} % for '\texorpdfstring' command
\begin{document}
\section{\boldmath\texorpdfstring{$E1$}{E1} transitions
in and out of the \texorpdfstring{$\kappa$}{k} band}
\end{document}