There's a difference between beamer themes and beamer color themes. The beamer themes are named after cities. The complete color themes happen to have names of flying animals. Inner color themes happen to have flower names. The outer color themes happen to be sea-animal names. For further details, refer to Section 17 Colors of the beameruserguide
. You can use something like this:
\documentclass{beamer}
\usetheme{CambridgeUS}
\usecolortheme{whale}
\begin{document}
\begin{frame}
Test
\end{frame}
\end{document}
Take the following modified code of beamerthemeAmsterdam.sty
and save as beamerthemeAmsterdamTeXsx.sty
. It uses \insertsectionnavigationhorizontal
instead of \insertnavigation
in order to suppress the small circles representing the individual frames.
\DeclareOptionBeamer{compress}{\beamer@compresstrue}
\ProcessOptionsBeamer
\mode<presentation>
\useoutertheme[footline=authortitle]{miniframes}
\useinnertheme{circles}
\usecolortheme{whale}
\usecolortheme{orchid}
\definecolor{beamer@blendedblue}{rgb}{0.137,0.466,0.741}
\setbeamercolor{structure}{fg=beamer@blendedblue}
\setbeamercolor{titlelike}{parent=structure}
\setbeamercolor{frametitle}{fg=black}
\setbeamercolor{title}{fg=black}
\setbeamercolor{item}{fg=black}
\setbeamertemplate{headline}
{%
\begin{beamercolorbox}[colsep=1.5pt]{upper separation line head}
\end{beamercolorbox}
\begin{beamercolorbox}{section in head/foot}
\vskip2pt\insertsectionnavigationhorizontal{\paperwidth}{}{}\vskip2pt
\end{beamercolorbox}%
\ifbeamer@theme@subsection%
\begin{beamercolorbox}[colsep=1.5pt]{middle separation line head}
\end{beamercolorbox}
\begin{beamercolorbox}[ht=2.5ex,dp=1.125ex,%
leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot}
\usebeamerfont{subsection in head/foot}\insertsubsectionhead
\end{beamercolorbox}%
\fi%
\begin{beamercolorbox}[colsep=1.5pt]{lower separation line head}
\end{beamercolorbox}
}
\mode
<all>
You can then use it via \usetheme{AmsterdamTeXsx}
in your preamble.

Best Answer
I do not know how Boyd produced his slides (he might have used
powerdot
, according to percusse's comment above), but I largely based my lecture template on his, because I like its sober style and printer-friendliness.The following code might require some additional tweaks to exactly replicate Boyd's template. Note, in particular, that
However, I think my template should get you halfway there.