目次の脚注セクションの名前を変更する

目次の脚注セクションの名前を変更する

ちょっとした問題があります。インターネット サイトからのリソース (参照とは異なる) を含むページが欲しいのです。そこで、enotez パッケージを使用しました。

印刷すると

\printendnotes 

セクションのタイトルは「ノート」です。私は他のものが欲しいです。私はすでにプレドキュメントで試しています

\renewcommand{\endnotessname}{blablabla} 

しかし、それは機能しません。

ご回答ありがとうございます!

答え1

2つの選択肢があります。

  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}
    

私の例の両方は

ここに画像の説明を入力してください

関連情報