General ⇒ How to repeat the title in Beamer?
How to repeat the title in Beamer?
I am making a presentation, using beamer. As a last slide, I would like to repeat the title, with my research question underneath.
I know how to repeat the complete title page, but that's not what I want, because I do not want my name and date appear on that last slide, only the title itself.
Is there a way to do that?
Thanks!
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
How to repeat the title in Beamer?
In the preamble I put this:
Code: Select all
\title{Title}
\author{My name}
\institute{Institute}
\date{Date}
Code: Select all
\begin{frame}
\author{} \institute{} \date{}
\maketitle
\begin{quote}
Research question
\end{quote}
\end{frame}
Thanks!
Re: How to repeat the title in Beamer?
I just put my research question as the author in the last slide...
It's not really a nice solution, but it works!
Still, better solution are welcome!