I'm trying to make a command that formats the alternatives of a test. Can I put an ampersand after each alternative? (I call my tabular command out of this command, and I want to put each alternative in a different cell).
\def\tabiiiii#1\\ %
{%
\def\tempa{#1}%
\ifx\tempa\endtabi%
\endtab%
\else%
\if\relax\detokenize{#1}\relax%
\else%
\stepcounter{alternatives}\thealternatives)~~\@ifnextchar {_}{}#1%
&% HOW TO WORK IT OUT?
\fi%
\stepcounter{countk}%
\the\value{countk}%
\ifnum\the\value{countk}<3%
\else%
\newline\newline\newline\newline%
\fi%
\expandafter\tabiiiii%
\fi%
}%
\&. – Sigur Aug 17 '13 at 23:55