更改摘要名称时出现问题

更改摘要名称时出现问题

我对摘要部分使用下一个环境:

\newcommand{\abstractname}{Prefacio}  
\makeatletter
\if@titlepage
  \newenvironment{abstract}{%
      \titlepage
      \null\vfil
      \@beginparpenalty\@lowpenalty
      \begin{flushleft}%
        \noindent \bfseries \Huge \abstractname
        \@endparpenalty\@M
      \end{flushleft}}%
     {\par\vfil\null\endtitlepage}
\else
  \newenvironment{abstract}{%
      \if@twocolumn
        \section*{\abstractname}%
      \else
        \small
        \begin{center}%
          {\bfseries \abstractname\vspace{-.5em}\vspace{\z@}}%
        \end{center}%
        \quotation
      \fi}
      {\if@twocolumn\else\endquotation\fi}
\fi
\makeatother 

但仍然在输出中输入“摘要”。我正在使用 documentclass 类型的书籍。

相关内容