[Tex/LaTex] True/False questions in Moodle package (LaTex)

exam

I am using Moodle Package (fom CTAN) to make quizzes for Moodle. All is going well except I cannot find question type True/False in the manual or google.

It does have question types multi (Multiple Choices), shortanswer (Short Answer), numerical (Numerical fill in the blank), cloze(Mix of three above) and matching.

Any help or idea to tweak available question types (to add True/False) would be gratefully appreciated.

Thanks.

Best Answer

It is possible to display the words "True" and "False" in as type multi with these 2 options. A small example:

\documentclass[12pt]{article}
\usepackage{moodle}
\begin{document}
\begin{quiz}{My first quiz}
\begin{multi}[points=3]{A first test}
Is $8+3 = 11$?
\item* True
\item False
\end{multi}
\end{quiz}
\end{document}