3

I want my counter to look like this: a

\setcounter{equation}{3^a}
%and
\setcounter{equation}{$3^a$}
%doesnt work

OR maybe Im wrong and thats not counter image

1 Answers1

2

----> set equation counter as three to the power "a".

\documentclass{article}

\usepackage{mathtools} \setcounter{equation}{2}\renewcommand{\theequation}{\arabic{equation}$^{\textup a}$} \begin{document} \begin{equation} \Delta=b^2-4ac \end{equation} \end{document}

enter image description here

Sebastiano
  • 54,118