作为对此的后续行动问题我遇到了两个问题,
从我的词汇表和 titlesec 设置来看,我的词汇表是
section
类型,并且我的 titleformat 刷新左侧部分标题,那么是否可以将这些词汇表标题居中?另一个是,由于我将数字(即“第 1 章”)更改为文本(即“第一章”),我的附录现在表现得很奇怪,在目录中我们有附录 A 和 B,但在正文中它被调用
Appendix ONE
,Appendix TWO
我怎样才能将其改回字母A
和B
?
这是序言的一小部分。
\usepackage{titlesec}
\usepackage{fmtcount}
\usepackage[nonumberlist,acronym,toc,section]{glossaries}
\newglossary[alg]{acronymlist}{acr}{acn}{ACRONYMS}
\newglossary[slg]{symbolslist}{syi}{syg}{LIST OF SYMBOLS}
\newglossary[abg]{abbrevlist}{abi}{ayg}{GLOSSARY}
\titleformat{\chapter}[display]
{\normalfont\normalsize\bfseries}
{\filcenter\chaptertitlename\ \NUMBERstring{chapter}}{10pt}{\filcenter\normalsize\MakeUppercase}
\titlespacing*{\chapter}{0pt}{-50pt}{40pt}
\titleformat{\section}{\normalfont\normalsize\bfseries} {\thesection}{1em}{}
\titleformat{\subsection}{\normalfont\normalsize\bfseries} {\thesubsection}{1em}{}
\titleformat{\subsubsection}{\normalfont\normalsize\bfseries} {\thesubsubsection}{1em}{}
答案1
所以我作弊了,但是,它有效,如下所示:
对于问题 1:我在词汇表/缩写表之前添加了这个
\titleformat{\section}{\normalfont\normalsize\bfseries\filcenter} {\thesection}{1em}{}
接下来是撤消该操作:
\titleformat{\section}{\normalfont\normalsize\bfseries} {\thesection}{1em}{}
\appendix
对于问题 2,我在命令之前添加了以下内容
\titleformat{\chapter}[display] {\normalfont\normalsize\bfseries}
{\filcenter\chaptertitlename\ \thechapter}{10pt}
{\filcenter\normalsize\MakeUppercase}
问题的终结