pdfstring 中的数学符号

pdfstring 中的数学符号

我需要生成书签并在章节标题中使用数学符号。我知道我需要使用\texorpdfstring{}{}命令。我的问题是,pdfstring 的数学符号是什么?是否有任何参考资料、手册或链接可以供我查找?例如,这是我的代码:

\documentclass{article}

\usepackage{textgreek}
\usepackage[unicode]{hyperref}
\usepackage{amsmath}

\begin{document}

\section{Introduction to variance \texorpdfstring{\sigma^{2}}{???}}

\section{Introduction to finite mean \texorpdfstring{\mu=\sum_{i}x_{i}}{???}}


\end{document}

在此代码中,我不知道平方和总和符号的 pdfstring 是什么。

非常感谢您的帮助。

答案1

基本书签命令如下puenc.def( \texttwosuperior²)。希腊字块位于一个额外的文件中,如果定义如下,则puenc-greek.def该文件将被\input放入:puenc.def\textBeta

% puenc.def line 611--613
\ifx\textBeta\@undefined \else
\input{puenc-greek.def}
\fi

在您的情况下,您需要\mu(μ)和\sigma(σ),因此有必要预先定义\textBeta使用希腊块:

\documentclass{article}
\def\textBeta{}
\usepackage{hyperref}
\usepackage{amsmath}

\begin{document}

\section{Introduction to variance \texorpdfstring{$\sigma^{2}$}{\textsigma\texttwosuperior}}

\section{Introduction to finite mean \texorpdfstring{$\mu=\sum_{i}x_{i}$}{\textmu\ = \textsum\textiinferior x\textiinferior}}

\end{document}

在此处输入图片描述

附言:

  1. 建议使用bookmark包,因为它通常只需要运行一次 LaTeX,并且可以对书签外观(如颜色、字体)提供更多的控制。
  2. 使用kpsewhich查找文件位置。例如,在 Mac 上,我可以直接在终端中运行open $(kpsewhich puenc.def)或来打开。open `kpsewhich puenc.def`puenc.def

相关内容