Text Formattingshortlst with beamer

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
ptoche
Posts: 49
Joined: Thu Apr 12, 2007 10:41 am

shortlst with beamer

Post by ptoche »

I've been trying to get enumerate to list on multiple columns. I came across the shortlst package, which is designed to do just that. However, while I was able to use shortenumerate and shortitemize succesfully within the article class, I couldn't get it to work with the beamer class. Any suggestion?

thanks!

Below is the code I have used to generate multiple-column itemize and enumerate lists within the article environment:

Code: Select all

\documentclass{article}
\usepackage[paperwidth=7in,paperheight=8in,centering]{geometry}
\usepackage{shortlst}

\begin{document}

\begin{shortenumerate}\setlength{\shortitemwidth}{0.48\linewidth}
\item Fama, Eugene F.
\item Barro, Robert J.
\item Heckman, James J.
\item Stiglitz, Joseph E.
\item White, Halbert
\item Engle, Robert F.
\item Jensen, Michael C.
\item Lucas, Robert E., Jr.
\item Johansen, Soren
\item Hausman, Jerry A.
\item Granger, Clive W. J.
\item Ross, Stephen A.
\item Feldstein, Martin
\item Krugman, Paul R.
\item Becker, Gary S.
\item Hansen, Lars Peter
\item Phillips, Peter C. B.
\item Kahneman, Daniel
\item Grossman, Sanford J.
\item Williamson, Oliver E.
\item Romer, Paul M.
\item Milgrom, Paul
\item Dixit, Avinash
\item Summers, Lawrence H.
\item Holmstrom, Bengt
\item Peltzman, Sam
\item Hart, Oliver
\item Roll, Richard
\item Tversky, Amos
\item Sargent, Thomas J.
\item Sims, Christopher A.
\item Hall, Robert E.
\item Dornbusch, Rudiger
\item Freeman, Richard B.
\item Schwert, G. William
\item Fischer, Stanley
\item Shiller, Robert J.
\item Kreps, David M.
\item Blanchard, Olivier Jean
\item Fuller, Wayne A.
\item Cleveland, William S.
\item Mankiw, N. Gregory
\item Dickey, David A.
\item Bollerslev, Tim
\item Prescott, Edward C.
\item Lazear, Edward P.
\item Tirole, Jean
\item Sen, Amartya
\item Shapiro, Carl
\item Rubinstein, Ariel
\end{shortenumerate}

\end{document}

And here the same within the beamer class:

Code: Select all

\documentclass{beamer}
\usepackage{shortlst}

\begin{document}

\begin{frame}

\begin{shortenumerate}\setlength{\shortitemwidth}{0.48\linewidth}
\item Fama, Eugene F.
\item Barro, Robert J.
\item Heckman, James J.
\item Stiglitz, Joseph E.
\item White, Halbert
\item Engle, Robert F.
\item Jensen, Michael C.
\item Lucas, Robert E., Jr.
\item Johansen, Soren
\item Hausman, Jerry A.
\item Granger, Clive W. J.
\item Ross, Stephen A.
\item Feldstein, Martin
\item Krugman, Paul R.
\item Becker, Gary S.
\item Hansen, Lars Peter
\item Phillips, Peter C. B.
\item Kahneman, Daniel
\item Grossman, Sanford J.
\item Williamson, Oliver E.
\item Romer, Paul M.
\item Milgrom, Paul
\item Dixit, Avinash
\item Summers, Lawrence H.
\item Holmstrom, Bengt
\item Peltzman, Sam
\item Hart, Oliver
\item Roll, Richard
\item Tversky, Amos
\item Sargent, Thomas J.
\item Sims, Christopher A.
\item Hall, Robert E.
\item Dornbusch, Rudiger
\item Freeman, Richard B.
\item Schwert, G. William
\item Fischer, Stanley
\item Shiller, Robert J.
\item Kreps, David M.
\item Blanchard, Olivier Jean
\item Fuller, Wayne A.
\item Cleveland, William S.
\item Mankiw, N. Gregory
\item Dickey, David A.
\item Bollerslev, Tim
\item Prescott, Edward C.
\item Lazear, Edward P.
\item Tirole, Jean
\item Sen, Amartya
\item Shapiro, Carl
\item Rubinstein, Ariel
\end{shortenumerate}

\end{frame}

\end{document}

I did try this, but didn't seem to help:

Code: Select all

\begin{frame}[fragile]

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
Post Reply