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?
Asked
Active
Viewed 2,229 times
1
Sebastiano
- 54,118
Rajesh Kumar
- 647
-
2Maybe you find it here: http://www.hartwork.org/beamer-theme-matrix/ – Sigur Dec 01 '17 at 11:43
-
Here the same theme and structure: https://tex.stackexchange.com/questions/97731/modify-beamers-outer-theme-smoothbars – Sebastiano Dec 01 '17 at 11:59
1 Answers
2
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}
samcarter_is_at_topanswers.xyz
- 158,329
-
Hi Sam thanks for answer when i used the same coding as you mentioned but the white dot below "Introduction" not comes in my output. Could you please help how to achieve this output. – Rajesh Kumar Dec 04 '17 at 09:56
-

