I want to put some different symbolic notations after some equations such as $*$, $\dagger$ (see image below), $\ddagger$ etc.
I did the following
\begin{equation*}
a+b=c \tag{*}
\end{equation*}
Output was as expected:
For next equation, I wanted to use $\dagger$, and I did following:
\begin{equation*}
p+q=r \tag{\dagger}
\end{equation*}
This produced some errors. I then replaced it in following cheating way:
\begin{equation*}
p+q=r \tag{ \mbox{ $\dagger$ } }
\end{equation*}
This then showed following output as expected:
Question: So to put the sign of second image, I had to do go in process
[equation mode] --> [ text mode ] -- > [equation mode]
i.e. first \begin{equation}-\end{equation}; inside it use \mbox{ }; inside it use dollar sign. Isn't this a cheating? What should be correct way to put this sign?



\tag{$\dagger$}will do, no? – Troy Feb 28 '17 at 08:21\renewcommand{\theequation}{\fnsymbol{equation}}? – TeXnician Feb 28 '17 at 08:24\mboxin your 'cheating' attempt. I'm not sure why , without the\mbox, you would still consider it as cheating, though. – Troy Feb 28 '17 at 08:31