未出现在主要问题中的要点

未出现在主要问题中的要点

由于某种原因,这些点确实出现在部分和子部分中,但它没有出现在本文档的主要问题中。我尝试删除 2 ** 之间的 3 条线,以防它们导致这种情况。但没有任何帮助。

\documentclass[letterpaper,twoside,answers,12pt]{exam}
\usepackage{longtable,graphicx,tabularx,booktabs,amsmath,amssymb,lmodern,textcomp,gensymb,ifpdf,placeins,wrapfig,xfrac,lastpage,floatrow,setspace,cancel,units,booktabs,array,multirow,color,ifthen,zref-abspage,zref-lastpage,multicol,bigints,relsize}
\usepackage[margin=1in]{geometry}
\usepackage[noabbrev]{cleveref}
\usepackage{titlesec}
\usepackage[usenames,dvipsnames,svgnames,table]{xcolor}
\usepackage{tikz}\usetikzlibrary{shapes.misc}
\onehalfspacing
**\marksnotpoints
\bracketedpoints
\pointsinrightmargin**
\unframedsolutions
\SolutionEmphasis{\color{blue}}

\qformat{{\large \textbf{Question \#\thequestion}}\hfill        \vspace{0.4cm}}

    \begin{document}


        \begin{questions}

            \question[10]
            Find the distance 
        \end{questions}
    \end{document}

如果我的问题中有部分内容,它们确实会像 [10] 一样出现在右边距中......

我付出了努力\pointpoints{ mark}{ marks},但是在各部分之后却没有得到“分数”,而且有一个问题搞砸了。

在此处输入图片描述

答案1

您已重新定义问题的外观。因此,documentclass 不知道将点放在哪里。将其添加\thepoints到您喜欢的任意位置:

% arara: pdflatex

\documentclass[addpoints,letterpaper,twoside,answers,12pt]{exam}
\usepackage{lmodern,setspace}
\usepackage[margin=1in]{geometry}
\onehalfspacing
\marksnotpoints
\bracketedpoints
\pointsinrightmargin    
\qformat{{\large \textbf{Question \#\thequestion}}\hfill[\thepoints]\vspace{0.4cm}}

\begin{document}    
    \begin{questions}       
        \question[10]
        Find the distance 
    \end{questions}
\end{document}

在此处输入图片描述


题外话:用 loadsiunitx代替unitsxcolor而不是color


编辑:如果你想去掉“marks”这个词,用 替换\marksnotpoints\pointname{}所有这些都在写得很好的手动的exam

相关内容