使用 \texorpdfstring 在 pdf 书签中添加抑扬符

使用 \texorpdfstring 在 pdf 书签中添加抑扬符

在这个 MWE 中,如何在命令pdfstring的参数中添加脱字符\texorpdfstring,以便它可以显示在 pdf 书签中?

梅威瑟:

\documentclass{article}

\usepackage{amsfonts}
\usepackage{hyperref}

\begin{document}

\section{\texorpdfstring{Section $\mathbb{R}^k$}{Section R^k}}
Blah blah

\section{\texorpdfstring{Section $\mathbb{R}^k$ bis}{Section R\^k}}
Blah blah

\section{\texorpdfstring{Section $\mathbb{R}^k$ bis bis}{Section R\^ k}}

Blah blah

\end{document}

这是我目前在书签中获得的内容:

捕获

我想在书签中显示的是“Section R^k”,带有脱字符(如果可能的话……)。

答案1

您可以使用以下提供的‘ASCII’脱字符textcomp

\documentclass{article}

\usepackage{amsfonts,textcomp}
\usepackage{hyperref}

\begin{document}

\section{\texorpdfstring{Section $\mathbb{R}^k$}{Section R\textasciicircum k}}
Blah blah

\end{document}

相关内容