有没有可能在 \endnotetext[\pagref{...}] 或 \endnote[\pageref{...}] 中添加 \pageref

有没有可能在 \endnotetext[\pagref{...}] 或 \endnote[\pageref{...}] 中添加 \pageref

有没有可能添加 \pageref\endnote\endnotetext.eg,

\documentclass{book}
\usepackage{endnotes}
\begin{document}

Text....\endnote[\pageref{page1]{\label{page1}....} or \endnotetext[\pageref{page1]{\label{page1}....}

\end{document}

我已尝试过\endnote[\protect\pageref{...}]{...text...}但产生了一些错误...

答案1

该类(和memoir的超集)有自己的尾注版本,称为 pagenotes,以免与包冲突。bookreportendnotes

% endnoteprob.tex  SE 618338

\documentclass{memoir}
\notepageref
\makepagenote
\renewcommand*{\notedivision}{\chapter*{\notesname}}
\begin{document}

\chapter{First}

Some text \pagenote{An endnote}

\section{A section}

More text \pagenote{An endnote in a section}

\chapter{Second}

Yet more text \pagenote{Another endnote}

\printpagenotes
\end{document}

在此处输入图片描述

该类提供了多种改变注释排版的方式。

相关内容