重命名目录中的尾注部分

重命名目录中的尾注部分

我有一个小问题,我想要一个包含来自互联网网站的资源的页面(不同于参考资料)。所以我使用了 enotez 包。

当我使用

\printendnotes 

该部分的标题是“注释”,我想要其他内容。我已经在预文档中尝试过

\renewcommand{\endnotessname}{blablabla} 

但它不起作用。

谢谢您的回答!

答案1

您有两个选择。

  1. 使用选项list-name

    \documentclass{article}
    
    \usepackage{enotez}
    \setenotez{
      list-name = My wonderful title
    }
    
    \begin{document}
    
    Test\endnote{example}
    
    \printendnotes
    
    \end{document}
    
  2. 更改关键字的翻译enotez-title(您可能希望babel在这里使用您的语言而不是英语):

    \documentclass{article}
    
    \usepackage{enotez}
    \DeclareTranslation{english}{enotez-title}{My wonderful title}
    
    \begin{document}
    
    Test\endnote{example}
    
    \printendnotes
    
    \end{document}
    

我的两个例子都给出了

在此处输入图片描述

相关内容