Presentations and Posters ⇒ line spacing within beamer box
line spacing within beamer box
Is there a way to change line spacing in a single beamer (justified) box?
Thank you!
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
line spacing within beamer box
- Stefan Kottwitz
- Site Admin
- Posts: 10324
- Joined: Mon Mar 10, 2008 9:44 pm
Re: line spacing within beamer box
it should work like with standard LaTeX. Perhaps post a small compilable example with such a box you mean so we can take a look together.
Stefan
line spacing within beamer box
I hope the following helps. I just want to have, say, double spacing between rows.
Thank you!
Asaf
Code: Select all
\documentclass[10pt]{beamer}\begin{document}\begin{frame}{}\begin{block}{}\textcolor{black}{Benjamini \& Yekutieli '05} \ \\textcolor{cadetblue}{Zhong \& Prentice '08}\ \\textcolor{black}{Efron '11}\ \\textcolor{cadetblue}{Yekutieli '12}\ \\textcolor{black}{Berk, Brown, Buja, Zhang \& Zhao '13}\ \\textcolor{cadetblue}{Weinstein, Fithian \& Benjamini '13}\ \\textcolor{black}{Lee \& Taylor '14}\ \\textcolor{cadetblue}{Lee, Sun, Sun \& Taylor '14}\ \\textcolor{black}{Taylor, Lockhart, Tibshirani \& Tibshirani '14}\ \\textcolor{cadetblue}{Reid, Taylor \& Tibshirani '14}\ \\textcolor{black}{Fithian, Sun \& Taylor '14}\ \\textcolor{cadetblue}{Dwork, Feldman, Hardt, Pitassi, Reingold \& Roth '14}\ \\textcolor{black}{Belloni, Chernozhukov \& Hansen '14}\textcolor{cadetblue}{Lee '15}\ \\textcolor{black}{Benjamini \& Meir '15}\ \\textcolor{cadetblue}{Taylor \& Tibshirani '15}\ \\textcolor{black}{Tian \& Taylor '15}\ \\textcolor{cadetblue}{Tian, Loftus \& Taylor '15}\ \\textcolor{black}{ Russo \& Zou '15}\textcolor{cadetblue}{Dwork, Feldman, Hardt, Pitassi, Reingold, Roth '15}\textcolor{black}{Chernozhukov, Hansen, Spindler '15}%\textcolor{cadetblue}{}\end{block}\end{frame}\end{document}
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
line spacing within beamer box
Code: Select all
\documentclass[10pt]{beamer}\colorlet{cadetblue}{blue!50!white}\begin{document}\begin{frame}{}\begin{block}{}\linespread{1.9}\selectfont\textcolor{black}{Benjamini \& Yekutieli '05} \ \\textcolor{cadetblue}{Zhong \& Prentice '08}\ \\textcolor{black}{Efron '11}\ \\textcolor{cadetblue}{Yekutieli '12}\ \\textcolor{black}{Berk, Brown, Buja, Zhang \& Zhao '13}\ \\textcolor{cadetblue}{Weinstein, Fithian \& Benjamini '13}\ \\textcolor{black}{Lee \& Taylor '14}\ \\textcolor{cadetblue}{Lee, Sun, Sun \& Taylor '14}\ \\textcolor{black}{Taylor, Lockhart, Tibshirani \& Tibshirani '14}\ \\textcolor{cadetblue}{Reid, Taylor \& Tibshirani '14}\ \\textcolor{black}{Fithian, Sun \& Taylor '14}\ \\textcolor{cadetblue}{Dwork, Feldman, Hardt, Pitassi, Reingold \& Roth '14}\ \\textcolor{black}{Belloni, Chernozhukov \& Hansen '14}\textcolor{cadetblue}{Lee '15}\ \\textcolor{black}{Benjamini \& Meir '15}\ \\textcolor{cadetblue}{Taylor \& Tibshirani '15}\ \\textcolor{black}{Tian \& Taylor '15}\ \\textcolor{cadetblue}{Tian, Loftus \& Taylor '15}\ \\textcolor{black}{ Russo \& Zou '15}\textcolor{cadetblue}{Dwork, Feldman, Hardt, Pitassi, Reingold, Roth '15}\textcolor{black}{Chernozhukov, Hansen, Spindler '15}%\textcolor{cadetblue}{}\end{block}\end{frame}\end{document}