13

I want a "Thank you" to be displayed at the center of a slide in LaTeX with a big font size.

MattAllegro
  • 6,455
  • 5
  • 45
  • 52
Amit Auddy
  • 173
  • 1
  • 1
  • 3
  • 2
    By using `\fontsize` and the `center` environment – runDOSrun Jun 04 '15 at 12:39
  • 1
    From [the tag wiki](https://stackoverflow.com/tags/latex/info): *"The [Stack Exchange site dedicated to LaTeX](https://tex.stackexchange.com/) ... which is probably a better place to ask any LaTeX-related questions than here on Stack Overflow. "*. It was launched in 2010. – Peter Mortensen Nov 16 '22 at 16:51

4 Answers4

22

I usually do something like this:

\begin{frame}{}
  \centering \Large
  \emph{Fin}
\end{frame}

If you want larger, you could try one of the \LARGE, \huge, or \Huge. Here is a sample of how it looks with the Montpellier theme in the orchid colour theme.

enter image description here

suvayu
  • 4,271
  • 2
  • 29
  • 35
6

Try one of the following two:

\documentclass[aspectratio=43,12pt]{beamer}\usetheme{Goettingen}

\begin{document}

\begin{frame}%%     1
\begin{center}
\Huge Thank You!
\end{center}
\end{frame}

\begin{frame}%%     2
\begin{center}
{\fontsize{40}{50}\selectfont Thank You!}
\end{center}
\end{frame}

\end{document}
MattAllegro
  • 6,455
  • 5
  • 45
  • 52
4

Another approach could be to use a theme which provides a special frame for this, e.g. with the metropolis theme, one can simply do

\documentclass{beamer}

\usetheme{metropolis}

\begin{document}

\begin{frame}
normal frame
\end{frame}

\begin{frame}[standout]
Thanks
\end{frame} 

\end{document}
2

I did it like this

\begin{frame}{}
  \centering \Huge
  \emph{Thank You}
\end{frame}
Socowi
  • 25,550
  • 3
  • 32
  • 54