Two questions about this code:
Why does rlap prevent me from setting a variable?
I need to set a variable from within rlap that is visible outside rlap, but how?
Code: Select all
\documentclass{article}
\newif\ifmycheck
\begin{document}
\rlap{\mychecktrue}
% \mychecktrue
\ifmycheck
Check 1 True!
\else
Check 1 False! % always takes this path!
\fi
\end{document}
Regards,
-steve