[Tex/LaTex] itemize, removing natural indent

indentationitemizelists

When you itemize items you usually have the entire list indented. This is expected when you have a title or description of what you are listing. I want to itemize but not have the natural indent. I need to move all of the bullet points over towards the the leftmost edge of the margin like all other text you would enter. How can I do this?

Best Answer

Any customization of a list environment, such as itemize, enumerate, etc, is most elegantly handled by the enumitem package.

You can use leftmargin=* locally,

\begin{itemize}[leftmargin=*]
  \item one 
  \item two
  \item three
\end{itemize}

or else you use

\setlist[itemize]{leftmargin=*}

in your preamble to make the change global.

screenshot

\documentclass{article}
\usepackage[showframe=true]{geometry}
\usepackage{enumitem}

\begin{document}

\begin{itemize}
  \item one 
  \item two
  \item three
\end{itemize}

\begin{itemize}[leftmargin=*]
  \item one 
  \item two
  \item three
\end{itemize}
\end{document}