更改目录中的“附录”标签

更改目录中的“附录”标签

我需要更改目录的一个元素。特别是所有附录标题都显示在“附录”一词后面:

    Appendices
    APPENDIX A
    APPENDIX B

我想将“附录”一词改为其他内容:

    Something else
    APPENDIX A
    APPENDIX B

我该怎么做?谢谢!


一些代码:

\documentclass[a4paper,8pt]{book}
\usepackage[toc,page]{appendix}
\renewcommand{\appendixname}{Appendice}
\renewcommand{\appendixpagename}{Appendici}

结果:

在此处输入图片描述

答案1

您应该这样做。请注意,该类没有8pt大小选项book

\documentclass[a4paper,10pt]{book} % there is no 8pt size option for the book class
\usepackage[italian]{babel}
\usepackage[toc,page]{appendix}
\addto\extrasitalian{%
\renewcommand{\appendixname}{Appendice}
\renewcommand{\appendixpagename}{Appendici}
\renewcommand{\appendixtocname}{Appendici}}

\begin{document}
\tableofcontents
\chapter{A chapter}
\begin{appendices}
\chapter{First appendix}
\chapter{Second appendix}
\end{appendices}
\end{document}

TOC 输出

相关内容