I am working on a book that needs single-spaced flush-left bulleted lists. I was able to make the bulleted lists single spaced using the mdwlist package, but I am having trouble making the lists flush left instead of indented.
I am very new to this, so any help would be appreciated. Thank you!
Text Formatting ⇒ Flush left bulleted lists
NEW: TikZ book now 40% off at Amazon.com for a short time.

Flush left bulleted lists
Hi,
instead of mdwlist, I would recommend the enumitem package. Take a look at the following example:
Please refer to the package documentation for further information.
instead of mdwlist, I would recommend the enumitem package. Take a look at the following example:
Code: Select all
\documentclass{report}
\usepackage{enumitem}
\setitemize{label=\textbullet, leftmargin=*, nolistsep}
\begin{document}
\begin{itemize}
\item First item.
\item Second item.
\end{itemize}
\end{document}
1,1,2,3,5,8,13,21,34,55,89,144,233,...
Re: Flush left bulleted lists
That did work -- many thanks!