带有手动编辑参考的自定义索引条目

带有手动编辑参考的自定义索引条目

参考我之前的问题,我已设法通过使用和为标准交叉引用配置“伪索引”并使用\label\pageref格式化文本来\multicol获得具有手动编辑引用的自定义索引条目\itemize(这里是 MWE):

\documentclass[a4paper, 12pt, twoside, draft]{article}

\usepackage{multicol}
\usepackage{enumitem}

\begin{document}

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor\label{tempor} incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud\label{nostrud} exercitation ullamco\label{ullamco} laboris nisi ut aliquip\label{aliquip} ex ea commodo consequat

\begin{multicols}{2}
\begin{itemize}[label={}, leftmargin=*, noitemsep]
\setlength\itemsep{0em}

\item Author 1
\begin{itemize}[label={},noitemsep]
\item consequat \dotfill  34 T 12   % my edited reference text
\item aliquip \dotfill \pageref{aliquip}
\item tempor \dotfill \pageref{tempor}
\item ullamco \dotfill \pageref{ullamco} 
\end{itemize}

\item Author 2
\begin{itemize}[label={},noitemsep]
\item nostrud \dotfill \pageref{nostrud} 
\item veniam \dotfill 65 F 12   % my edited reference text
\end{itemize}
\end{itemize}
\end{multicols}

\end{document}

我想问是否有办法通过其他方式(例如特定的索引包)获得相同的结果,使用嵌套引用并可以像在 MWE 中一样编辑索引引用,这对我的目的来说非常完美但显然需要时间才能完成。

相关内容