我有一个相当基本的问题(我猜),但找不到明确的答案。
我有一个来自包 (chemmacros) 的现有命令\ox{#1,#2}
,它有两个用逗号分隔的参数。我想更改命令 (即\renewcommand
),但我不知道如何处理用逗号分隔的参数。
基本思想是:
\renewcommand{\ox}[2]{#1($\mathrm{#2}$)}
但这不起作用。
有人对如何分离这些论点有什么建议吗?
答案1
这是一个简单的版本:
\documentclass{article}
\usepackage{expl3,xparse}
\ExplSyntaxOn
\DeclareDocumentCommand { \ox } { m }
{
\clist_set:Nn \l_tmpa_clist { #1 }
\clist_item:Nn \l_tmpa_clist { 1 }
($\mathrm{\clist_item:Nn \l_tmpa_clist {2}}$)
}
\ExplSyntaxOff
\begin{document}
\ox{1,2}
\end{document}
答案2
有以下三种方法可以实现此目的:
\documentclass{article}
\usepackage{xparse}
\usepackage{pgffor}
\usepackage{etoolbox}
\begin{document}
Using xparse and SplitArgument to extract the values and then
pass them to a second helper macro:
\NewDocumentCommand\oxone{>{ \SplitArgument{1}{,} } m }{\realoxone#1}
\newcommand\realoxone[2]{#1($\mathrm{#2}$)}
\oxone{one,two}
Using a plain def to extract the values using a helper macro:
\newcommand\oxtwo[1]{\realoxtwo#1!}
\def\realoxtwo#1,#2!{#1($\mathrm{#2}$)}
\oxtwo{one,two}
Using a pgf loop to extract the values into ox1, ox2, ...:
\newcommand\oxthree[1]{%
\foreach \x [count=\n] in {#1} {
\csxdef{ox\n}{\x}% save value n as ox<n>
}%
\csuse{ox1}($\mathrm{\csuse{ox2}}$)% use values
}
\oxthree{one,two}
\end{document}