Two questions please about this code example:
1) Why does \rlap prevent me from setting a variable?
2) How do I set a variable from within an \rlap that is visible outside of \rlap?
I'm using MikTex 2.8. Thanks for any clue!
\documentclass{article}
\newif\ifmycheck
\begin{document}
\rlap{\mychecktrue}
% \mychecktrue
\ifmycheck
Check True!
\else
Check False! % always takes this path!
\fi
\end{document}