ToC에서 미주 섹션 이름 바꾸기

ToC에서 미주 섹션 이름 바꾸기

약간의 문제가 있습니다. 인터넷 사이트의 리소스가 포함된 페이지를 원합니다(참조와 다름). 그래서 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}
    

내 예는 모두

여기에 이미지 설명을 입력하세요

관련 정보