[Tex/LaTex] How to insert blank line between two texts without creating paragraph

line-spacingspacing

I want to insert a blank line between two texts, but I don't want to create a paragraph in second texts. First text and Second texts should start in straight line.
For example,

The Moon is in synchronous rotation with Earth, always showing the same face with its near side marked by dark volcanic maria that fill between the bright ancient crustal highlands and the prominent impact craters.

The Moon's gravitational influence produces the ocean tides, body tides, and the slight lengthening of the day.

I tried many commands but I get paragraph in second texts. If I use \vspace,\bigskip etc. then I get blank line but not exactly after first text, I get blank line somewhere else. Can anybody help me?

Thank you.

Best Answer

I am guessing that you mean indentation... Try and put \noindent in the beginning of every paragraph. For example:

\noindent The Moon is in synchronous rotation with Earth, always showing the same face with its near side marked by dark volcanic maria that fill between the bright ancient crustal highlands and the prominent impact craters.

\noindent The Moon's gravitational influence produces the ocean tides, body tides, and the slight lengthening of the day.//

There is a more elegant way to solve this by adding this line \setlength{\parindent}{0cm} before the \begin{document} and this will reduce indentation for all paragraphs in your document.

Related Question