Generaltoo much indentation space in enumerate

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
OA-Uwe
Posts: 8
Joined: Fri Jul 06, 2007 10:22 am

too much indentation space in enumerate

Post by OA-Uwe »

Hi,

there's a formatting problem with the enumerate function for which I need some help.

The code is:

Code: Select all

\documentclass{report}
\usepackage{german}

\begin{document}
\chapter{Chapter 1}
\section{Section 1}
\begin{enumerate}
	\item eins
	\begin{enumerate}
		\item eins punkt eins
		\item eins punkt zwei
	\end{enumerate}
	\item zwei
	\item drei: Hier ist auch der Verweis auf \ref{1K}
\end{enumerate}
\end{document}
The second enumerate function doesn't stick to the virtual left orientation but puts some space on the left side of the "(a)" and "(b)" counter. Is there a way to correct that format?

Thanks for your help,
Uwe

Recommended reading 2024:

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

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

User avatar
pumpkinegan
Posts: 91
Joined: Thu May 03, 2007 10:29 pm

too much indentation space in enumerate

Post by pumpkinegan »

The extra indentation in a nested list is correct behavior. You basically have a numbered list inside a numbered list---hence the indentation to clearly distinguish each numbered list.

You could override this by putting

Code: Select all

\setlength{\itemindent}{-2em}
after the nested \begin{enumerate}, but I do not think that it looks good.

Patrick.
Ted
Posts: 94
Joined: Sat Jun 23, 2007 4:11 pm

too much indentation space in enumerate

Post by Ted »

Also consider using the package enumitem. Check out page 4 of the documentation -- it details all of the horizontal spacing lengths and gives you easy ways to change them.
-- Ted [home/blog]
OA-Uwe
Posts: 8
Joined: Fri Jul 06, 2007 10:22 am

Re: enumerate problem

Post by OA-Uwe »

Hi and thanks for the input. I'm going to try that.

Regards and have a great week
Uwe
Post Reply