[Tex/LaTex] add white space to manually indent line

indentationspacing

I'm trying to add space to a line so that it lines up with the text above it which is bulletpointed. If I add \indent to the second line it indents the above line too so that it is all shifted over.

\documentclass[10pt]{article}
\begin{document}

\indent $\bullet$ This is the first line 
\\ This is the second line

\end{document}

I want the "This"'s to line up. I've tried adding \ to the line but it doesn't work at the start of the line.

Best Answer

Seems like you're trying to reinvent something.

\begin{itemize}
    \item This is the first line \\ %line with dot
          This is the second line   %line without dot 
    \item Next line with dot
\end{itemize}

enter image description here

Related Question