I want a "Thank you" to be displayed at the center of a slide in LaTeX with a big font size.
How to put a big centered "Thank You" in a LaTeX slide
Asked Answered
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.
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}
How do I see a list of all supported special frames of a theme, say,
berlin
? –
Laughable @Laughable If you have a new question, please ask a new question –
Mauney
#77691579 –
Laughable
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}
I did it like this
\begin{frame}{}
\centering \Huge
\emph{Thank You}
\end{frame}
© 2022 - 2024 — McMap. All rights reserved.
\fontsize
and thecenter
environment – Zeigler