列出所有宏调用

列出所有宏调用

假设我有一个大文档,其中整个文档使用了多个宏,比如\AAA,等等。\BBB

有没有办法让我在最终的 PDF 中列出所有这些宏?\AAA例如,我想在开头重复所有调用,以便在编写文档时快速浏览它们。

一个可选功能将使用 hyperref 单击\AAA列表之一以直接转到实际使用宏的 pdf 页面。

答案1

\hypertarget您可以在每次调用 时放置一个\AAA,其中名称使用计数器。之后您可以通过 引用它\hyperlink

示例中的\AAA No. 1等是可点击的链接。

\documentclass{article}
\pagestyle{empty}% for cropping
\usepackage{pgffor,hyperref}
\newcount\countAAA
\countAAA=0
\newcommand*\AAA{%
    \advance\countAAA by 1%
    \hypertarget{AAA\the\countAAA}{}%
    AAA% your replacement text goes here
}
\newcommand\blindtext{\par\noindent Lorem ipsum dolor sit amet \par\noindent}
\begin{document}
\section{Some text with \texttt{\string\AAA} macros}
\blindtext
\AAA
\blindtext
\AAA
\blindtext
\AAA
\blindtext
\AAA
\section{List of \texttt{\string\AAA} calls}
There are \the\countAAA\ calls of \texttt{\string\AAA} throughout the document.

\foreach \i in {1,...,\the\countAAA} {
    \hyperlink{AAA\i}{\texttt{\string\AAA} No.\ \i}
}
\end{document}

在此处输入图片描述

相关内容