I want to insert two white space at the beginning of a line. How can I do that? I want something like this
This is first line
This is second line
This is third line
This is fourth line
I want to insert two white space at the beginning of a line. How can I do that? I want something like this
This is first line
This is second line
This is third line
This is fourth line
If you want the space to match the width of the characters Th, do this:
\documentclass{article}
\setlength{\parindent}{0pt}
\begin{document}
This is first line\\
\phantom{Th}This is second line\\
This is third line\\
This is fourth line
\end{document}

I can't see why you would want to do this, but that's a way.
Or you can use \hspace:
\documentclass{article}
\setlength{\parindent}{0pt}
\begin{document}
This is first line
\hspace{1em}This is second line
This is third line
This is fourth line
\end{document}

\hspace* (if you're using that method). an ordinary \hspace is supposed to disappear at the beginning of a line, so why this is working is a mystery to me.
– barbara beeton
Aug 22 '14 at 19:13
This is first line\\ \hspace{1em}This is second line didn't work. But I didn't bother to find out why ... :)
– Sverre
Aug 22 '14 at 19:36
\indentat the beginning of the second line? – Thanos Aug 22 '14 at 17:03verserather than trying to do this manually. – cfr Aug 22 '14 at 18:40