\documentclass{article}
\begin{document}
\begin{abstract}
\end{abstract}
\end{document}
提问于:
浏览数:
3100
2 回答
7
```tex
\documentclass{article}
\renewcommand{\abstractname}{\Large Abstract}
\begin{document}
\begin{abstract}
\end{abstract}
\end{document}
```
2
基础文档类为啥要调?不应该先关注自己的内容么?
```tex
\if@titlepage
\newenvironment{abstract}{%
\titlepage
\null\vfil
\@beginparpenalty\@lowpenalty
\begin{center}%
\bfseries \abstractname
\@endparpenalty\@M
\end{center}}%
{\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
```
标准文档类`article` 中对 `abstract` 环境的定义,自己 `\renewenviroment` 一下就可以了。
你的回答
请登录后回答
你的回答将会帮助更多人,请务必认真回答问题。