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