I am trying to build a very compact itemize with latex, because I want to fit it in a table without whitespace everywhere.

What I need:

  • No whitespace before list
  • No whitespace after list
  • No whitespace between lines
  • Less indent before the bulletpoints

I have tried many packages (paralist, mdwlist, enumitem) but non of them can fully do it.

I tried it myself (with the help of paralist) and could get rid of everything except the whitespace after the list. This is my current solution:

\makeatletter
\newcommand*{\compress}{\@minipagetrue}
\makeatother

\newenvironment{ilist}%
  {
    %from parlist package, reduces indent before bulletpoints
    \setdefaultleftmargin{1em}{1em}{}{}{}{} 
    \compress %places itemize into minipage, removing whitespace before
    \begin{itemize}%
    \setlength{\itemsep}{0pt}%
    \setlength{\topsep}{0pt} 
    \setlength{\partopsep}{0pt}
    \setlength{\parsep}{0pt}
    \setlength{\parskip}{0pt}}%
  {\end{itemize}}

However, I am unable to get rid of the space after the list. I can do it with a negative vspace but this is:

  1. Ugly
  2. Does not work for tables: The rule after the row in which the list is will still be one line below.

Can anyone tell me how to do it? I have googled so much, but it somehow seems that I am the first human that ever tried to insert an itemize into a table :D

thank you in advance

link|improve this question
1  
Also try asking on tex.stackexchange.com – ShreevatsaR Feb 11 '11 at 13:32
mdwlist is a package you might want to look at. – Seamus Feb 11 '11 at 18:47
feedback

3 Answers

To change these settings globally

\usepackage{enumitem}
\setitemize{noitemsep,topsep=0pt,parsep=0pt,partopsep=0pt}

(And you can use the \setenumerate, \setdescription or \setlist commands for other types of lists)

Or for just a single list

\usepackage{enumitem}
...
\begin{itemize}[noitemsep,topsep=0pt,parsep=0pt,partopsep=0pt]
\item item 1
\item item 2
\item item 3
\end{itemize}
link|improve this answer
\setlist{noitemsep,topsep=0pt,parsep=0pt,partopsep=0pt} (instead of \setitemize...) to set the same global options for all three kinds of lists (itemize, enumerate and description) – Markus Apr 30 at 14:37
feedback

Try the enumitem and shortlst packages.

link|improve this answer
Also paralist and in particular the compactitem list style. – Damien Pollet Feb 11 '11 at 14:38
can you tell me how? I already experimented with enumitem but didn't make it. A working snipped would be very helpful, not only for me but others having this problem. – gex Feb 11 '11 at 16:48
@gex: see @Ken Bloom's answer for enumitem. For shortlst, RTM. And I second the recommendation for the TeX SE – Matthew Leingang Feb 14 '11 at 12:46
feedback

Something similar came up not too long ago. Does the answer HERE help at all?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.