RevTeX 4-2 中未定义 \section

RevTeX 4-2 中未定义 \section

我正在排版 RevTeX 4-2 课程中的一篇论文,并尝试添加章节。我输入了 PRA 作为期刊类型,但不知何故 TeXstudio 抛出了“未定义的控制序列 \section{Introduction}”,这在 Overleaf 中似乎不是问题。代码如下:

\documentclass[
reprint,
aps,
pra,
%prb,
%rmp,
%prstab,
%prstper,
%floatfix,
]{revtex4-2}
\usepackage{physics}
\usepackage{tikz}
\usepackage{mathdots}
\usepackage{yhmath}
\usepackage{upgreek}
\usepackage{cancel}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{color}
\usepackage{siunitx}
\usepackage{array}
\usepackage{multirow}
\usepackage{amssymb}
\usepackage{gensymb}
\usepackage{tabularx}
\usepackage{extarrows}
\usetikzlibrary{fadings}
\usetikzlibrary{patterns}
\usetikzlibrary{shadows.blur}
\usetikzlibrary{shapes}
\usepackage{graphicx}% Include figure files
\usepackage{dcolumn}% Align table columns on decimal point
\usepackage{bm}% bold math
\usepackage{amsthm}

\begin{document}
    
    \preprint{APS/123-QED}
    
    \title{Black holes stuff}%
    
    
    %No dates, please.
    %\date{\today}% It is always \today, today,
    %  but any date may be explicitly specified
    
    \begin{abstract}
        Blah blah blah.
    \end{abstract}
    
    %\keywords{Suggested keywords}%Use showkeys class option if keyword
    %display desired
    \maketitle
    
    \section[Introduction]{Introduction}
    
    
    \bibliography{apssamp}%
    
\end{document}
%
% ****** End of file apssamp.tex ******

这似乎有什么问题?我尝试更改日记类型,但我认为没有任何效果。

相关内容