I was trying to use enumeration environment in different levels however the text layout doesn't look like the way I want it. I searched through emunitem pdf but I couldn't come up with a solution. I might have missed some points though.
The code I provided somewhat explains the problem whereas the Jpg looks like the way I want it. Any idea is highly appreciated. Thanks
Code: Select all
\documentclass[a4paper,twoside,10pt]{report}
\usepackage[english]{babel}
\usepackage[T1]{fontenc}
\usepackage[ansinew]{inputenc}
\usepackage{lmodern}
\usepackage{graphicx}
\usepackage{amsmath}
\usepackage{amsthm}
\usepackage{amsfonts}
\usepackage{blindtext}
\begin{document}
\title{Title of this document}
\author{Firstname Lastname}
\maketitle
\pagestyle{plain} %Now display headings: headings / fancy / ...
\chapter{How Do I get it right?}
\section{Enumerate Problem}
What I want is to have the nested list, in the second or third level, start from the left as the main text.
\blindtext
\begin{enumerate}
\item \blindtext
\item \blindtext
\item \blindtext
\begin{enumerate}
\item \blindtext
\item \blindtext
\end{enumerate}
\end{enumerate}
\blindtext
\end{document}