I would like to create multiple-choice questions where the answer options are in a random order but the labels of the items should stay i the right order (A, B, C, D). I am using the tasks environment but sometimes also enumerate. Do you have an idea how to do it?
Code: Select all
\documentclass{article}
\usepackage{tasks}
\begin{document}
\begin{tasks}[label=\fbox{\Alph*}](4)
%how to shuffle the answer options?
\task 1
\task 2
\task 3
\task 4
\end{tasks}
\end{document}
