topnush
Take the following MWE
```
\documentclass[12pt,a4paper]{article}
\usepackage{exsheets}
\begin{document}
This exercise sheet is about lectures 1-3.
\begin{question}
Which one of the entries does not fit with the others?
\end{question}
\end{document}
```
How can I add a superscript asterisk so that it becomes Question 1* ?
Top Answer
samcarter
You can adjust the `counter-format` to your taste:
```
\documentclass[12pt,a4paper]{article}
\usepackage{exsheets}
\SetupExSheets{counter-format=qu.$^\ast$}
\begin{document}
This exercise sheet is about lectures 1-3.
\begin{question}
Which one of the entries does not fit with the others?
\end{question}
\end{document}
```
