I am seeming to have troubles with two environments dealing with lists. The two are
\begin{description} \begin{problemlist}
..... ......
\end{description} \end{problemlist}
The trouble is that the text with the body of the document will not align properly, as it will with other list environments such as
\begin{enumerate} \begin{itemize}
..... ......
\end{enumerate} \end{itemize}
A mwe is provided below:
\documentclass[12pt]{article}
\usepackage{enumerate}
\oddsidemargin=0pt
\topmargin=1pt
\evensidemargin=0pt
\headheight=15pt
\headsep=15pt
\textwidth=6.2truein
\marginparsep=0pt
\textheight=8.75truein
\pagestyle{empty}
\begin{document}
\begin{description}
\item[Problem 1.] The sky is a very nice blue color. The sky is a very nice
blue color. The sky is a very nice blue color. The sky is a very nice blue color. The
sky is a very nice blue color. The sky is a very nice blue color. The sky is a very
nice blue color. The sky is a very nice blue color. The sky is a very nice blue color.
The sky is a very nice blue color. The sky is a very nice blue color. The sky is a very
nice blue color. The sky is a very nice blue color. The sky is a very nice blue color.
The sky is a very nice blue color.
\bigskip
\hspace{1.4cm} \textbf{\underline{Solution:}}
\vspace{0.15in}
\hspace{1.42cm}
The sky is a very nice blue color. The sky is a very nice blue color. The sky is a very
nice blue color. The sky is a very nice blue color. The sky is a very nice blue color.
The sky is a very nice blue color. The sky is a very nice blue color. The sky is a very
nice blue color. The sky is a very nice blue color. The sky is a very nice blue color.
The sky is a very nice blue color. The sky is a very nice blue color. The sky is a very
nice blue color. The sky is a very nice blue color. The sky is a very nice blue color.
\end{description}
\end{document}
You will see that the sentences after the very first sentence in each paragraph does not stay aligned with the with the first one. When changing the environment to enumerate or itemize you will see the automatic alignment.
Is there a fix for this of some kind?
