\\ command in latex creates a new paragraph. I want a command in which when I finish a line, I want to have next line black and then I want to start from the left of next line. Is there an easy command for this.
Example:
What I want:
'I wrote something here
I want to start from here'
What I do not want :
'I wrote something here
command in latex starts from here, with gap in the left'


\noindentafter an empty line starts a new paragraph without indentation. If you want to have space between paragraphs without paragraph indentation, see packageparskip. – Heiko Oberdiek Apr 12 '15 at 18:08\\in LaTeX does not start a new paragraph. If you want to start a new paragraph, as Heiko says, leave a blank line. – Manuel Apr 12 '15 at 18:15\documentclass{...}and ending with\end{document}. – Martin Schröder Apr 12 '15 at 18:34\setlength\parindent{0pt} \setlength\parskip{1ex}– Sean Allred Apr 12 '15 at 18:42