I am essentially trying to copy a word document file into LaTeX. I am running into problems getting the LaTeX file to look exactly like (or at least close to) the Word document I need to copy. In particular, the horizontal alignment that I want is not working, despite my efforts.
I've tried using commands like \hspace{.1cm}, $\>$, and \quad (by placing these commands right before the line I want to push in) but they don't do anything. For example, I want the phrase "the number 8.1" to align horizontally with the phrase "Which of the following", as shown below.
What I want, is this:
Here is my code:
\documentclass[10pt]{article}
\usepackage{times}
\usepackage{geometry}
\geometry{margin=1in}
\usepackage{enumitem}
\begin{document}
\twocolumn
\begin{enumerate}[leftmargin=*]
\item \hspace{.1cm} Which of the following is the best interpretation
of the number 8.1 in the model?\newline
A) The stalk grew 8.1 centimeters each day.\newline
B) The stalk grew 1 centimeter every 8.1 days.\newline
C) The stalk was 8.1 centimeters tall when the student began
observing.\newline
D) The students observed the stalk for 8.1 days.
\end{enumerate}
\end{document}




\hspace{.1cm}after\item, you are defeating the usual alignment of the item text. Theenumitempackage has a mechanism for resetting this. By the way, this is an adjustment of the horizontal, not vertical, alignment, and I am changing the tag. – barbara beeton Aug 01 '19 at 16:06