Presentations and Postersline spacing within beamer box

Beamer, Powerdot and KOMA-Script presentations, Conference posters (a0poster, baposter, tikzposter)
Post Reply
asafw
Posts: 37
Joined: Sun Jun 10, 2012 12:33 pm

line spacing within beamer box

Post by asafw »

Hi,

Is there a way to change line spacing in a single beamer (justified) box?

Thank you!
Asaf

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

User avatar
Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

line spacing within beamer box

Post by Johannes_B »

The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
User avatar
Stefan Kottwitz
Site Admin
Posts: 10320
Joined: Mon Mar 10, 2008 9:44 pm

Re: line spacing within beamer box

Post by Stefan Kottwitz »

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
LaTeX.org admin
asafw
Posts: 37
Joined: Sun Jun 10, 2012 12:33 pm

line spacing within beamer box

Post by asafw »

Thank you Johannes and Stefan,

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}
User avatar
Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

line spacing within beamer box

Post by Johannes_B »

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.
Post Reply