如何使用 \ref 按照计数器最初生成的方式打印其值?

如何使用 \ref 按照计数器最初生成的方式打印其值?

我想用罗马数字对表格中的行进行编号,然后当我交叉引用它们时,以相同的方式打印参考。

例如,

\documentclass{article}
\begin{document}
\newcounter{foo}
\newcommand{\rfoo}{\refstepcounter{foo}(\roman{foo})}

\begin{tabular}{r|l}

\hline

\rfoo\label{f1} & First line \\ \hline

\rfoo\label{f2} & Second line \\ \hline

\hline
\end{tabular}

\

The first line is \ref{f1}.  The second line is \ref{f2}.

\end{document}

给出

在此处输入图片描述

但我想要的是:

在此处输入图片描述

答案1

每个计数器都有一个名为的宏\the...,假设计数器foo将有\thefoo。此\the...宏默认使用阿拉伯数字输出计数器值。

\thefoo也用于标签,因为它会被写入文件.aux。如果(i)请求格式 ,则必须将其写入.aux文件,并在 中使用\thefoo

所以

\renewcommand{\thefoo}{(\roman{foo})}

是游戏的名称;-)

\documentclass{article}



\newcounter{foo}
\renewcommand{\thefoo}{(\roman{foo})}
\newcommand{\rfoo}{\refstepcounter{foo}\thefoo}

\begin{document} 
\begin{tabular}{r|l}

\hline

\rfoo\label{f1} & First line \\ \hline

\rfoo\label{f2} & Second line \\ \hline

\hline
\end{tabular}



The first line is \ref{f1}.  The second line is \ref{f2}.

\end{document}

在此处输入图片描述

这是自动行编号版本

\documentclass{article}


\usepackage{array}

\newcounter{foo}
\renewcommand{\thefoo}{(\roman{foo})}

% Define
\newcolumntype{R}{>{\refstepcounter{foo}\thefoo\arraybackslash}r}

\begin{document}

\begin{tabular}{R|l}

\hline

\label{f1} & First line \\ \hline

\label{f2} & Second line \\ \hline

 & ... line \\ \hline

\label{f4}  & ... line \\ \hline


\hline
\end{tabular}

\

The first line is \ref{f1}.  The second line is \ref{f2}.

And in line \ref{f4} you can see that

\end{document}

在此处输入图片描述

答案2

\label写入\theX最后一个计数器X,因此相应地更新它:

在此处输入图片描述

\documentclass{article}

\newcounter{foo}
\renewcommand{\thefoo}{(\roman{foo})}
\newcommand{\rfoo}{\refstepcounter{foo}\thefoo}

\begin{document}

\begin{tabular}{r|l}
  \hline
  \rfoo\label{f1} & First line \\
  \rfoo\label{f2} & Second line \\
  \hline
\end{tabular}

The first line is~\ref{f1}. The second line is~\ref{f2}.

\end{document}

作为参考,请参阅了解引用和标签的工作原理

相关内容