我不得不将我的文档类别更改为revtex4-1能够得到\widetext
我的一个方程的参数,实施讨论。但是,\begin{abstract}...\end{abstract}
该类不支持抽象。
我的最小代码
\documentclass[twocolumn]{revtex4-1}
\begin{document}
\title{Hello world}
\maketitle
\begin{abstract} % abstract
The maximal
\end{abstract}
\end{document}
我得到了错误
./article.tex:84: LaTeX Error: Environment abstract undefined.
See the LaTeX manual or LaTeX Companion for explanation.
Type H <return> for immediate help.
...
l.6 \begin{abstract}
% abstract
./article.tex:8: LaTeX Error: \begin{document} ended by \end{abstract}.
See the LaTeX manual or LaTeX Companion for explanation.
Type H <return> for immediate help.
...
l.8 \end{abstract}
如何在 revtex4-1 中有摘要? 或者 你怎么能有 widetext文章文档类?
答案1
revtex4-1
装载,以及其他包裹,ltxfront
设置文档的前言。以下内容取自作者指南revtex4-1
(部分IV.4. 摘要,第 7 页;部分IV. 前言):
IV.4. 摘要
论文摘要是使用以下
abstract
环境指定的:\begin{abstract} Text of abstract \end{abstract}
请注意,在 REVTeX 4.1 中,必须在命令前指定摘要
\maketitle
,并且无需将其嵌入到明确的minipage
环境中。
因此,使用
\documentclass[twocolumn]{revtex4-1}% http://ctan.org/pkg/revtex4-1
\begin{document}
\title{Hello world}
\begin{abstract} % abstract
The maximal
\end{abstract}
\maketitle
\end{document}
在查看中的定义时,abstract
调用后显然不存在\maketitle
\frontmatter@maketitle
ltxfront.dtx
:
\def\frontmatter@maketitle{%
\@author@finish
\title@column\titleblock@produce
\suppressfloats[t]%
\let\and\relax
\let\affiliation\@gobble
\let\author\@gobble
\let\@AAC@list\@empty
\let\@AFF@list\@empty
\let\@AFG@list\@empty
\let\@AF@join\@AF@join@error
\let\email\@gobble
\let\@address\@empty
\let\maketitle\relax
\let\thanks\@gobble
\let\abstract\@undefined\let\endabstract\@undefined% ABSTRACT definitions removed
\titlepage@sw{%
\vfil
\clearpage
}{}%
}%