[Tex/LaTex] Shorthand for empty line or \\ \indent

indentationline-breakingparagraphs

This page says that \\ starts a new paragraph.
However, it does not end up looking the same as inserting an empty line in my source code (which I have always used to define paragraphs), which also indents the new line.
The latter describes the visual effect I am looking for, but since I am typing out a conversation (which means a lot of indented newlines), I hope to find a more elegant command for this, so I don't have to fill my source code with empty lines or \\ \indent everywhere.
Is there such a command?

Best Answer

\\ produces a line break. \par produces a new paragraph. Inserting empty line between two lines produces a new paragraph.

Furthermore, \\ does not justify the last line before. If you want so you can use \linebreak.