Text FormattingSpacing between Bullet and Text in itemized List

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
CoolnessItself
Posts: 47
Joined: Wed Nov 11, 2009 9:30 pm

Spacing between Bullet and Text in itemized List

Post by CoolnessItself »

Hi all,

If I want

Code: Select all

\begin{itemize}
\item (Some lengthy text)
\end{itemize}
to put a larger-than-normal space between the bullet and the text, how would I do that?

I don't mean

Code: Select all

\setlength\itemindent{1in}
as that indents the bullet as well.

Thanks!
Last edited by Stefan Kottwitz on Wed Feb 01, 2012 9:47 am, edited 1 time in total.

Recommended reading 2024:

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

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

localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Spacing between Bullet and Text in itemized List

Post by localghost »

The enumitem package lets you customize lists in many ways. The important parameter in this case is \labelsep, which also needs an adaptation of \leftmargin.

Code: Select all

\documentclass[11pt]{article}
\usepackage[T1]{fontenc}
\usepackage{enumitem}

%\setlist{itemize}{leftmargin=4em,labelsep=2em}  % global adjustment

\begin{document}
  \noindent Text
  \begin{itemize}[leftmargin=4em,labelsep=2em]  % local adjustment
    \item First Item
    \item Second Item 
  \end{itemize}
\end{document}
You can choose the global solution for all itemize environments or the local one for selected lists. For details please refer to the package manual.


Thorsten
Post Reply