我使用的考试类别是\usepackage[spanish]{babel}
,当我输入时,\gradetable[v]
标签会以英文显示。可以使用更改问题名称\vqword{newlabelname}
,但我不知道如何更改其他名称。
另一方面,\question[3]
写“3 分”和\question[1]
“1 分”。我想将其更改为西班牙语单词“3 puntos”和“1 punto”。
最小工作示例:
\documentclass[11pt]{exam}
\usepackage[latin1]{inputenc}
\usepackage[spanish]{babel}
\begin{document}
\vqword{Problema}
\addpoints
\gradetable[v]
\begin{questions}
\addpoints
\question[5] Una pregunta.
\addpoints
\question[12] Otra pregunta, un poco más difícil.
\addpoints
\question[3] Una pregunta más sencilla
\end{questions}
\end{document}
答案1
类中有许多可自定义的固定词exam
。您可以在手册中找到所有这些词。对于您的示例,这已经足够了:
\documentclass[11pt]{exam}
\usepackage[latin1]{inputenc}
\usepackage[spanish]{babel}
\pointpoints{punto}{puntos}
\hpword{Puntos:}
\vpword{Puntos}
\htword{Totale}
\vtword{Totale:}
\vsword{Resultado}
\begin{document}
\vqword{Problema}
\addpoints
\gradetable[v]
\begin{questions}
\addpoints
\question[1] Una pregunta.
\addpoints
\question[12] Otra pregunta, un poco más difícil.
\addpoints
\question[3] Una pregunta más sencilla
\end{questions}
\end{document}