如何在Latex文档的同一页面上提供摘要和介绍?

时间:2021-07-06 06:07:56

I need to change the layout of my document to send my paper to a conference. My abstract is currenly on a separate page. The introduction should be straight after the abstract, not on the separate pages.

我需要更改文档的布局以将论文发送到会议。我的摘要目前在一个单独的页面上。引言应该在摘要之后直接介绍,而不是在单独的页面上。

How can I have an abstract and an introduction on the same page?

如何在同一页面上提供摘要和介绍?

4 个解决方案

#1


The conference should provide with at least information on how to format your paper, and often they have LaTeX styles ready, for instance at IEEE, or at ACM (btw, the IEEEtran class is bundled in TeXlive).

会议应至少提供有关如何格式化论文的信息,并且通常准备好LaTeX样式,例如在IEEE或ACM(顺便说一下,IEEE teran类捆绑在TeXlive中)。

They are pretty standard customizations of the basic article class from LaTeX and actually I never saw one format the abstract on a separate page.

它们是来自LaTeX的基本文章类的非常标准的自定义,实际上我从未在单独的页面上看到一种格式的抽象。

#2


This is a function of the document class, so it really depends.

这是文档类的功能,所以它真的取决于。

Some info on the behavior of the standard classes (article, report, book,...) (PDF),

关于标准类行为的一些信息(文章,报告,书籍......)(PDF),

Good general advice: consider using the memoir class, which is vastly configurable. All the answers are in the docs (PDF).

一般建议:考虑使用可以配置的回忆录类。所有答案都在文档中(PDF)。

#3


You could try notitlepage option, i.e.:

您可以尝试notitlepage选项,即:

\documentclass[notitlepage]{revtex4-1}

#4


(Your conference is probably long due but maybe someone else can use this.)

(你的会议可能很长,但也许其他人可以使用它。)

You can put this before your abstract:

你可以把这个放在你的摘要之前:

\def\abstract{
   \vfil
\begin{center}%
{\bfseries \abstractname\vspace{-.5em}}%
\end{center}
\quotation
}

\def\endabstract{\par
\endquotation
}

This way you can customize your abstract like you want it, without having it on a separate page.

通过这种方式,您可以按照自己的意愿自定义抽象,而无需在单独的页面上进行抽象。

#1


The conference should provide with at least information on how to format your paper, and often they have LaTeX styles ready, for instance at IEEE, or at ACM (btw, the IEEEtran class is bundled in TeXlive).

会议应至少提供有关如何格式化论文的信息,并且通常准备好LaTeX样式,例如在IEEE或ACM(顺便说一下,IEEE teran类捆绑在TeXlive中)。

They are pretty standard customizations of the basic article class from LaTeX and actually I never saw one format the abstract on a separate page.

它们是来自LaTeX的基本文章类的非常标准的自定义,实际上我从未在单独的页面上看到一种格式的抽象。

#2


This is a function of the document class, so it really depends.

这是文档类的功能,所以它真的取决于。

Some info on the behavior of the standard classes (article, report, book,...) (PDF),

关于标准类行为的一些信息(文章,报告,书籍......)(PDF),

Good general advice: consider using the memoir class, which is vastly configurable. All the answers are in the docs (PDF).

一般建议:考虑使用可以配置的回忆录类。所有答案都在文档中(PDF)。

#3


You could try notitlepage option, i.e.:

您可以尝试notitlepage选项,即:

\documentclass[notitlepage]{revtex4-1}

#4


(Your conference is probably long due but maybe someone else can use this.)

(你的会议可能很长,但也许其他人可以使用它。)

You can put this before your abstract:

你可以把这个放在你的摘要之前:

\def\abstract{
   \vfil
\begin{center}%
{\bfseries \abstractname\vspace{-.5em}}%
\end{center}
\quotation
}

\def\endabstract{\par
\endquotation
}

This way you can customize your abstract like you want it, without having it on a separate page.

通过这种方式,您可以按照自己的意愿自定义抽象,而无需在单独的页面上进行抽象。