Created
January 20, 2010 15:10
-
-
Save jelsas/281894 to your computer and use it in GitHub Desktop.
latex ENUMERATE that takes up less space
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
% This is a drop-in replacement for \begin{enumerate}...\end{enumerate} in LaTeX. Just include it in | |
% your preamble and use \begin{packed_enum} instead. | |
\newenvironment{packed_enum}{ | |
\begin{enumerate} | |
\setlength{\itemsep}{2.5pt} | |
\setlength{\parskip}{0pt} | |
\setlength{\parsep}{0pt} | |
}{\end{enumerate}} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment