如何在本地停用 \phantom

如何在本地停用 \phantom

我需要使用 \phantom 作为参数,并有时将其停用以仅显示枚举的数量。我花了很多时间,尝试了很多方法,但都无法实现。这是一个最小的例子(用于 xelatex),我知道它无法工作,但它展示了一个非常简单的想法:

\documentclass{article}
\usepackage{polyglossia}\setmainlanguage{french}
\begin{document}

\newcommand{\fantome}[1]
    {
    \begin{phantom}
    #1
    \end{phantom}
    }

\let\itemold\item
\renewcommand{\item}{
    \end{phantom}
    \itemold
    \begin{phantom}
    }


Ici les questions.\\
\fantome{Ici les réponses.
\begin{enumerate}
\item Réponse 1.
\item Réponse 2.
\end{enumerate}
}

\end{document}

以下是我想要的输出:

在此处输入图片描述

我尽量简明扼要,但如果需要,我可以解释更多。

相关内容