以下是示例代码。我想让“摘要”的标题左对齐。如何更改“摘要”的大小?谢谢您的回答!
\documentclass{article}
\begin{document}
\begin{abstract}
The abstract goes here.
\end{abstract}
\end{document}
答案1
您可以重新定义abstract
环境以满足您的标准:
\documentclass{article}
\usepackage{lipsum}
\renewenvironment{abstract}
{\small\quotation
{\bfseries\noindent{\large\abstractname}\par\nobreak\smallskip}}
{\endquotation}
\begin{document}
\begin{abstract}
\lipsum[4]
\end{abstract}
\lipsum[4]
\end{document}