我想将摘要文本放在 abstract-key(用于所有文章)后面,并左对齐而不是居中。如何在 LaTeX 中执行此操作?
我想要以下格式:
Abstract: some text is here.
默认的摘要格式(我想更改它)是:
Abstract
Some text is here
答案1
以下是重新定义环境的一个例子abstract
:
\documentclass{article}
\renewenvironment{abstract}{%
\noindent\bfseries\abstractname:\normalfont}{}
\begin{document}
\begin{abstract}
some text is here.
\end{abstract}
\section{First section}
\end{document}
您还可以自定义新的结束代码,abstract
以便进行段落分隔等。但是,我猜\section
会跟随,所以这样就可以了。
答案2
您可以使用abstract
使用以下选项包根据需要定制抽象块runin
:
\documentclass{article}
\usepackage{lipsum}
\usepackage[runin]{abstract}
\setlength{\abstitleskip}{-\parindent}
\begin{document}
\begin{abstract}
\lipsum[1]
\end{abstract}
\section{First section}
\lipsum[1-2]
\end{document}