Possible Duplicate:
\newcommand name cannot include numbers, e.g., \Mycomand123
I'm trying something that I thought would be simple
\def\test{Hello}
\def\test2{Hello again}
\test
\test2
Since I cannot control the naming I need to do some hacks.
\catcode30 = 11
\catcode31 = 11
\catcode32 = 11
which works for 0 and 1 but not for 2
I have also tried the \catcode´1 etc with the same result.
I get a missing number treated as zero.
If anybody has any ideas on why or another solution to include numbers in the naming of defines it would be much appreciated