我需要生成书签并在章节标题中使用数学符号。我知道我需要使用\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}
附言:
- 建议使用
bookmark
包,因为它通常只需要运行一次 LaTeX,并且可以对书签外观(如颜色、字体)提供更多的控制。 - 使用
kpsewhich
查找文件位置。例如,在 Mac 上,我可以直接在终端中运行open $(kpsewhich puenc.def)
或来打开。open `kpsewhich puenc.def`
puenc.def