Hi,
Is there a way to change line spacing in a single beamer (justified) box?
Thank you!
Asaf
Presentations and Posters ⇒ line spacing within beamer box
NEW: TikZ book now 40% off at Amazon.com for a short time.
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
line spacing within beamer box
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
- Stefan Kottwitz
- Site Admin
- Posts: 10320
- Joined: Mon Mar 10, 2008 9:44 pm
Re: line spacing within beamer box
Hi Asaf,
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
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
LaTeX.org admin
line spacing within beamer box
Thank you Johannes and Stefan,
I hope the following helps. I just want to have, say, double spacing between rows.
Thank you!
Asaf
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}
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.