Não é possível fazer referência a seções no documento suplementar

Não é possível fazer referência a seções no documento suplementar

SOLUÇÃO: Acontece que era um problema de documentclass. Ao removê prl- \documentclass[reprint,aps,prl,superscriptaddress,notitlepage]{revtex4-2}lo, resolvi meu problema.

Estou tendo um problema em que posso me referir a figuras/equações/tabelas, etc., mas não a seções do meu documento suplementar. Para o suplemento, quero adicionar um prefixo “S” antes de tudo, então os redefini no início. No entanto, isso não parece estar funcionando para as seções e não sei por quê. Eu criei um exemplo de trabalho mínimo abaixo.

O problema provavelmente reside no fato de as seções em si não terem números; no entanto, não vejo nenhum lugar que as desative explicitamente aqui por qualquer motivo.

\documentclass[reprint,aps,prl,superscriptaddress,notitlepage]{revtex4-2}

\usepackage{lipsum}

\newcommand\startsupplement{%
       \setcounter{table}{0}
       \renewcommand{\thetable}{S\arabic{table}}
       \setcounter{figure}{0}
       \renewcommand{\thefigure}{S\arabic{figure}}
       \setcounter{equation}{0}
       \renewcommand{\theequation}{S\arabic{equation}}
       \setcounter{section}{0}
       \renewcommand{\thesection}{S\arabic{section}}
    }

\begin{document}
    
\title{\textbf{\fontfamily{phv}\selectfont 
Supplemental Material: \\ My Supplement Name}}
\author{Me}
\affiliation{Department of Physics}

\maketitle
\startsupplement

\section{First Section}
\label{sec:section1}

Referring to Section~\ref{sec:section1} \\
Referring to Section~\ref{sec:section2} \\

\thesection

\begin{equation}
\label{eq:linear}
y = mx + b
\end{equation}

\begin{equation}
\label{eq:exponential}
y = y_0 + e^{ax}
\end{equation}

Referring to Eqn.~\ref{eq:linear} \\
Referring to Eqn.~\ref{eq:exponential} \\

\lipsum[1]

\section{Second Section}
\label{sec:section2}
    

Referring to Section~\ref{sec:section1} \\
Referring to Section~\ref{sec:section2} \\

Referring to Eqn.~\ref{eq:linear} \\
Referring to Eqn.~\ref{eq:exponential} \\

\lipsum[2]

\end{document}

informação relacionada