在 abstract 包的 onecolabstract 环境中添加 \paragraph 部分

在 abstract 包的 onecolabstract 环境中添加 \paragraph 部分

我在环境\paragraph{}内部使用时遇到了麻烦onecolabstract。期望的目标看起来应该是这样的:

\documentclass[twocolumn]{article}
\usepackage{lipsum}
\usepackage{abstract}
\title{Minimal Example}
\author{DocBuckets}
\begin{document}
\twocolumn[
    \maketitle
    \begin{onecolabstract}
        \textbf{Background} Abstract background text...

        \textbf{Methods and Results} Abstract methods text...

        \textbf{Conclusions} Abstract conclusions text...
    \end{onecolabstract}
]
\section{Introduction}
\lipsum[1]
\section{Methods}
\lipsum[2]
\end{document}

但我想使用\paragraph{Background}\paragraph{Methods and Results}等,而不是\textbf{}我在最小示例中使用的替代方案。当我尝试这样做时,我得到了各种错误。

也许与此相关,在我给出的最小示例中,尝试使用该\lipsum[1]方法生成抽象段落时也遇到了错误。我怀疑问题对于\lipsum\paragraph中是相同的onecolabstract。我能做些什么来让它工作吗?

答案1

onecolabstract是一个列表类型的环境,因此不希望看到命令生成的部分标题等\paragraph。相反,您可以将材料装箱放在小页面中:

示例输出

\documentclass[twocolumn]{article}

\usepackage{lipsum}
\usepackage{abstract}

\title{Minimal Example}
\author{DocBuckets}

\begin{document}


\twocolumn[
    \maketitle
    \begin{onecolabstract}
      \begin{minipage}{1.0\linewidth}
        \paragraph{Background} Abstract background text describing
        enough to place this in context and make the reader
        sufficiently curious to indulge their time in this wonderful work\dots

        \paragraph{Methods and Results} Abstract methods text and some
        extraordinary results\dots

        \paragraph{Conclusions} Abstract conclusions text.

      \end{minipage}
    \end{onecolabstract}
]
\section{Introduction}
\lipsum[1]

\section{Methods}
\lipsum[2]

\end{document}

我估计你的摘要不会太长,所以它适合当前页面。你可能需要调整软件包设置的一些参数abstract来改善摘要中的垂直间距onecolabstract

相关内容