Tagged Questions
8
votes
2answers
173 views
Why are some macros undefined inside an if case?
I'm trying to check if a string is only of one char, and I ran into this problem: LaTeX complains that \StrLeft in the comparison takes and additional argument:
! Argument of \@secondoftwo has an ...
8
votes
2answers
568 views
LaTeX programming comparison operators
The example for the forloop package is \newcounter{ct}\forloop{ct}{1}{\value{ct} < 5}{\arabic{ct}}. I need to compare two counters having the first run up to the second. <= doesnt work, neither ...