Latex:如何忽略附录中章节标题的修改?

Latex:如何忽略附录中章节标题的修改?

我正在用这个类写一个文档:

\documentclass[a4paper,12pt,openright]{report}

我对章节标题做了以下修改:

\makeatletter
\def\@makechapterhead#1{%
  \vspace*{50\p@}%
  {\parindent \z@ \raggedright \normalfont
    \interlinepenalty\@M
    \Huge\bfseries  \thechapter.\quad #1\par\nobreak
    \vskip 40\p@
  }}
\makeatother

\makeatletter
\renewcommand\chapter{\if@openright\cleardoublepage\else\clearpage\fi
                    \thispagestyle{empty}%
                    \global\@topnum\z@
                    \@afterindentfalse
                    \secdef\@chapter\@schapter}
\makeatother

但这也会影响附录标题,因此它被称为:

A. 附录标题

与原来不同,使用 \appendix 时:

附录 A

附录标题

有人能帮忙忽略附录中的修改以使其看起来像“正常”吗?

相关内容