farsi in beamer latex code example

Example 1: latex beamer new frame

\begin{frame}
\frametitle{New frame}
Some casual text
\end{frame}

%Or otherwise
\frame{
\frametitle{Anotherframe}
Some other content
}

Example 2: add index in beamer latex

\documentclass{beamer}
\usepackage[utf8]{inputenc}

%%%%%%%
Initialize the title of the presentation
%%%%%%%

\begin{document}

\frame{\titlepage}

\begin{frame}{Overview}
\tableofcontents
\end{frame}

\section{Random section}
%%%%%
Some content
%%%%%

\section{Another random section}
%%%%%
Other content
%%%%%
\end{document}

Tags:

Misc Example