如何在章节/节标题中正确使用 cite 命令?错误消息:Package hyperref 警告:PDF 字符串中不允许使用令牌(Unicode):

如何在章节/节标题中正确使用 cite 命令?错误消息:Package hyperref 警告:PDF 字符串中不允许使用令牌(Unicode):

我在我的章节名称/标题中使用\textcite{key}命令来描述该特定作者所做的研究。但是,我收到了警告消息“Package hyperref 警告:PDF 字符串 (Unicode) 中不允许使用标记:删除输入行 25 上的“\textcite”。

我在网上搜索了这个警告,但是,我只找到了一些针对 Unicode 字符问题的解决方案。这些解决方案也适用于我的问题吗?例如,请参见此处:Hyperref-不允许使用令牌

或者是否存在其他适合解决这个问题的方法?

谨致问候,艾琳

超链接警告

以下是 MWE:

\documentclass{scrbook}
\usepackage[T1]{fontenc}
\usepackage[english]{babel}
\usepackage{csquotes}

\begin{filecontents}[overwrite]{mybib.bib}
@book{test,
  title={Testing Title},
  author={Testperson, Some},
  year={2024},
  publisher={Some Publisher},
  location = {Anywhere}
}
\end{filecontents}

\usepackage[%
  backend=biber,
  style=apa,
  sorting=ynt]{biblatex}
\addbibresource{mybib.bib}
\usepackage{hyperref}

\begin{document}

\section{\textcite{test}}


I am citing \textcite{test}.
\printbibliography
\end{document}

相关内容