[Tex/LaTex] LaTeX Beamer style

beamer

I never used beamer in LaTeX, could anyone suggest how can i get the output using beamer, it will helpful for to proceed my project?

Beamer style

Best Answer

The theme looks like a combination of smoothbars and miniframes.

\documentclass{beamer}

\useoutertheme[subsection=false]{smoothbars}
\useoutertheme[footline=authortitle,subsection=false]{miniframes}
\usecolortheme{dolphin}

\author{names}
\title{text}

\begin{document}

\section{Introduction}

\begin{frame}
    \frametitle{title}
    test
\end{frame}

\end{document}

enter image description here