2

enter image description here

IN xsim package, I want to get any new style for points -or remove the dash at least-.

\documentclass{article}
\usepackage{xsim}

\begin{document}

\begin{exercise}[points=4] \end{exercise}

\begin{exercise}[points=4] \end{exercise}

\begin{exercise}[points=4] \end{exercise}

\begin{exercise}[points=4,bonus-points=10] \end{exercise}

\end{document}

1 Answers1

3

You can enable the layouts style and choose the appropriate template for exercises.

\documentclass{article}
\usepackage{xsim}

\loadxsimstyle{layouts} \xsimsetup{exercise/template=runin}

\begin{document}

\begin{exercise}[points=4] \end{exercise}

\begin{exercise}[points=4] \end{exercise}

\begin{exercise}[points=4] \end{exercise}

\begin{exercise}[points=4,bonus-points=10] \end{exercise}

\end{document}

enter image description here

egreg
  • 1,121,712