The following code doesn't compile as LaTeX seems to have a built-in limit of 9 arguments. Is there some way to side-step this limitation?
Code: Select all
\newcommand{\oneTick}[28]{\ticket{%
\put(7,38){\makebox[0mm]{\bfseries\Large #1}}
\put(#2,#3){#4}
\put(#5,#6){#7}
\put(#8,#9){#10}
\put(#11,#12){#13}
\put(#14,#15){#16}
\put(#17,#18){#19}
\put(#20,#21){#22}
\put(#23,#24){#25}
\put(#26,#27){#28}
}}
\begin{document}
\oneTick{00001}{3}{28}{11}{3}{28}{14}{10}{28}{22}{17}{8}{31}{24}{28}{40}{31}{28}{47}{31}{8}{47}{45}{8}{73}{59}{18}{92}
\end{document}
Thanks in advance
Das