在乳胶中重新定义切片命令,引用和标签的问题

发布于 2024-09-18 21:59:45 字数 609 浏览 5 评论 0原文

我正在尝试更改 LaTeX 中本机切片命令之一的外观。但这样做后,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}

I'm trying to change the appearance of one of the native sectioning commands in LaTeX. But after doing so, latex cannot handle references as expected.

The code given later is expected to output a document with the text

1 One
See section 2. 

2 Two
See section 1.

But instead I get the following.

1 One
See section . 

2 Two
See section .

What can I change in the renewed command, such that the references will work again.

The code for the document is as follows:

\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}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

抠脚大汉 2024-09-25 21:59:45

我认为您需要使用 \refstepcounter 而不是 \stepcounter,以便存储引用。

I think you need to use \refstepcounter instead of \stepcounter, so that the reference is stored.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文