\documentclass[12pt]{article}
\usepackage{amsmath}
\begin{document}
%\begin{equation}
%\begin{split}
$\theta$(\textit{g}$_1$) * ($\theta$(\textit{g}$_2$))$^{-1}$ = $\theta$(\textit{g}$_1$) * $\theta$(\textit{g}$_2^{-1}$) \\
= $\theta$(\textit{g}$_1$ \textit{g}$_2^{-1}$) \\
= $\theta$(\textit{g}) $\in$ \textit{G}, where \textit{g} = \textit{g}$_1$ \textit{g}$_2^{-1}$
%\end{split}
%\end{equation}
\end{document}
- I'm trying to align the equal signs but remove the comments gives a '}' missing error
- Is there a way to avoid all the '$' inside the equation?
$signs in the individual lines of the equation is not only not needed, but causing trouble. also, there is no need to specify italic for single letters -- all letters are italic there. and for text, such as "where", you should enter that as\text{ where }; notice the spaces on either side of "where". these features are provided byamsmath; look at the examples in the user's guide:texdoc amsmath. – barbara beeton Feb 15 '17 at 14:27