pagenote:隐藏文本中的注释编号

pagenote:隐藏文本中的注释编号

如何删除文本中的所有标记?

目前我在序言中已经提到:

\usepackage{pagenote}
\makepagenote
\renewcommand*{\notedivision}{\section*{\notesname\ to chapter~\thechapter}}
\renewcommand*{\pagenotesubhead}[2]{}

正文如下:\pagenote{...}

答案1

文档中提到\notenumintext,默认情况下,它会在中打印其参数\textsuperscript。重新定义它以不对其参数执行任何操作,这样就完成了。

读者如何能猜出尾注指的是什么?我不知道。

\documentclass{book}

\usepackage{pagenote}
\makepagenote
\renewcommand*{\notedivision}{\section*{\notesname\ to chapter~\thechapter}}
\renewcommand*{\pagenotesubhead}[2]{}
\renewcommand{\notenumintext}[1]{}

\begin{document}

\chapter{Title}

x\pagenote{This was an x}
y\pagenote{This was an y}

\chapter*{Notes}

\printnotes

\end{document}

在此处输入图片描述

在此处输入图片描述

相关内容