I am using beamer for making slides. In one of my slides, equations appear in bullets. I would like the equations to be aligned. Since these appear in different bullets, I can't use the align option.
Here is my MWE
\documentclass{beamer}
\begin{document}
\begin{frame}
\frametitle{\color{blue}{Observations}}
\begin{itemize}
\item 1. This bullet has 3 sub-bullets
\begin{itemize}
\item Only Text
\item Text and Equation1
\begin{equation}
f^{r}(\cdot): \{0,1\}\rightarrow\mathbb{Q^r}
\end{equation}
\item Text and Equation2
\begin{equation}
f^{c}(\cdot): \mathbb{Q^r}\rightarrow\mathbb{Q^c}
\end{equation}
\end{itemize}
\end{itemize}
\end{frame}
\end{document}

\setbeamercolor{frametitle}{fg=blue,bg=white}? – samcarter_is_at_topanswers.xyz Mar 30 '16 at 16:18