我无法使用以下命令引用我的 overleaf 文档正文中的章节或小节:
部分~\label{sec:X}
我正在分享下面文档的代码,它给出以下结果:
我想将参考资料放在这里,Section。
\documentclass[12pt,aps,prl,letterpaper,superscriptaddress]{revtex4-2}
\begin{document}
\section{S2. How to make a section}
\label{sec:buildsection}
I want to place the reference here, Section~\ref{sec:buildsection}
\end{document}
答案1
使用您使用的选项时,该类使用未编号的分段命令。您无法自动引用它们,而必须手动执行,就像您在标题文本中所做的那样:
\documentclass[12pt,aps,prl,letterpaper,superscriptaddress]{revtex4-2}
\begin{document}
\section{S2. How to make a section}\label{sec:buildsection}
I want to place the reference here, Section~S2
\end{document}
您可以更改secnumdepth
计数器以获取编号部分,然后引用就可以正常工作。但通常情况下,更改期刊类别的布局并不是一个好主意,他们希望保持原样。
\documentclass[12pt,aps,prl,letterpaper,superscriptaddress]{revtex4-2}
\setcounter{secnumdepth}{3}
\begin{document}
\section{S2. How to make a section}\label{sec:buildsection}
I want to place the reference here, Section~\ref{sec:buildsection}
\end{document}