I want align the points value of questions to margin and put inside brackets with exsheets package.
MWE:
\documentclass[a4paper]{article}
\usepackage[load-headings,load-tasks,]{exsheets}
\usepackage{lipsum}
\SetupExSheets{
points/name = pont,
points/number-format=\textit,
headings = margin-nr,
headings-format = \normalfont,
counter-within=section,
solution/name = Megoldás
}
\DeclareInstance{exsheets-heading}{my-no-nr}{default}{
toc-reversed = true,
indent-first = true,
vscale = 2,
post-code = \rule{\linewidth}{1pt},
title-format = \Large\scshape,
join = {
main[l,vc]title[l,B](0pt,0pt) ;
},
}
\RenewQuSolPair
{question}[headings=margin-nr]
{solution}[headings=my-no-nr]
%
\begin{document}
\begin{question}{10}
\lipsum[1]
\end{question}
\begin{question}{10}
\lipsum[2]
\end{question}
\end{document}
So I want replace "10 pont" to "(10 pont)". How can I do this?
