1- I want to make a table with n number of rows ?
my wrong code
\newcommand{\xx}{
\begin{tabular}{|c|c|c|}
\hline
\newcount\fooo
\fooo=10
\loop
11 & 12 & 13\\
\hline
\advance \fooo -1
\ifnum \fooo>0
\repeat
\end{tabular}
}
I want the result like that using loop or any command

2- \def\abc{dd} create one value
I want command create multiple values
like
\def-multiple \abc {dd,cc,vv,mm}
now i am using this code
\foreach \x in {1,...,\nRows} {\addtabtoks{ \abc(\x) & yyy & yyy \\\hline}}
the desired command is \abc(\x) or \abc(2)
first loop type the first value of \abc
second loop type the second value of \abc and so on
\whiledo?, and Copy table row n times, for example? – cmhughes Jun 08 '14 at 02:10\def\abc{dd}should do? Print out a cell content and\def\abc{dd,cc,vv,mm}the contents of 4 cells forming a table row? – Jun 08 '14 at 03:51\def\abc{dd}etc. change within a table or should all rows look alike as in the table screenshot? – Jun 08 '14 at 04:04\abcwhile advancing through the rows – Jun 08 '14 at 04:17