I want to bundle together multiple exam question papers in the form of a bound book to be handed out as practice problems. The exam question papers are mainly objective MCQs. Each chapter will have initial description (text, figures, and diagrams) followed by a series of multiple choice questions.
I use the exam class to generate MCQ exams as shown in the code below.
How to combine this with book templates or or other class to accomplish what I wish to do?
%\documentclass{article}
\documentclass{exam}
\usepackage{graphicx}
\usepackage[export]{adjustbox}
\begin{document}
\begin{questions}
\question
[A]
question 1 \\
\begin{oneparchoices}
\choice option 1
\choice option 2
\choice option 3
\choice option 4
\end{oneparchoices}
\question
[B]
question 2 \\
\begin{oneparchoices}
\choice option 1
\choice option 2
\choice option 3
\choice option 4
\end{oneparchoices}
\question
[A]
question 3 \\
\begin{oneparchoices}
\choice option 1
\choice option 2
\choice option 3
\choice option 4
\end{oneparchoices}
\question
[D]
question 4 \\
\begin{oneparchoices}
\choice option 1
\choice option 2
\choice option 3
\choice option 4
\end{oneparchoices}
\end{questions}
\end{document}

pdfpageshelp. – Ignasi Apr 16 '15 at 07:29\include{exam.tex}? Then you need some way of forgetting exam preamble. Can you copy and paste questions into your new book? You need to define aquestionenvironment in your book preamble. – Ignasi Apr 16 '15 at 16:28questionenvironment that allows me to write MCQs with questions numbered from givenstartcounter toendcounter. I will accept that as answer; sorry cannot upvote your comment; don't have that permission yet :) – mntk123 Apr 17 '15 at 06:30