[Tex/LaTex] Changing standard output presentation page size into A4 size

beamerpaper-size

I am working on some project and presentations in LaTeX using the beamer package. I am just a beginner in this so I really need your help. My problem is that the default presentation page size is small and I need to transform it into A4 paper size. Can anybody help me how to handle this problem?

Best Answer

Werner's example shows a problem with the beamer class, namely that the class doesn't redefine \frametitle in handout mode, which is really annoying. I always recommend you do something along the following lines. (Alternatively you may write \frametitle<handout>{...}, which is really cumbersome.)

\newif\ifmybeamer
%\mybeamertrue
\ifmybeamer
    \documentclass[Madrid]{beamer}
\else
    \documentclass{article}
    \usepackage{beamerarticle}

    \makeatletter
    \def\frametitle{%
        \@ifnextchar<%
            {\@frametitle@lt}%
            {\@frametitle@lt<>}%
    }
    \def\@frametitle@lt<#1>#2{}
    \makeatother
\fi

\author{Me}
\title{Beamer Tricks}

\begin{document}
\begin{frame}
   \maketitle
\end{frame}

\begin{frame}%
   \frametitle<notes>{Hi}
   Hello
\end{frame}
\end{document}

Redefining \framesubtitle is done in a similar way.