Document Classesexamdesign numbering true/false question

Information and discussion about specific document classes and how to create your own document classes.
Post Reply
newone2016

examdesign numbering true/false question

Post by newone2016 »

Hi everybody,
I am trying to preparing exam includes matching, true/false nad multiple choice parts.
I want to give number for true/false question because I will give students separate bubble sheet for answers. I have tried to modify examdesign class, I solved for matching question but true/false question can not take any number.
What can I do for it?
2016-03-14 14-49-17 Ekran görüntüsü.png
2016-03-14 14-49-17 Ekran görüntüsü.png (73.47 KiB) Viewed 10226 times

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

User avatar
Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

Re: examdesign numbering true/false question

Post by Johannes_B »

I am sorry, but i don't even understand what you are trying to achieve. Please post a minimal working example (including the changes you have made) and ask google to translate your problem.
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
newone2016

examdesign numbering true/false question

Post by newone2016 »

Here is a sample exam. I need a numbering (1,2,3 ..) for each matching and True/False question. Multiple choice question are numbered by examdesign class automatically. But matching and true/false do not take any numbers like multiple choice questions.


Code: Select all

\documentclass[9pt]{examdesign}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\usepackage{graphicx}
\Fullpages
\NumberOfVersions{5}

\begin{document}
\sffamily

\begin{examtop}
EXAM \Alph{version}
\end{examtop}
\bigskip

\begin{matching}[title={Matching},suppressprefix,resetcounter]

\pair{A}{AA}
\pair{B}{BB}
\pair{C}{CC}

\end{matching}

\begin{truefalse}[title={True/False},suppressprefix]
Lütfen cevap kağıdına Doğru ise ``D'' yanlış ise ``Y'' yazınız.
\begin{question}
  \answer{True} For purposes of evaluating the credibility of a source, a
  statement is less credible if the statement maker knows that his or her
  reputation is at risk.
\end{question}

\begin{question}
  \answer{True} A deductively valid argument can have true premises and a true
  conclusion.
\end{question}

\begin{question}
  \answer{True} A proposition and its double negation are logically equivalent.
\end{question}



\end{truefalse}

\begin{multiplechoice}[title={Multiple choice},suppressprefix]
\begin{question}
How much wood could a woodchuck chuck if a woodchuck could chuck wood?
\choice{A lot.}
\choice{More than most.}
\choice{Exactly $\pi$ cords.}
\choice[!]{It depends on the nature of the woodchuck.}
\end{question}

\begin{question}
How much wood could a woodchuck chuck if a woodchuck could chuck wood?
\choice{A lot.}
\choice{More than most.}
\choice{Exactly $\pi$ cords.}
\choice[!]{It depends on the nature of the woodchuck.}
\end{question}

\end{multiplechoice}

\end{document}
dgreen
Posts: 1
Joined: Fri Jun 24, 2016 7:07 pm

Re: examdesign numbering true/false question

Post by dgreen »

I just use multiple choice and supply choices True and False so I get numbering.

Do you have a solution to the matching environment that is (or can be) shared?
ecoute
Posts: 1
Joined: Tue Aug 23, 2016 9:10 am

examdesign numbering true/false question

Post by ecoute »

dgreen wrote:I just use multiple choice and supply choices True and False so I get numbering.

Do you have a solution to the matching environment that is (or can be) shared?
Hi dgreen, just using those are a bit limited though in what you can do.
Post Reply