T()
- macro
I have a lot of things, like:
MACRODOWN(T(P), T(E), T(X), T(R), T(T), T(H), T(A), T(F))
MACRODOWN(T(H), T(A), T(F))
MACRODOWN(T(Z), T(A))
I would like to define a macro that will work as follows:
MACRODOWN(TT(P,E,X,R,T,H,A,F))
MACRODOWN(TT(H,A,F))
MACRODOWN(TT(Z,A))
And they, of course, would rule out the first macros above. Is this possible, and if so, how?
source
share