I am having an issue aligning the left side of my list with the left side of my paragraph. Here is my current code:
Code:
\documentclass[draft, 12pt]{article}
\usepackage{fullpage}
\usepackage{enumitem}
\parindent = 0pt
\begin{document}
This is a random and long sentence that apparently takes up two lines just so that I
can see what happens with alignment and indentation. Note my \texttt{parindent = 0pt}.
\begin{enumerate}
\item This is list one first item.
\end{enumerate}
\begin{enumerate}[leftmargin = 0pt]
\item This is list two first item.
\end{enumerate}
\end{document}
Visual representation:
This is a random and long sentence that apparently takes up two lines just so that I can see what happens with alignment and indentation. Note my parindent = 0pt.
1. This is list one first item.
1. This is list two first item.

