Tiの「セットにない」コマンドが何なのか知っている人はいますか?けZ?私が望むのは、あセットであり、Bのサブセットであるあ. Tiのコマンドは何ですかけZは次のように伝えます。「それぞれ私であしかし、B?
次のようなものが必要です:
foreach i in A
if i is in the set B do THIS, else do THAT
答え1
力ずくのアプローチ。
\documentclass{article}
\usepackage{tikz}
\def\setA{1,2,3,4,5}
\def\setB{2,4}
\newif\ifmatch
\begin{document}
\let\setC=\empty
\foreach \x in \setA {\matchfalse
\foreach \y in \setB {\ifnum\x=\y\relax \global\matchtrue \fi}%
\ifmatch\else
\ifx\empty\setC\relax
\xdef\setC{\x}%
\else
\xdef\setC{\setC,\x}%
\fi
\fi}
\setC% should contain 1,3,5
\end{document}
答え2
(順序付けられた)セットは、コンマ区切りのリストとして表すことができます。
\documentclass{article}
\ExplSyntaxOn
\NewDocumentCommand{\foreachnot}{mm+m+m}
{% #1 = main list, #2 = exclusion list,
% #3 = to do if item is in main list but not in the exclusion list
% #4 = to do if item is in the main list and in the exclusion list
\erdos_forachnot:nnnn { #1 } { #2 } { #3 } { #4 }
}
\NewDocumentCommand{\definelist}{mm}
{
\clist_clear_new:c { l__erdos_list_#1_clist }
\clist_set:cn { l__erdos_list_#1_clist } { #2 }
}
\cs_new_protected:Nn \erdos_forachnot:nnnn
{
\cs_set_protected:Nn \__erdos_foreachnot_true:n { #3 }
\cs_set_protected:Nn \__erdos_foreachnot_false:n { #4 }
\clist_map_inline:cn { l__erdos_list_#1_clist }
{
\clist_if_in:cnTF { l__erdos_list_#2_clist } { ##1 }
{% item is in main list and in the exclusion list
\__erdos_foreachnot_false:n { ##1 }
}
{% item is in main list but not in the exclusion list
\__erdos_foreachnot_true:n { ##1 }
}
}
}
% initialize the two scratch functions
\cs_new_protected:Nn \__erdos_foreachnot_true:n {}
\cs_new_protected:Nn \__erdos_foreachnot_false:n {}
\ExplSyntaxOff
\begin{document}
\definelist{A}{1,2,3,4,5}
\definelist{B}{2,4}
\foreachnot{A}{B}{Item #1 is in A but not in B\par}{Item #1 is in A and in B\par}
\end{document}
3 番目と 4 番目の引数は、現在の項目が で示されるテンプレートです#1
。
このようなループをネストする必要がある場合は、さらに作業が必要になります。