[Tex/LaTex] Beamer: show symbols (alpha and beta) in normal text and frame title, and increase their size

beamerfontsizemath-modesymbolstitles

As I specify in the title, I want to be able to include symbols like alpha and beta in my slides, in normal text format in both the body of the slide and the frame title.

Besides, I want these symbols bigger than the rest of the text…

I am not sure which packages I load in my real presentation, cause there I can see the alpha and beta symbols but I cannot alter their size. With the following MWE I cannot even see alpha and beta…

How can I accomplish this?

This is my MWE:

\documentclass{beamer}

\begin{document}

\begin{frame}
\frametitle{\huge{\alpha} and \huge{\beta} diversities}
    I want to study \huge{\alpha} and \huge{\beta} diversities, and I want \alpha\ and \beta\ to be bigger...
\end{frame}

\end{document}

Which produces this:
fig

Best Answer

Your syntax of use \huge and Greek letters is wrong. Try this:

\documentclass{beamer}

\begin{document}

\begin{frame}
\frametitle{{\huge $\alpha$} and {\huge $\beta$} diversities}
    I want to study {\huge $\alpha$} and {\huge $\beta$} diversities, and I want $\alpha$ and $\beta$ to be bigger...
\end{frame}

\end{document}

enter image description here