左对齐摘要

左对齐摘要

以下是示例代码。我想让“摘要”的标题左对齐。如何更改“摘要”的大小?谢谢您的回答!

\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}

在此处输入图片描述

相关内容