A^{\dag} got error "Missing $ inserted"
Is there a way to use superscripts not in mathematical formulas?
A^{\dag} got error "Missing $ inserted"
Is there a way to use superscripts not in mathematical formulas?
You can use \textsuperscript, e.g. A\textsuperscript{\dag}, in either math or text mode.
Ais (math) variable, than had to be in math environment. In your case in text as$A^{\dag}$in display math for example as\begin{equation} A^{\dag} ...\end{equation}. Strictly use LaTeX syntax for in-line math expression you should write\(A^{\dag}\)– Zarko Oct 17 '22 at 05:16