This is follow up question to If Then Else for odd page/even page.
Why doesn't this simple conditional code work in the tufte-book class? It shows me Even on every page! while it works fine in the book class.
\documentclass{tufte-book}
\usepackage{ifthen}
\newcounter{mycount}
\begin{document}
\noindent\whiledo{\themycount<130}{%
\label{mylabel\themycount}%
\ifthenelse{\isodd{\pageref{mylabel\themycount}}}%
{Odd\\}%
{Even\\}%
\stepcounter{mycount}%
}
\end{document}
\pagerefisn't expandable! – Jun 02 '16 at 17:25