Hi,
I'm preparing a presentation using Montpellier beamer theme. I tried to personalize the title frame in order to add a footline. The problem with the following code is that the title is appearing in both the headline and the footline. I want it to appear only in the headline. So please, how can I remove the title from my personalized footline of Montpellier beamer and keep it only in the headline?
Thanks a lot.
Stitou.
\documentclass[xcolor={dvipsnames},10pt]{beamer}
%
\useoutertheme{infolines}
\usetheme{Montpellier}
\setbeamertemplate{footline}[infolines]
%
\setbeamercolor{footlinecolor}{fg=black,bg=cyan!40}
\setbeamercolor{title in head/foot}{bg=PineGreen,fg=yellow}
\setbeamercolor{author in head/foot}{parent=footlinecolor}
\setbeamercolor{date in head/foot}{parent=footlinecolor}
\setbeamercolor{separation line}{bg=cyan!40}
%
%
\setbeamercolor*{structure}{bg=PineGreen!20,fg=PineGreen}
\setbeamercolor*{palette primary}{use=structure,fg=yellow,bg=structure.fg!70!gray}
\setbeamercolor*{palette secondary}{use=structure,fg=yellow,bg=structure.fg!65}
\setbeamercolor*{palette tertiary}{use=structure,fg=white,bg=structure.fg!75!black}
\setbeamercolor*{palette quaternary}{fg=orange!30!yellow,bg=black}
\setbeamercolor{section in toc}{fg=black,bg=white}
\setbeamercolor{alerted text}{use=structure,fg=structure.fg!50!black!80!black}
\setbeamercolor{titlelike}{parent=palette primary,fg=structure.fg!50!black}
\setbeamercolor{frametitle}{bg=gray!10!white,fg=PineGreen}
\setbeamercolor{title}{fg=yellow,bg=PineGreen}
%
%
\usepackage{tikz}
\addtobeamertemplate{headline}{}{%
\begin{tikzpicture}[remember picture,overlay]
\node at([shift={(5.64,-.53)}]current page.north) {\includegraphics[height=.8\headheight]{logo.png}};
\end{tikzpicture}
}
%
%
\title[the title]{\small\bf the title}
\author[author]{Presented by:\\
author}
%
\institute[]
{
University
}
%
%
\begin{document}
{
\begin{frame}
\titlepage
\end{frame}
}
%
\end{document}