I wish to define a command with many arguments, possibly upwards of fifty. Why is there a limit of nine arguments? Is there a general way of working around this limitation?
Asked
Active
Viewed 114 times
#42is "argument 4 + the character 2". You can find some ideas on how to work around that here, but neither is a really good solution. As a rule of thumb, if you're using more than nine arguments you are doing something wrong – Phelype Oleinik Jun 16 '23 at 18:11{a,b,c,d}or with named arguments{foo=a,font=b,rabbit=wibble,...}– David Carlisle Jun 16 '23 at 18:47