关于如何管理回忆录中的页面注释的建议

关于如何管理回忆录中的页面注释的建议

我之前发布了一个很长的问题,有人建议我将其分成几个单独的部分,所以我就把它放在了这里。

我利用回忆录课写了一本书。它有大约三百条注释和参考资料,以及大量参考书目。

我的笔记和参考资料种类繁多,有时是报纸上的文章,有时是科学期刊上的出版物,有时是一本旧书,有时没有外部参考资料,只是我对某些事情进行更深入的解释。

我想在书的末尾列出按章节划分的注释列表。因此,在阅读文档后,我决定使用该\pagenote命令,然后\let\pagenote=\endnote在文档开头之前添加。

我得到了一些满意的结果,但我不确定我做得是否正确。例如,作者姓名、来源、链接等应该有正确的顺序……由系统给出,而不是手动给出。

鉴于这种情况,您认为管理所有这些链接、参考文献和脚注的最佳方法是什么?

现在的情况就是这样。

现在的 Notes 是这样的

答案1

考虑将 endheads 包与 memoir 一起使用。对于像书一样长的长文档,它对我来说效果很好。J Lehmke 建议修复当前版本的 memoir 中的一个问题,作者 J. Burt 已更新该包。我主要使用它按章节将尾注放在书的末尾。我喜欢将尾注与其所在的页面相关联的样式。您还可以将尾注放在每章的末尾或每页的末尾。

\documentclass[openany,oldfontcommands]{memoir}
\usepackage{endnotes}
\usepackage{ifthen}
\usepackage{endheads} % requires oldfontcommands option for memoir class    
    \setupendnoteheaders 
    \titleinnotestrue  % title page
    \setstyleforchapternotebegin{\begin{flushleft}\begin{bf}\normalsize}
    \setstyleforchapternoteend{\end{bf}\end{flushleft}}
\begin{document}
\chapter{One}
\resetendnotes
\setcounter{secnumdepth}{0}
The Higgs particle is still elusive. \endnote{chap 1, footnote 1}
\chapter{Two}
\resetendnotes
\setcounter{secnumdepth}{0}
Travel near speed of light for a few years. Return. Poof. No more relationship problems.
\endnote{First footnote of chap 2. Second footnote of book}
Family and childhood friends will be scarce. \endnote{chap2, footnote 2}
\newpage
\addcontentsline{toc}{chapter}{\protect\numberline{} \the\notescontentsname}
\theendnotes
\end{document}

文档末尾的尾注

相关内容