考试包中的问号断线

考试包中的问号断线

我得到了与点重叠的文本。

\documentclass[11pt]{exam}
\usepackage{setspace,enumerate}
\usepackage{enumitem}
\setlist[itemize]{noitemsep,nolistsep}
\setlist[enumerate]{noitemsep,nolistsep}

%----language
\usepackage[romanian]{babel}
\usepackage{csquotes}
\DeclareQuoteStyle{romanian}
{\quotedblbase}
{\textquotedblright}
{\guillemotleft}
{\guillemotright}

\usepackage[margin=2cm]{geometry}

%---exam settings
\renewcommand{\thequestion}{\textbf{\arabic{question}}}
\renewcommand{\choicelabel}{\textbf{(\thechoice)}}
\renewcommand{\partlabel}{\textbf{\thequestion.\arabic{partno}}}
\renewcommand{\questionlabel}{\textbf{~\thequestion.}}
\renewcommand{\solutiontitle}{\noindent\textbf{Rezolvare:}\par\noindent}
\newcommand{\af}[1][{}]{% True / False questions
    \fillin[#1][0.25in]}%

\pointpoints{punct}{puncte}
\bonuspointpoints{punct bonus}{puncte bonus}
\pointformat{\bf(\thepoints)}
\totalformat{Total puncte pentru cerința nr. \thequestion: \totalpoints}
\CorrectChoiceEmphasis{\itshape \bfseries}
\setlength\answerlinelength{4.5cm}
%===========print answer=========================
\noprintanswers
% \printanswers

% ------------- Start Exam ----------------------

\begin{document}
\pointsinrightmargin
%\extrawidth{.3cm}
\marginpointname{ \points}
\setlength{\rightpointsmargin}{25mm}

\begin{questions}


    \question [2] Cu ce condiție acceptă fata împăratului Roșu să plece cu Harap Alb după ce acesta trece cu bine probele la care îl supune tatăl fetei și cum se termină basmul?

    \begin{oneparcheckboxes}
        \choice answer 1
        \CorrectChoice answer2
        \choice answer 3
        \choice answer 4
        \choice answer 5
    \end{oneparcheckboxes}


\end{questions}
\end{document}

输出

文本重叠

答案1

那是你要的吗?

在此处输入图片描述

\documentclass[11pt]{exam}
\usepackage[right=4cm,
        top=1.5cm,bottom=2cm,bindingoffset=0cm]{geometry}
\usepackage{setspace,enumerate}
\usepackage{enumitem}
\setlist[itemize]{noitemsep,nolistsep}
\setlist[enumerate]{noitemsep,nolistsep}

%----language
\usepackage[romanian]{babel}
\usepackage{csquotes}
\DeclareQuoteStyle{romanian}
{\quotedblbase}
{\textquotedblright}
{\guillemotleft}
{\guillemotright}

%\usepackage[margin=2cm]{geometry}

%---exam settings
\renewcommand{\thequestion}{\textbf{\arabic{question}}}
\renewcommand{\choicelabel}{\textbf{(\thechoice)}}
\renewcommand{\partlabel}{\textbf{\thequestion.\arabic{partno}}}
\renewcommand{\questionlabel}{\textbf{~\thequestion.}}
\renewcommand{\solutiontitle}{\noindent\textbf{Rezolvare:}\par\noindent}
\newcommand{\af}[1][{}]{% True / False questions
    \fillin[#1][0.25in]}%

\pointpoints{punct}{puncte}
\bonuspointpoints{punct bonus}{puncte bonus}
\pointformat{\bf(\thepoints)}
\totalformat{Total puncte pentru cerința nr. \thequestion: \totalpoints}
\CorrectChoiceEmphasis{\itshape \bfseries}
\setlength\answerlinelength{4.5cm}
%===========print answer=========================
\noprintanswers
% \printanswers

% ------------- Start Exam ----------------------

\begin{document}
\pointsinrightmargin
%\extrawidth{.3cm}
\marginpointname{ \points}
\setlength{\rightpointsmargin}{0mm}

\begin{questions}


    \question [2] Cu ce condiție acceptă fata împăratului Roșu să plece cu Harap Alb după ce acesta trece cu bine probele la care îl supune tatăl fetei și cum se termină basmul?

    \begin{oneparcheckboxes}
        \choice answer 1
        \CorrectChoice answer2
        \choice answer 3
        \choice answer 4
        \choice answer 5
    \end{oneparcheckboxes}


\end{questions}
\end{document}

相关内容