[Tex/LaTex] Add notes to latex beamer

beamernotes

I need to add notes for presentation like we add Microsoft PowerPoint 'click to add notes'. Is there some way to do it using latex beamer?

Best Answer

You can write everything you want between frame environment into a note command. With the option [itemize] everything you write into the note will look like an itemize list.

%\documentclass[notes]{beamer}       % print frame + notes
\documentclass[notes=only]{beamer}   % only notes
%\documentclass{beamer}              % only frames

\title[Your Short Title]{Your Presentation}
\author{You}
\institute{Where You're From}
\date{\today}

\begin{document}

\begin{frame}
  \titlepage
\end{frame}

\begin{frame}
    \frametitle{Introduction}

\begin{itemize}
  \item Your introduction goes here!
  \item Use \texttt{itemize} to organize your main points.
\end{itemize}

\end{frame}

\note{Everything you want}

\begin{frame}
    \frametitle{Development}

    Lot of interesting things

\end{frame}

\note[itemize]{
\item point 1
\item point 2
}

\begin{frame}
    \frametitle{Development}

    Lot of interesting things

\end{frame}

\end{document}

See here on write latex : https://www.writelatex.com/181070qqjrgq