如何使用其他语言的考试课程

如何使用其他语言的考试课程

我们可以用exam另一种语言使用文档类及其所有包吗?

例如,我们如何将考试信息翻译成另一种语言?

答案1

您可以使用exam与其他语言兼容,但您需要自己翻译。

它是文档包含重新定义标签所需的所有命令。在以下(糟糕的)示例中,使用/列出了其中一些命令:

\documentclass[answers]{exam}
\usepackage[british]{babel}

\pagestyle{headandfoot}
\runningheadrule
\firstpageheader{Left}{Center}{Right}
\runningheader{LeftM}{Middle, Page \thepage\ of \numpages}{RightM}
\firstpagefooter{}{}{}
\pointpoints{exam-point}{exam-points}
\bonuspointpoints{exam-bonus-point}{exam-bonus-points}
\qformat{\textbf{Question \thequestion}\quad (\totalpoints)\hfill}

\renewcommand{\solutiontitle}{\noindent\textbf{The solution:}\enspace}

\begin{document}
\addpoints    
\begin{questions}
        \question[10]
        The question 1.
        \begin{solution}
        This is the answer to question 1.
        \end{solution}

        \question
        \begin{parts}
                \part[5] The question 2a.
                \part[5] The question 2b.
                \bonuspart[1] The question 2c.
        \end{parts}
\end{questions}

\newpage

% \chqword{Question:}
% \chpgword{Page:}
% \chpword{Points:}
% \chbpword{Bonus Points:}
% \chsword{Score:}
 \chtword{Total Points}
 \cvqword{Question-No.}
% \cvpgword{Page}
 \cvpword{Exam-Points}
 \cvbpword{Bonus Exam-Points}
% \cvsword{Score}
% \cvtword{Total:
\combinedgradetable

\end{document}

相关内容