How to put a big centered "Thank You" in a LaTeX slide
Asked Answered
E

4

16

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

Elegize answered 4/6, 2015 at 12:32 Comment(2)
By using \fontsize and the center environmentZeigler
From the tag wiki: "The Stack Exchange site dedicated to LaTeX ... which is probably a better place to ask any LaTeX-related questions than here on Stack Overflow. ". It was launched in 2010.Renal
D
25

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

Discriminatory answered 16/6, 2015 at 22:12 Comment(0)
M
7

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}
Mauney answered 27/2, 2019 at 10:24 Comment(3)
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 questionMauney
#77691579Laughable
L
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}
Lamonica answered 4/6, 2015 at 17:14 Comment(0)
M
2

I did it like this

\begin{frame}{}
  \centering \Huge
  \emph{Thank You}
\end{frame}
Mongo answered 11/1, 2018 at 2:8 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.