I've been using Beamer for my professional presentations and I intend to use it too for my doctoral thesis presentation. And I have a question. The template I currently use is the following one :
\documentclass[17pt]{beamer}
\usetheme{Malmoe}
It's very functional and does its work in a very fine way. But I'd like to have a simpler frame setting with an outline as for Malmoe theme. This is a short example of what I'm searching for but there is no outline here :
% compile with lualatex or xelatex:
\documentclass[svgnames, 17pt]{beamer}
\usepackage{booktabs,etoolbox,fontspec,microtype,ragged2e}
\usefonttheme{professionalfonts,serif,structuresmallcapsserif}
\setmainfont[Numbers=OldStyle,SmallCapsFeatures={Kerning=Uppercase}]{Minion Pro}
\usepackage{fontspec}
\usepackage[applemac]{inputenc}
\usepackage[frenchb]{babel}
\linespread{1.0344}
\usepackage{graphicx}
\usepackage{caption}
\usecolortheme[named=Maroon]{structure}
\beamertemplatesolidbackgroundcolor{Snow}
\setbeamertemplate{navigation symbols}{}
\setbeamertemplate{itemize items}[circle]
\apptocmd{\frame}{\justifying}{}{}
\addtobeamertemplate{block begin}{}{\justifying}
\definecolor{alert}{HTML}{347941}
\setbeamercolor{alerted text}{fg=alert}
\setbeamercovered{transparent=2}
\title{My title}
\author{My name}
\subtitle[A subtitle]{A subtitle}
\institute{My institution}
\setbeamertemplate{caption}[numbered]
\setbeamertemplate{navigation symbols}{}
\begin{document}
\begin{frame}
\titlepage
\end{frame}
\begin{frame}
\frametitle{{\small A title}}
This is a place for some text.
\begin{enumerate}
\item
\item
\end{enumerate}
\end{frame}
\end{document}

beamer? – Werner Dec 19 '14 at 16:23authorinstead of usingsubtitle? – Johannes_B Dec 19 '14 at 16:24\usetheme{default}? – cfr Dec 19 '14 at 16:25Fancyslides? – Ignasi Dec 19 '14 at 17:06beamerslides would look like! Isn't the default theme: (1) simple (2) accurate and (3) has outline indications (e.g. in the ToC)? [I'm not sure what 'accurate' means here: which themes do you consider 'inaccurate' and why?]. @JosephWright I know. But that involved more typing ;). – cfr Dec 19 '14 at 17:58