exam package enables the possibility to use and define \half as to for instance consider .5. However I have not seen any way of implementing .75 and .25 in case I want a part or question to have that value.
Is it possible? In case yes can you give me an example and how I can have the correct sum of points per question?
Edit: MWE included
\documentclass[11pt, addpoints, twoside, a4paper]{exam}
\begin{document}
\begin{questions}
\renewcommand*\half{.5}
\question[0\half]
This question is 0.5 points
\renewcommand*\half{.25}
\question[1\half]
This question is 1.25 points
\renewcommand*\half{.5}
\question[1\half]
This question is 1.5 points
\end{questions}
Total points with addpoints: \numpoints~(3.5)
Total points real count: 3.25
I don't know how to define quarters, etc. so I can easily define the points in my questions without having to renew \texttt{half} command, and also having the final sum properly done.
\end{document}
