RevTex 4.1 的章節參考

RevTex 4.1 的章節參考

如何引用 RevTex4.1 中的章節?我試過了

  • \section{\label{sec:Coupling}Coupling Efficiency}
  • \section{Coupling Efficiency\label{sec:Coupling}}
  • \section{Coupling Efficiency}\label{sec:Coupling}

但是,在所有情況下都\ref{sec:Coupling}沒有錯誤,只是列印一個空格。

這是一個小文檔,演示了該問題(對於一個排列):

\documentclass[12pt,preprint,longbibliography,aps,prl]{revtex4-1}
\usepackage{amsmath, amsthm, amssymb}
\usepackage{graphicx}
\usepackage{subfigure}
\usepackage{wrapfig}
\usepackage{color}

\begin{document}

\title{stuffing}
\author{John doe}

\begin{abstract}
stuff stuff stuff
\end{abstract}

\maketitle

\section{Introduction}
stuff stuff reference~\ref{sec:Coupling}

\section{\label{sec:Coupling}Coupling Efficiency}
stuff

\end{document}

答案1

使用prlREVTeX 選項,節編號被省略,因此不會排版任何引用,因為 plain\ref只檢索節編號。如果取消此選項,您將再次獲得工作參考。

輸出

相關內容