You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the following MWE, cloze texts should generally be hidden due to the global option, but some should be shown as per local options. However, in cases where multiple clozes appear in a paragraph or a TikZ picture, the las local option seems to dictate the behavior of all others.
\documentclass{article}
\usepackage{tikz}
\usepackage{cloze}
\clozehide
\begin{document}
This \cloze{cloze} should be hidden.
This \cloze[show]{cloze} should be shown.
This \cloze{cloze} should be hidden. This \cloze[show]{cloze} should be shown.
This \cloze[show]{cloze} should be shown. This \cloze{cloze} should be hidden.
Cloze inside a TikZ: \tikz[baseline=(C.base)] \node (C) {This \cloze{cloze} should be hidden.};
Cloze inside a TikZ: \tikz[baseline=(C.base)] \node (C) {This \cloze[show]{cloze} should be shown.};
Cloze inside a TikZ: \tikz[baseline=(C.base)] {
\node (C) {This \cloze{cloze} should be hidden.};
\node at (5,0) {This \cloze[show]{cloze} should be shown.};
}
Cloze inside a TikZ: \tikz[baseline=(C.base)] {
\node at (5,0) {This \cloze[show]{cloze} should be shown.};
\node (C) {This \cloze{cloze} should be hidden.};
}
\end{document}
The text was updated successfully, but these errors were encountered:
In the following MWE, cloze texts should generally be hidden due to the global option, but some should be shown as per local options. However, in cases where multiple clozes appear in a paragraph or a TikZ picture, the las local option seems to dictate the behavior of all others.
The text was updated successfully, but these errors were encountered: