I started out with LaTeX today and already got my first question. I want to create a question document using enumerations. However when I give the first enumeration level a long label like "Question 1.", the a), b), c) on the next level are indented so they are behind the Question 1.
Is there a way to disable this feature so less space is wasted?
Also, the compiler directly puts "a)" behind Question 1. if I don't write something behind question 1. How can I fix that one?
Here's the code:
\documentclass[a4paper]{article}
\begin{document}
\begin{enumerate}
\renewcommand{\labelenumi}{\Large \bfseries Question \theenumi.}
\renewcommand{\labelenumii}{\Large \theenumii)}
\renewcommand{\labelenumiii}{\large (\theenumiii)}
\item blub
\begin{enumerate}
\item blub
\begin{enumerate}
\item blub
\end{enumerate}
\end{enumerate}
\end{enumerate}
\end{document}

~or\hspace{0pt}after your first\item. – Qrrbrbirlbel Sep 29 '12 at 21:52\usepackage{showframe}to see it yourself.) – Qrrbrbirlbel Sep 29 '12 at 21:56