ブックマークを生成し、セクション タイトルに数学記号を使用する必要があります。コマンドを使用する必要があることはわかっています。\texorpdfstring{}{}
質問は、pdfstrings の数学記号は何ですか? それらを調べるための参考資料、ハンドブック、またはリンクはありますか? たとえば、これが私のコードです:
\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}
このコードでは、平方記号と合計記号の pdfstrings が何であるかわかりません。
ご助力ありがとうございます。
答え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 の実行は 1 回のみで済み、ブックマークの外観 (色、フォントなど) をより細かく制御できるため、パッケージを使用することをお勧めします。- ファイルの場所を見つけるために使用します
kpsewhich
。たとえば、Mac では、ターミナルでopen $(kpsewhich puenc.def)
または を直接実行して を開くことができます。open `kpsewhich puenc.def`
puenc.def