latex Document classes Beamer

Help us to keep this website almost Ad Free! It takes only 10 seconds of your time:
> Step 1: Go view our video on YouTube: EF Core Bulk Extensions
> Step 2: And Like the video. BONUS: You can also share it!

Example

\documentclass{beamer}

When to use the beamer class ?

For presentation slides.

What are the specificities of this class ?

The output is landscape-oriented. The document is separated in "frames" (slides).

Simple example

Following example was adapted from : sharelatex.com/learn/Beamer

\documentclass{beamer}
 
\usepackage[utf8]{inputenc}
 
\title{Sample title}
\author{Me}
\date{\today}
 
\begin{document}
     
\frame{\titlepage}
 
\begin{frame}
\frametitle{Sample frame title}
This is a text in first frame. This is a text in first frame. This is a text in first frame.
\end{frame}
 
\end{document}


Got any latex Question?