\ifnum
commands?I can't make sense of code that has them but I'd like to learn how they work.
Thanks!
\ifnum
commands?NEW: TikZ book now 40% off at Amazon.com for a short time.
\ifnum
is a TeX primitive conditional for comparing integers:Code: Select all
\ifnum1=1true\elsefalse\fi % yields true\ifnum1<2true\elsefalse\fi % yields true\ifnum1>2true\elsefalse\fi % yields false\bye
\ifnum
and all other primitives are explained in the TeX book or in TeX by topic: NEW: TikZ book now 40% off at Amazon.com for a short time.