在我之前的一个问题中(见这里) 我询问了在编号列表中添加上标以确认某些练习的作者身份。我接受了 campa 定义新定理风格的建议。但是,(这不是我最初问题的一部分)因为我有多个来源,所以我尝试用不同的上标复制相同的过程,结果发现只有最新的定理风格才适用。
所以我的问题是,如何向编号列表添加不同的上标?我希望能够获得类似
1^{\星}
2
3^{\dagger}
4
...
campa 的建议如下
\documentclass{article}
\usepackage{amsthm}
\newtheorem{ex}{Exercise}[subsection]
\newtheoremstyle{plain*}
{\topsep}
{\topsep}
{\itshape}
{0pt}
{\bfseries}
{.\textsuperscript{*}}% <-- this is usually just .
{5pt plus 1pt minus 1pt}
{}
\theoremstyle{plain*}
\newtheorem{ex*}[ex]{Exercise}
\begin{document}
\begin{ex}
Question
\end{ex}
\begin{ex*}
Question
\end{ex*}
\begin{ex}
Question
\end{ex}
\end{document}