Presentations and Posters ⇒ Set line spacing for a single frame
Set line spacing for a single frame
I would like to set the line spacing differently for only a single frame. I found examples online which show how to modify different options for a single frame using minipage environment, but I don't have enough experience to change these to my needs..
Thank you very much,
Asaf
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Re: Set line spacing for a single frame
Set line spacing for a single frame
Sorry -- here is an example. I'd like to control the line spacing instead of the text width in what's below..
I hope this suffices..
Thank you!
Code: Select all
\documentclass{beamer}
\usepackage{lipsum}
\begin{document}
\vspace*{10pt}
\fbox{\begin{minipage}{0.9\textwidth}
\lipsum[1]
\end{minipage}}
\end{document}
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Set line spacing for a single frame
Code: Select all
\documentclass{beamer}
\usepackage{lipsum}
\usepackage{setspace}
\begin{document}
\vspace*{10pt}
\fbox{\begin{minipage}{0.9\textwidth}
\setstretch{.3}
\lipsum[1]\par
\end{minipage}}
\end{document}