我查看了的文档appendix
,但没有找到有关如何格式化附录标题页的任何说明。
目前,它在页面中央显示“附录”。我想将其左对齐,就像 中的所有其他标题一样report
,包括参考文献标题页。
有没有办法做到这一点?
我认为相关的代码是:
\documentclass{report}
\usepackage{appendix}
\begin{appendices}
结果是居中的标题页。
答案1
您还有一些工作要做。这是一个 MWE,它生成左对齐的附录页面标题,而不是居中的标题。
% appendixpageprob2.tex SE 511071 left justify appendices title
\documentclass{report}
\usepackage[page]{appendix}
\makeatletter
\renewcommand{\@chap@pppage}{%
\clear@ppage
\thispagestyle{plain}%
\if@twocolumn\onecolumn\@tempswatrue\else\@tempswafalse\fi
\null\vfil
\markboth{}{}%
{%centering % comment this out to get non-centered title
\interlinepenalty \@M
\normalfont
\Huge \bfseries \appendixname\par}%
\if@dotoc@pp
\addappheadtotoc
\fi
\vfil\newpage
\if@twoside
\if@openright
\null
\thispagestyle{empty}%
\fi
\fi
\if@tempswa
\twocolumn
\fi
}
\usepackage{lipsum}
\begin{document}
\tableofcontents
\chapter{One}
\lipsum[1]
\begin{appendices}
\chapter{Another}
\lipsum[2]
\end{appendices}
\end{document}
如果您能努力提供 MWE(从\documentclass
到\end{document}
)来显示您的问题,那将是最有帮助的。事实上,我不得不花费额外的精力和时间来发明我认为是您的问题。我希望我做对了,但谁能说得准呢?GOM