I am brand new to LaTeX, and I am quite frustrated at my inability to use the \vspace command after the first line without this weird indent on the first line.
Here is my first attempt at creating vspace after the first and second lines:
\documentclass[arpaper,12pt]{article}
\setlength{\parindent}{0pt}
\begin{document}
\vspace{6pt}test 1\\\vspace{12pt}test 2\\test 3\\test 4\\
\end{document}
This does not apply the 6pt vspace that I am trying to create. This next code produces the vspace that I want but also does this frustrating little indent on only the first line:
\documentclass[arpaper,12pt]{article}
\setlength{\parindent}{0pt}
\begin{document}
\
\vspace{6pt}test 1\\\vspace{12pt}test 2\\test 3\\test 4\\
\end{document}
What exactly does the single \ do in this case that is allowing the vspace to work when it didn't before, and why is it also producing the small indent on that line?