I want a "Thank you" to be displayed at the center of a slide in LaTeX with a big font size.
Asked
Active
Viewed 6.7k times
13
-
2By using `\fontsize` and the `center` environment – runDOSrun Jun 04 '15 at 12:39
-
1From [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 Answers
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.

samcarter_is_at_topanswers.xyz
- 33,336
- 5
- 41
- 62

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}

samcarter_is_at_topanswers.xyz
- 33,336
- 5
- 41
- 62
2
I did it like this
\begin{frame}{}
\centering \Huge
\emph{Thank You}
\end{frame}

Socowi
- 25,550
- 3
- 32
- 54

Deepjyoti Nath
- 29
- 3