我正在使用提供给我的乳胶模板来编写我正在编写的项目。但是,在摘要上方,它没有明确显示我希望显示的标题“摘要”。该文档是两列文档,而摘要只有一列。
我认为通常它应该显示摘要标题,所以也许我的文档中某处指定不显示摘要标题?我的代码的顶部内容如下:
\documentclass[a4paper,aps,twocolumn,secnumarabic,
balancelastpage,amsmath,amssymb,nofootinbib]{revtex4-1}
\usepackage{lgrind}
\usepackage{chapterbib}
\usepackage[usenames,dvipsnames]{color}
\usepackage{graphics}
\usepackage[pdftex]{graphicx}
\usepackage{longtable}
\usepackage{epsf}
\usepackage{bm}
\usepackage{thumbpdf}
\usepackage[colorlinks=true]{hyperref}
\usepackage{geometry}
\geometry{verbose,a4paper,tmargin=2.9cm,bmargin=2.8cm,lmargin=2.5cm,rmargin=2.5cm,
headheight=13.6pt}
\usepackage[nodisplayskipstretch]{setspace}
\renewcommand*\arraystretch{.6}
\renewcommand{\vec}[1]{\mathbf{#1}}
\renewcommand\thesection{\arabic{section}}
\renewcommand\thesubsection{\thesection.\arabic{subsection}}
\renewcommand\refname{References}
\begin{document}
\title{My Title}
\author {me}
\date{\today}
\affiliation{University of Somewhere}
\begin{abstract}
My abstract text
\end{abstract}
\end{document}
我可能包含的内容超出了必要范围,但不知道哪些内容可能是相关的。
我尝试过有关摘要的其他各种帖子,但找不到任何完全相同的问题。
答案1
按照您所选的选项,正常revtex
样式是不打印摘要的页眉。
您可以添加该选项preprint
,但同时10pt
,因为该选项还设置12pt
:
\documentclass[
a4paper,aps,twocolumn,secnumarabic,
balancelastpage,amsmath,amssymb,nofootinbib,
preprint,10pt,
]{revtex4-1}
\begin{document}
\title{My Title}
\author {me}
\date{\today}
\affiliation{University of Somewhere}
\begin{abstract}
My abstract text
\end{abstract}
\maketitle
\end{document}
另一种选择是仅添加\textbf{abstractname}
,从印刷的角度来看,我更喜欢这样做。
\documentclass[
a4paper,aps,twocolumn,secnumarabic,
balancelastpage,amsmath,amssymb,nofootinbib,
]{revtex4-1}
\begin{document}
\title{My Title}
\author {me}
\date{\today}
\affiliation{University of Somewhere}
\begin{abstract}
\textbf{\abstractname.} My abstract text
\end{abstract}
\maketitle
\end{document}