I'd like to use arguments passed in into \newcommand as arguments to \put. The following, however, doesn't compile. What would be the right way to do this?
Code: Select all
\newcommand{\myticket}[4]{
\ticket{%
\put(7,38){\makebox[0mm]{\bfseries\Large #1}}
\put{#2,#3}{#4}
}
}
Code: Select all
\myticket{00001}{25}{25}{11}
TIA
s.b.