Atribuição automática de pontos/marcas a questões de múltipla escolha

Atribuição automática de pontos/marcas a questões de múltipla escolha

Estou criando um exame com questões de múltipla escolha e questões estruturadas. Como atribuo automaticamente uma nota ou um ponto a questões de múltipla escolha para que, ao compilar o trabalho, o número total de notas inclua o das questões de múltipla escolha.

se eu usar esse código, recebo o seguinte

\documentclass[12pt,addpoints,answers]{exam}
\begin{document}

This exam has \numquestions\ questions, for a total of \numpoints\  points.
\begin{questions}
\question What is the function of nucleoli?
\begin{choices}
    \choice the formation and breakdown of the nuclear envelope
    \choice the formation of centromeres
    \choice the formation of ribosomes
    \choice the organisation of the spindle during nuclear division
\end{choices}   
\question An actively growing cell is supplied with radioactive amino acids.\\
Which cell component would first show an increase in radioactivity? \\
\begin{oneparchoices}
    \choice Golgi body
    \choice mitochondrion
    \choice nucleus
    \choice rough endoplasmic reticulum
\end{oneparchoices}
    \question \begin{parts}
        \part There are 20 units of DNA in a cell during stage G2 of mitosis. Give the number of units of DNA   you would expect to find in this cell
        \begin{subparts}
            \subpart[1] at prophase of mitosis; \fillwithdottedlines{0.25in}
        \end{subparts}
    \end{parts}
    \end{questions}
\end{document}

Número total de pontos

Responder1

Eu modifiquei \questionpara o padrão 1 ponto, então você tem que usar \question[0]para atribuir pontos por partes. Não consegui encontrar uma opção para suprimir pontos de impressão, então criei \pointformatuma.

\documentclass[12pt,addpoints,answers]{exam}

\begin{document}

This exam has \numquestions\ questions, for a total of \numpoints\  points.
\begin{questions}
\let\normalquestion=\question
\renewcommand{\question}[2][1]{\normalquestion[#1]#2}
\pointformat{\hspace{-.5em}}

\question What is the function of nucleoli?
\begin{choices}
    \choice the formation and breakdown of the nuclear envelope
    \choice the formation of centromeres
    \choice the formation of ribosomes
    \choice the organisation of the spindle during nuclear division
\end{choices}   
\question An actively growing cell is supplied with radioactive amino acids.\\
Which cell component would first show an increase in radioactivity? \\
\begin{oneparchoices}
    \choice Golgi body
    \choice mitochondrion
    \choice nucleus
    \choice rough endoplasmic reticulum
\end{oneparchoices}
    \question[0] \begin{parts}
        \part There are 20 units of DNA in a cell during stage G2 of mitosis. Give the number of units of DNA   you would expect to find in this cell
        \begin{subparts}
            \subpart[1] at prophase of mitosis; \fillwithdottedlines{0.25in}
        \end{subparts}
    \end{parts}
    \end{questions}
\end{document}

informação relacionada