ConTeXt 相当于 LaTeX 的 \label 和 \refstepcounter 吗?

ConTeXt 相当于 LaTeX 的 \label 和 \refstepcounter 吗?

在 LaTeX 中,只要使用可引用的计数器编号,我就可以标记任何内容。此外,参考文献会自动用 编号\refstepcounter。例如,我写下以下内容:

\documentclass{article}
\usepackage{hyperref}
\newcounter{lol}
\begin{document}
\begin{enumerate}
\item Hola \refstepcounter{lol}\arabic{lol}\label{ha}
\item Chao
\item Mira \ref{ha}.
\end{enumerate}
\end{document}

如何在 ConTeXt 中做到这一点?

相关内容