TeX/ifodd

From Wikibooks, open books for an open world
< TeX
Jump to navigation Jump to search

Synopsis[edit | edit source]

\ifodd <integer> <TeX code 1> [\else <TeX code 2>] \fi

Description[edit | edit source]

The \ifodd command denotes the start of an if-then-else control structure. The form <integer> must expand to an integer, and if it is odd then <TeX code 1> is processed; otherwise it is ignored. If the \else section is included and <integer> expands to an even integer, then <TeX code 2> is processed; otherwise it is ignored.