参数和 ifnum 的计数器

参数和 ifnum 的计数器

为什么这ifnum总是正确的?\@tempcntb是 5,难道它不应该打印\tmp最后一个参数吗?另外,我不明白这是什么m@ne意思,因为这肯定不会使计数器增加 1(它是从嵌套的\tmp's 的外部到内部)

\documentclass{article}
\usepackage{color}

\makeatletter
\newcommand\metafunc[1]{{
\count@\z@
Number of arguments: \the\@tempcntb \par
\@tempcnta\z@\relax
\@tempcntb=\count@
\@for\tmp:=#1\do{\advance\count@\@ne}
\ifnum\@tempcnta=\@tempcntb
    \@for\tmp:=#1\do{%
    \advance\@tempcnta\@ne
    \textcolor[RGB]{\the\numexpr255*\@tempcnta/(\count@)\relax,
                 0,
                 \the\numexpr255-(255*\@tempcnta/(\count@))\relax}%
                {\tmp(}}\relax
    \@tempcnta\count@ 
    \@for\tmp:=#1\do{%
    \textcolor[RGB]{\the\numexpr255*\@tempcnta/(\count@)\relax,
                 0,
                 \the\numexpr255-(255*\@tempcnta/(\count@))\relax}%
                {)}\relax
    \advance\@tempcnta\m@ne
}
\else
\@for\tmp:=#1\do{\tmp}
\fi
}}
\makeatother


\begin{document}

\metafunc{Banana,Stool,Another banana,chair,peanut}

\end{document}

相关内容