I am using the document class beamer for a presentation of my work.
Here is an example:
Code: Select all
\documentclass{beamer}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{graphicx}
\usepackage{multirow}
\usepackage[english]{babel}
\usepackage[applemac]{inputenc}
\usepackage[T1]{fontenc}
\usetheme{classic}
\begin{document}
\begin{frame}
this is the title page
\end{frame}
\begin{frame}
\tableofcontents
\end{frame}
\section{First section}
\begin{frame}
This is the first section
\end{frame}
I have tried:
Code: Select all
\begin{frame}[plain]
\tableofcontents
\end{frame}
\end{document}
and it removes both the ToC and the style of(f) the header. But I'd like to remove only the ToC, and keep the style.
(Note: in fact, I have the same issue for the first slide, which is the title of my presentation. I'd like that the ToC does not appear there neither).
Any help is welcomed!
Thanks a lot.
PS: edited to give a tex sample