Revtex4-2-如何在使用双列时将摘要变成宽文本

Revtex4-2-如何在使用双列时将摘要变成宽文本

我需要将摘要部分放在宽文本版本中,但不需要其余部分。我试过了

\makeatletter
\renewcommand\frontmatter@abstractwidth{\dimexpr\textwidth-1in\relax}
\makeatother

但这并没有改变任何事情,我尝试了其他问题中的一些建议,但没有任何效果。

\documentclass[10pt,letterpaper,twocolumn,aps,pra, superscriptaddress,longbibliography]{revtex4-2}

\usepackage{xcolor}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{braket}
\usepackage{circuitikz}
\usepackage{tikz}
\usetikzlibrary{quantikz}
\usepackage[export]{adjustbox}
\usepackage{subcaption,graphicx}
\captionsetup{
  subrefformat=parens
}

\begin{document}
\date{\today}

\author{Figen Yilmaz}
\author{C...}
\title{blabla}

\date{\today}
\maketitle

\section{Abstract}

就像这张图片中那样: 在此处输入图片描述 但我想要标题“摘要”,提前谢谢!

答案1

\renewcommand\frontmatter@abstractwidth完全正确,你只需要使用abstract环境来进行摘要:

\documentclass[10pt,letterpaper,twocolumn,aps,pra, superscriptaddress,longbibliography]{revtex4-2}

\usepackage{xcolor}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{braket}
\usepackage{circuitikz}
\usepackage{tikz}
\usetikzlibrary{quantikz}
\usepackage[export]{adjustbox}
\usepackage{subcaption,graphicx}
\captionsetup{
  subrefformat=parens
}

\usepackage{lipsum}

\makeatletter
\renewcommand\frontmatter@abstractwidth{\dimexpr\textwidth\relax}
\makeatother


\begin{document}
\date{\today}

\author{Figen Yilmaz}
\author{C...}
\title{blabla}

\date{\today}

\begin{abstract}
\lipsum[2]
\end{abstract}
\maketitle

\lipsum

\end{document}

在此处输入图片描述

答案2

摘要应该 \maketitle

我更喜欢用不同的方式重新定义\frontmatter@abstractwidth,因为这应该是一个扩展到维度的宏。但是你不想减去 1in。

不过,我并不担心:该课程不会提供在发布阶段添加的详细信息,包括他们喜欢的摘要格式。

请注意,caption(和subcaption)与 不兼容revtex4-2,使用它们会改变标题的外观,这不会让您提交论文的期刊的文字编辑满意。您可以改用,subfig如下所示。

\documentclass[10pt,letterpaper,twocolumn,aps,pra, superscriptaddress,longbibliography]{revtex4-2}

\usepackage{xcolor}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{braket}
\usepackage{circuitikz}
\usepackage{tikz}
\usetikzlibrary{quantikz}
\usepackage[export]{adjustbox}% also loads graphicx
%\usepackage{subcaption}% incompatible with revtex4-2
\usepackage[caption=false]{subfig}

\usepackage{lipsum}

%\captionsetup{
%  subrefformat=parens
%}

\makeatletter
\AtBeginDocument{\edef\frontmatter@abstractwidth{\the\textwidth}}
\makeatother

\begin{document}
\date{\today}

\author{Figen Yilmaz}
\author{C...}
\title{blabla}

\date{\today}
\begin{abstract}
\lipsum[3]
\end{abstract}

\maketitle

\section{Introduction}

\lipsum

\begin{figure*}

\subfloat[]{\includegraphics[width=0.4\textwidth]{example-image}}\hfill
\subfloat[]{\includegraphics[width=0.4\textwidth]{example-image}}

\caption{A double subfloat}

\end{figure*}

\lipsum
\end{document}

在此处输入图片描述

相关内容