I need to make a conditional like this:
IF #1 > \variable OR #1 = 0
THEN
PRINT "True"
ELSE
PRINT "False"
If #1 is greater than \variable or is equal to 0, then it it true. The value only contains integers of 0 or greater. There are never any decimals.
I have this conditional in plain TeX, which checks if #1 is greater than \variable, but I do not know how to add the #1 = 0 part.
\ifnum0#1>\variable
True
\else
False
\fi
How can I create a conditional that checks if at least one of these conditionals is true?
