Is there a way to label an equation with letters instead of numbers? For instance,
\begin{equation}
\label{Problem}
\phi'(t)=f(t, \phi(t)).
\end{equation}
Is there a way to label an equation with letters instead of numbers? For instance,
\begin{equation}
\label{Problem}
\phi'(t)=f(t, \phi(t)).
\end{equation}
With the alphalph package, after 26 equations, they become AA, AB, AC, etc. If one uses \alphalph, the letters are in lowercase.
\documentclass{article}
\usepackage{alphalph}
\def\theequation{\AlphAlph{\value{equation}}}
\begin{document}
\begin{equation}
y=x
\end{equation}
\begin{equation}
y=x^2
\end{equation}
\begin{equation}
y=x^3
\end{equation}
\end{document}

You can simply redefine the counter to display with letters with:
\renewcommand{\theequation}{\alph{equation}}
If you want Uppercase letters use:
\renewcommand{\theequation}{\Alph{equation}}
You can even use combined Letters and numbers. Incorporating the section number as a number, and the equation as a letter:
\renewcommand{\theequation}{\arabic{section}.\Alph{equation}}
Full example...
\documentclass{article}
\usepackage{amssymb}
\renewcommand{\theequation}{\alph{equation}}
\begin{document}
\section{Lower Case Letter}
\begin{equation}
y=x
\end{equation}
\begin{equation}
y=x^2
\end{equation}
\begin{equation}
y=x^3
\end{equation}
\section{Upper Case Letter}
\renewcommand{\theequation}{\Alph{equation}}
\begin{equation}
y=x
\end{equation}
\begin{equation}
y=x^2
\end{equation}
\begin{equation}
y=x^3
\end{equation}
\section{Section number and Upper Case Letter}
\renewcommand{\theequation}{\arabic{section}.\Alph{equation}}
\begin{equation}
y=x
\end{equation}
\begin{equation}
y=x^2
\end{equation}
\begin{equation}
y=x^3
\end{equation}
\end{document}

\setcounter{equation}{0}. Then with the section number and letter option I mentioned above you can have 26 equations per section.
The same follows logically for all levels of sectioning -- chapter, subsection etc.
– tmgriffiths Mar 03 '15 at 06:46