使用不带脚注标记的 Pagenote 包

使用不带脚注标记的 Pagenote 包

我仍在学习,以下是我想要做的。我正在使用pagenoteLyX 中的包,它与 ERT 块配合得很好,但我还想从正文中删除脚注标记(即只保留相同的尾注,但不在文本中添加标记)。有没有快速修复方法?祝一切顺利 Mathias

答案1

看起来重新定义打印数字的宏可能会起作用。即添加

\renewcommand\notenumintext[1]{}

之后的序言部分\usepackage{pagenote}。下面的代码示例生成以下内容:

在此处输入图片描述

\documentclass{article}
\usepackage{pagenote}
\makepagenote
\renewcommand\notenumintext[1]{}
\begin{document}
\section{A}

abc\pagenote{Lorem} cde\pagenote{ipsum}

\printnotes
\end{document}

相关内容