\ifnum
commands?I can't make sense of code that has them but I'd like to learn how they work.
Thanks!
\ifnum
commands?Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
\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: Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis