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
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
- 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}