如何在 pythontex 环境中隐藏(或模糊)一些代码?

如何在 pythontex 环境中隐藏(或模糊)一些代码?

我的问题直接与这个

pythontex 是否存在解决方案?至少对于 verbatim 环境而言。更准确地说,让我们考虑以下 MWE:

\documentclass[a4paper]{book}

\usepackage{fontspec}
\defaultfontfeatures{Ligatures=TeX}

\usepackage{pythontex}
\newboolean{gap}
\setboolean{gap}{false}

%%%%%%%%%%%%
\begin{document}


\begin{pyverbatim} #or pyblock etc. 
\hide{x=1}
y=2
\end{pyverbatim}

\end{document}

我希望x=1当且仅当gap出现时才会出现true

相关内容