我正在尝试更改LaTeX中其中一个原生切片命令的外观。但在这样做之后,乳胶无法按预期处理参考文献。
后面给出的代码应该输出带有文本
的文档1 One
See section 2.
2 Two
See section 1.
但我得到了以下内容。
1 One
See section .
2 Two
See section .
我可以在续订命令中更改哪些内容,以便引用再次起作用。
该文件的代码如下:
\documentclass{article}
\newcounter{seccnt}
\renewcommand{\section}[1]{\vspace{2em}\stepcounter{seccnt} \theseccnt~ {\Large #1}\vspace{0.5em}}
\begin{document}
\section{One}
\label{secOne}
See section \ref{secTwo}.
\section{Two}
\label{secTwo}
See section \ref{secOne}.
\end{document}
答案 0 :(得分:1)
我认为您需要使用\refstepcounter
而不是\stepcounter
,以便存储参考。