我现在知道,如果我想获取传递给命令的第 3 个参数,我必须使用#3
。我的问题是,如果这个参数是一个数组,我如何在不使用 for 循环的情况下读取数组的元素?
例如,当 {1,2,3} 作为第三个参数传递时。我应该如何读取它的第二个元素?
注意:假设我总是会得到一个以逗号分隔的恒定长度数组。
答案1
\documentclass{article}
\def\firstinlist#1,#2,#3\stoplist{#1}
\def\secondinlist#1,#2,#3\stoplist{#2}
\def\thirdinlist#1,#2,#3\stoplist{#3}
\newcommand{\foo}[1]{%
The list has\\
\firstinlist#1\stoplist\\
\secondinlist#1\stoplist\\
\thirdinlist#1\stoplist}
\begin{document}
\noindent\foo{1,2,3}
\end{document}
一个更简单的定义,其中循环由内部宏执行,是使用xparse
和 LaTeX3
\documentclass{article}
\usepackage{xparse}
\ExplSyntaxOn
\DeclareExpandableDocumentCommand{\getlistitem}{mm}
{
\clist_item:nn { #2 } { #1 }
}
\ExplSyntaxOff
\newcommand{\foo}[1]{%
The list has\\
\getlistitem{1}{#1}\\
\getlistitem{2}{#1}\\
\getlistitem{3}{#1}}
\begin{document}
\noindent\foo{1,2,3}
\end{document}
答案2
以下内容可能符合您的要求:
\documentclass{article}
\usepackage{etoolbox}% http://ctan.org/pkg/etoolbox
\newcounter{itemnum}
\newcommand{\mymacroA}[3]{%
\setcounter{itemnum}{0}% Start counting from first item
\gdef\seconditem{\relax}%
\renewcommand*{\do}[1]{%
\stepcounter{itemnum}%
\ifnum\value{itemnum}=2\relax
\gdef\seconditem{##1}%
\fi%
}%
\docsvlist{#3}%
}
\makeatletter
\def\extractsecond#1,#2,#3{#2}%
\newcommand{\mymacroB}[3]{%
\gdef\seconditem{\extractsecond#3}%
}
\makeatother
\begin{document}
\mymacroA{a}{b}{1,2,3,4,5}%
\seconditem
\mymacroA{a}{b}{6,1}%
\seconditem
\mymacroA{a}{b}{123}%
\seconditem
\mymacroA{a}{b}{a,\textbf{b},c}%
\seconditem
\mymacroB{a}{b}{1,2,3}%
\seconditem
\mymacroB{a}{b}{6,1,9}%
\seconditem
\mymacroB{a}{b}{a,\textbf{b},c}%
\seconditem
\end{document}
第一个是使用etoolbox
的列表处理能力。因此,\mymacroA
遍历给定的列表并挑选出第二项,并将其存储在中\seconditem
。
第二种实现假设一个固定列表,该列表<first>,<second>,<third>
与此固定定义相似并选出第二个。由于您可以指定宏的参数文本,因此可以准确修补,因此可以正常工作。