This vignette describes the basic way of randomizing exams using this package.
When you are creating a LaTeX exam or homework. I have found in my own teaching that these are the things that I am more interested in.
This package and the corresponding scripts and TexShop engines that come distributed with it tries to address these issues.
In essence, it will understand any ‘LaTeX’ “itemize” structure that
follows the \begin{envname}
\end{envname}
structure, with some kind of command that produces “items” within that
environemnt \item
. It will create a tree with that nested
structure that you define, and it will randomize it keeping the root of
the tree fixed on each branch.
The default structure that it will understand is that of the exam class, but it is heavily customizable.
This packages comes together with a script that can already be used
to randomize exams and a couple of .engines
to be used with
TexShop engines
If you are using the exam class structure on your exam already, that is already the default, and you will only need to specify the output number. 1
All the executables that are necessary are found inside the
exec/
folder. Which you can find by running
## [1] "/private/var/folders/f9/gx8nkt0j6kgcwslqj681v8jw0000gp/T/Rtmp3qkaKd/Rinst10a993d21e2d0/TexExamRandomizer/exec"
Copy the examrandomizer
executable somewhere in your
$PATH
. Copy the gradeexamrandomizer
as well on
the same location if you are intending to use the automatic
grading.
Then, drop the examrandomizer.engine
on the TexShop
engine library (Usually it is found in ~/Library/TeXShop/Engines)2.
Once you have done that, just add a line in your ‘LaTeX’ document within the first 200 lines of your documen that says (let’s assume you want 5 versions)3
%! TexExamRandomizer = {"noutput" = 5}
Choose the examrandomizer
engine from the TexShop
engines list.
Alternatively, if you just want to use it directly from the
terminal, or your TeX typesetting system doesn’t allow
.engine
files simply say:
examrandomizer --file <filename.tex> --compile
For a more detailed explanation of all the options given by the interface, please look at
It also adds a layer of personalization as well by being able to
modify the values of commands on the preamble on a per-document basis,
this is explained further on
vignette("ExamOptions", package = "TexExamRandomizer")
:
The implementation of a json-like parser within the document certainly makes it a lot more concise to use. However, that is simply a wrapper of the underlying functions that define this R library.
If you want to use the full functionality and try to create your own
scripts, instead of using the functions I provide. You might want to
start by looking at: - The functions CreateRandomExams
and
GenerateHomework
for randomizing homework and exams -
Grading is done by calling GradeExams
and
ObtainExamStats
… although if your exam structure is a bit
wild it might have issues trying to understand it.
Examples of how to write your latex document, and the options that you can use, can be found on
## [1] "/private/var/folders/f9/gx8nkt0j6kgcwslqj681v8jw0000gp/T/Rtmp3qkaKd/Rinst10a993d21e2d0/TexExamRandomizer/extdata/ExampleTexDocuments"
exam_testing_nquestions.tex
showcases how to pick a set
of questions from each optionexam_testing_norandomizing.tex
showcases how to stop
certain sections form being randomizedexam_testing_itemize.tex
showcases how to change the
names of environmentsIf you are planning to also use the automatic grading then, after your students respond to the exams:
Add as well the gradeexamrandomizer
to a folder
included in $PATH
.
You have to collect the student’s responses in a table. Where the columns of the responses should be named “Q 1”, “Q 2”, etc.
In that same folder, you need to copy the “full answer sheet”” that you got from compiling the exam with this software.
Run the following command
gradeexamrandomizer --resp <student responses csv> --answer <fullanswersheet csv>
You will find a *_Graded.csv
and a
*_Stats.csv
file in the same folder as the student’s
responses with the grades and stats of the exam.
For a more detailed explanation, look at the following vignette
You can find on this vignette how to omit questions after you have already created the exam, or how to change the correct choices.
If you have the expertise or you are willing to put some time to fix these issues I would be happy to talk with you.
The program assumes that you are already able to compile the ‘LaTeX’ document as it is. If your document is already ill-formed, the program will just run happily and create something that it is even more ill-formed.
You can’t use nested itemize environments unless you don’t change the names of the environments between the different layers. All names that correspond to the structure of your ‘LaTeX’ document must be named uniquely.
For example, the exam class uses as the top layer “itemize
environment” the environment name “questions” and the item command
“\question
”. But the next layer is referred to with an
environment named “choices”, being “\choice
” or
“\CorrectChoice
” the item namse. This structure is
perfectly correct to use for this program.
However, using the “enumerate” and “itemize” environments by
nesting them, since they both use the \item
command would
break the document.
The second caveat is, this program ONLY reorders
the lines. Therefore, if you have multiple \choices
written
on the same line, it won’t detect them. Simply write them in different
lines.
I think mostly everyone already does this, since it presents a more
clean look on your documents. (Remember that you can always write % at
the end of a line, and ‘LaTeX’ will ignore then the \n
at
the end of that line, but this program won’t)
If you are using another structure, it is explained in
the advance section how to tell the program what are you using.
vignette("ExamOptions", package = "TexExamRandomizer")
↩︎
If you are using another ‘LaTeX’ distribution that
doesn’t allow .engine scripts, you will have to use the
examrandomizer
directly on the terminal, which is not
difficult↩︎
The double quotes around noutput
are
necessary↩︎