상당히 기본적인 질문이 있지만(아마도) 명확한 답변을 찾을 수 없습니다.
\ox{#1,#2}
쉼표로 구분된 두 개의 인수가 있는 패키지(chemmacros)의 기존 명령이 있습니다 . 명령(예: \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}