包含数学内容时目录/书签不准确(目录和数学模式下有些奇怪)

包含数学内容时目录/书签不准确(目录和数学模式下有些奇怪)

我把这个放在我的一个部分:$\left\langle a,b\right\rangle $而我得到的却是一些非常奇怪的东西!
在此处输入图片描述

您知道为什么会发生这种情况吗?我能解决它吗?如果有解决方案...

以下是 MWE:

\documentclass{scrartcl}

\usepackage[unicode=true,pdfusetitle,
 bookmarks=true,bookmarksnumbered=false,bookmarksopen=false,
 breaklinks=false,pdfborder={0 0 0},pdfborderstyle={},backref=false,colorlinks=true]
 {hyperref}
\hypersetup{
 linkcolor=blue}

\begin{document}

\section{ABC $\left\langle a,b\right\rangle $}
\end{document}

谢谢你!

答案1

书签中不允许使用数学模式。您应该使用\texorpdfstring{stuff in document}{stuff in bookmark>

\documentclass{scrartcl}

\usepackage[unicode=true,pdfusetitle,
 bookmarks=true,bookmarksnumbered=false,bookmarksopen=false,
 breaklinks=false,pdfborder={0 0 0},pdfborderstyle={},backref=false,colorlinks=true]
 {hyperref}
\hypersetup{
 linkcolor=blue}

\begin{document}

\section{ABC \texorpdfstring{$\left\langle a,b\right\rangle $}{<a,b>}}

\end{document}

在此处输入图片描述

相关内容