add tag
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}
```

![Screenshot 2021-09-06 at 17.20.59.png](/image?hash=e76ad980b6e27ef1cc3fc207aaa9db7c9ce1c91bb673d21e1de8301e74dce53f)

Enter question or answer id or url (and optionally further answer ids/urls from the same question) from

Separate each id/url with a space. No need to list your own answers; they will be imported automatically.