My question is simple but I don't know any simple solution for it.
I have an unknown variable namely \unknown and a variable which I want to compare \unknown with it, namely \test.
I want a command like \aresame to compare them. For example, consider:
\def\test{Five}
\def\unknown{{{F}I{V}E{}}}
\def\unknownb{Four}
\def\unknownc{{\unknownb}}
\aresame{\unknown}{\test}
\aresame{\test}{\unknown}
\aresame{\unknownb}{\test}
\aresame{\unknownb}{Four}
\aresame{\unknownb}{\unknownc}
And when I run the code, I want the command that gives me TRUE, for the first comparision, not false since, although they meybe different in many aspects, both are the same to me.
I expect the results be as follows:
TRUE
TRUE
FALSE
TRUE
TRUE
if/ifxand\uppercase? – Rafael Sep 15 '16 at 12:56