我正在使用imakeidx.sty
包来生成两种类型的索引,例如List of symbols, Index
。
问题是form.ist
文件不起作用。
我的 form.ist 文件是
headings_flag 0
heading_prefix "{\\bfseries "
heading_suffix "}\\nopagebreak"
item_01 "\\nopagebreak\n \\subitem "
item_12 "\\nopagebreak\n \\subsubitem "
item_x1 "\\nopagebreak\n \\subitem "
item_x2 "\\nopagebreak\n \\subsubitem "
delim_0 "\\quad "
delim_1 "\\quad "
delim_2 "\\quad "
梅威瑟:
\documentclass{article}
\usepackage{amsmath}
\usepackage{imakeidx}
\makeindex[name=symbols,title={List of symbols},options=makeindex -c -s form.ist symbols]
\makeindex[options=makeindex -c -s form.ist Sam_Ind]
\begin{document}
The sample\index[symbols]{$phi$} Index. The\index[symbols]{$\alpha$} sample Index. The sample Index. The sample Index. The sample Index. The sample Index.
\newpage
The sample\index{Text Index One} Index two. The sample Index\index{Text Index two} two. The sample Index two. The sample Index two. The sample Index two. The sample Index two.
\printindex[symbols]\markboth{List of symbols}{List of symbols} % Person index
\printindex
\end{document}
该options=makeindex -c -s form.ist symbols
命令不起作用。
我所需的输出介于两者index entry and Page number
之间。seperator
\quad
但我目前的输出介于两者index entry and Page number
之间。seperator
,
我想通过.ist
文件进行控制。但.ind
文件没有更新。
我所需的输出和当前输出如下图所示:
请指教如何实现\quad
空间分离。