[Tex/LaTex] Resize/Scale equation in Beamer

beamerfontsizemath-modescaling

I have a slide in my beamer presentation that looks like:

\documentclass{beamer}
\usepackage{graphicx}
\begin{document}
\begin{frame}
\begin{columns}
\column{0.6\textwidth}
    \includegraphics[width=6cm]{FvsD.png}
    \column{0.4\textwidth}
    \begin{minipage}[c][.5\textheight][c]{\linewidth}
    \begin{itemize}
        \item[]<1> $a = 2.35\e{6}$ \\
        \item[]<1> $b = 1.72$ \\
        \item[]<1> $c = 2.00\e{4}$ \\
        \item[]<1> $d = 0.91$ \\
        \item[]<1> $e = 1.00$
    \end{itemize}
    \end{minipage}
\end{columns}
\begin{center}
    $F = a \cdot x^b + c \cdot sign(\dot x) \cdot x^d \cdot
    |\dot x|^e$
\end{center}
\end{frame}
\end{document}

I don't know much about beamer and this is probably a really stupid way to build the frame, but what I want to do is make the bottom equation bigger. Is there anyway to make just that section of math type larger?

Best Answer

Use \scalebox or \resizebox from the graphicx package:

enter image description here

\documentclass{beamer}
\usepackage{graphicx}% http;//ctan.org/pkg/graphicx
\begin{document}
\begin{frame}
\begin{columns}
\column{0.6\textwidth}
    \includegraphics[width=6cm]{FvsD.png}
    \column{0.4\textwidth}
    \begin{minipage}[c][.5\textheight][c]{\linewidth}
    \begin{itemize}
        \item[]<1> $a = 2.35\e{6}$ \\
        \item[]<1> $b = 1.72$ \\
        \item[]<1> $c = 2.00\e{4}$ \\
        \item[]<1> $d = 0.91$ \\
        \item[]<1> $e = 1.00$
    \end{itemize}
    \end{minipage}
\end{columns}
\begin{center}
  \scalebox{2}{%
    $F = a \cdot x^b + c \cdot sign(\dot x) \cdot x^d \cdot | \dot x|^e$%
  }
\end{center}
\end{frame}
\end{document}

\scalebox{<factor>}{<stuff>} scales <stuff> by a factor of <factor>, while \resizebox{<width>}{<height>}{<stuff>} does the same in terms of the lengths (or dimensions) <width> and <height>. If aspect ratio should be maintained, specify only one length and make the other !.