Forums » Using AMC (english) »
Hide "Question X" from the question environment
Added by Lewy Blue over 9 years ago
If I put:
\begin{question}{01} \textbf{ Do you own a dog? }\\ \begin{choices} \correctchoice{Yes} \wrongchoice{No} \end{choicescustom} \end{question}
The output will be Question 1
Do you own a dog?
How can I hide the Question 1, so that it just shows Do you own a dog?
Replies (2)
RE: Hide "Question X" from the question environment - Added by Frédéric Bréal over 9 years ago
The way each question is presented can be modified by redefining the LaTeX command AMCbeginQuestion, whose default definition is the following:
\def\AMCbeginQuestion#1#2{\par\noindent{\bf Question #1} #2\hspace*{1em}}
Try this :
\def\AMCbeginQuestion#1#2{\hspace*{1em}}
RE: Hide "Question X" from the question environment - Added by Lewy Blue over 9 years ago
That works perfectly, thank you!
(1-2/2)