I have a report written in IEEEtran class. Now I need to make slides in beamer. There are lot of equations formatted according to \IEEEeqnarray with different alignments, so it will be cumbersome to transform them all to either \align or \eqnarray environments which are possible environments in beamer.
I am curious if there is any way to use \IEEEeqnarray environment in beamer class? I did try \usepackage{IEEEtrantools}, but its not working in following example code:
\documentclass{beamer}
\mode<presentation> {
\usetheme{Warsaw}
\useoutertheme{infolines} }
\usepackage{graphicx} % Allows including images
\usepackage{booktabs} % Allows the use of \toprule, \midrule and \bottomrule in tables
\usepackage{epstopdf}
\usepackage[font=small,skip=0pt]{caption}
\usepackage[backend=bibtex]{biblatex} \bibliography{references}
\usepackage{bibentry}
\usepackage{mathtools}
%\usepackage{IEEEtrantools}
\beamertemplatenavigationsymbolsempty
\usepackage[framemethod=tikz]{mdframed} %for slide transition %---------------------------------------------------------------------------------------- % TITLE PAGE %----------------------------------------------------------------------------------------
\title[\date{\today} ]{Heading} % The short title
\author{kaka} % Your name \institute[my univ] % Your institution as it will appear on the bottom of every slide, may be shorthand to save space { My University \\ % Your institution for the title page \medskip \textit{kaka@tata.com} % Your email address } \date{\today} % Date, can be changed to a custom date
\begin{document}
\begin{frame}
\frametitle{Overlapping Composite Binary Hypotheses}
Due to the uncertainty in the noise variance, composite binary hypotheses .......
\begin{IEEEeqnarray*}{rCl}
SNR&=&\dfrac{E[|\vec{a}^ {\ \dagger} \vec{b}s|^2]}{E[|\vec{a}^\dagger \vec{w}|^2]} \\
&=& \frac{E[|s|^2]\cdot |\vec{a}^\dagger \vec{b}|^2}{E[|\vec{a}^\dagger \vec{w}|^2]}
\end{IEEEeqnarray*}
\end{frame}
\end{document}

IEEEtrantools. – Apr 14 '15 at 15:46File IEEEtrantools.sty not found. \beamertemplatenavigationsymbolsemptyand would have been interesting for us. – LaRiFaRi Apr 14 '15 at 15:56