使用 Idxlayout 时在页码后添加句点

使用 Idxlayout 时在页码后添加句点

考虑一下代码

\documentclass{article}
\usepackage{imakeidx}
\makeindex
\usepackage{idxlayout}

\begin{document}
\Large

\noindent Some words.\index{\textbf{How to add a period after the page number?}}
\idxlayout{columns=1}
\printindex
\end{document}

生成索引:

在此处输入图片描述

问题:如何修改上述代码,以便在每个(普通)索引条目的页码后放置一个句点?(lualatex如果这有区别,我会编译代码。)

谢谢。

答案1

我们之前的问题中不是已经这样做过了吗?

在此处输入图片描述

\documentclass{article}
\usepackage{imakeidx}
\makeindex
\newcommand\dotify[1]{#1.}
\usepackage{idxlayout}

\begin{document}
\Large

\noindent Some words.\index{\textbf{How to add a period after the page number?}|dotify}
\idxlayout{columns=1}
\printindex
\end{document}

相关内容