3

How to do Parts number of a question without parentheses in document class exam ?

\documentclass{exam} \begin{document} \begin{questions} \question \begin{parts} \part The sub question 1 ? \part The sub question 2 ? \end{parts} \end{questions} \end{document} 

Its output will be

  1. (a) The sub question 1 ?

    (b) The sub question 2 ?

I need to get the same output without parenthesis for the number of sub questions like

  1. a. The sub question 1 ?

    b. The sub question 2 ?

2
  • 2
    You need to show us what have done so far by giving a minimal working example starting with a \documentclass command, the packages that you are using and \begin{document}...\end{document}. The MWE should be as small as possible, compile and show how you are,doing a question without parts. Commented Sep 7, 2016 at 10:31
  • I have edited my question Commented Sep 8, 2016 at 6:27

1 Answer 1

4

Adjust the macro \partlabel:

enter image description here

\documentclass{exam} \renewcommand\partlabel{\thepartno.}% Default is (\thepartno) \begin{document} \begin{questions} \question The question? \begin{parts} \part The sub question~1? \part The sub question~2? \end{parts} \end{questions} \end{document} 
0

You must log in to answer this question.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.