0

我正在尝试将附录中的标题“章节”更改为“附件”,但无法这样做。我查找并找到了解决方案, \renewcommand\appendixname{Annex} 但这并不能解决我的问题,并且标题仍显示为“章节”。

我的猜测是可能是因为我改变了章节的标题格式(或者可能不是因为它......)

如果有人可以帮助我解决这个问题。我在序言中的代码如下所示:

\usepackage[titletoc]{appendix}
\titleformat{\chapter}[display]
  {\normalfont\LARGE\bfseries\center}{Chapter \thechapter}{0.3em}{\LARGE}
\titlespacing*{\chapter}{0pt}{-15pt}{15pt}
\renewcommand{\thechapter}{\Roman{chapter}}
\renewcommand{\thesection}{\arabic{chapter}.\arabic{section}}
\renewcommand{\thetable}{\arabic{chapter}.\arabic{table}}
\renewcommand{\thefigure}{\arabic{chapter}.\arabic{figure}}
\titleformat{\section}
  {\normalfont\fontsize{14}{10}\bfseries}{\thesection}{1em}{\fontsize{14}{10}}
\renewcommand{\appendixname}{Annex}

\begin{document}
All contents that matters.....

\begin{appendices}
    \chapter{Some Annex}
    \input{Chapters/Appendix}
\end{appendices}

\end{document}
4

1 回答 1

1

问题是你在Chapter这里硬编码了这个词:

\titleformat{\chapter}[display]
  {\normalfont\LARGE\bfseries\center}{Chapter \thechapter}{0.3em}{\LARGE}

要使用正确的词,无论您是在主要内容中还是在附录中,请\chaptertitlename按照包文档(第 4 页)的说明使用:titlesec

\chaptertitlename

\chaptername在它所在的附录中,它默认为except \appendixname\chaptername在定义章节时使用它而不是。

请记住添加{}以使尾随空格显着:

\titleformat{\chapter}[display]
  {\normalfont\LARGE\bfseries\center}{\chaptertitlename{} \thechapter}{0.3em}{\LARGE}
于 2021-03-31T15:33:15.163 回答