7 Aug
2010
7 Aug
'10
4:33 p.m.
On Sat, 7 Aug 2010, Vedran Miletić wrote:
How can I define a command by reusing the already defined command?
\def \HelloTwo #1#2 {Hello, #1 and #2!} \def \HelloOne #1 {\HelloTwo{#1}{Vedran}}
This gives me a "Runaway argument".
Can you post a complete example? This works for me \def\HelloTwo#1#2{Hello, #1 and #2!} \def\HelloOne#1{\HelloTwo{#1}{Vedran}} \starttext \HelloOne {One} \stoptext Aditya