如何防止 Idxlayout 在索引条目内容中放置分号以进行段落类型划分

如何防止 Idxlayout 在索引条目内容中放置分号以进行段落类型划分

考虑一下代码

\documentclass{book}
\usepackage{imakeidx}
\makeindex
\usepackage{idxlayout}
%\usepackage[itemlayout=singlepar]{idxlayout}

\begin{document}
\Large

Some words.\index{Examples@\textbf{Examples} quoted:! Example1}\index{Examples@\textbf{Examples} quoted:! Example2}\index{Examples@\textbf{Examples} quoted:! Example3}

\idxlayout{columns=1}
\printindex
\end{document}

产生索引输出

在此处输入图片描述

现在,如果我用生成水平划定的索引条目替换该命令\usepackage{idxlayout}\usepackage[itemlayout=singlepar]{idxlayout}我会得到

在此处输入图片描述

问题:为什么Idxlayout在 MWE 中的“quoted:”后面立即插入分号?有没有办法避免在索引条目内容后面放置分号?我希望在水平列出的索引条目的情况下,仅在页码后放置分号。(我用lualatex. 编译了代码)

谢谢。

相关内容