Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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

like image 766
Amit Auddy Avatar asked Jun 04 '15 12:06

Amit Auddy


People also ask

How do you center text in LaTeX presentation?

Simply fill in between the begin/end frame commands with your own text or LATEX code. The alignment option is centered [c] by default. The values [t] (top align) and [b] (bottom align) are also accepted.

How do you center a block in LaTeX?

Just put \begin{center} when you want to start centering, and \end{center} when you want to stop centering.

How do I justify text in LaTeX Beamer?

Text alignment in beamer This means that there is no straightforward way of making text fully justified in beamer. This is solved by the ragged2e package, which provides the \justifying command. This command, used inside the frame environment, or any other, will produce justified text inside that environment.

How do you center the title on a Beamer?

@DiaaAbidou: You can use \title{\makebox[\linewidth]{<title>}} - the title doesn't seem to be used elsewhere, so setting it in a box in the aforementioned way will centre it.


4 Answers

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}
like image 192
MattAllegro Avatar answered Oct 18 '22 01:10

MattAllegro


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

like image 22
suvayu Avatar answered Oct 18 '22 02:10

suvayu


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}
like image 45
samcarter_is_at_topanswers.xyz Avatar answered Oct 18 '22 01:10

samcarter_is_at_topanswers.xyz


I did it like this

\begin{frame}{}
  \centering \Huge
  \emph{Thank You}
\end{frame}
like image 3
Deepjyoti Nath Avatar answered Oct 18 '22 01:10

Deepjyoti Nath