9 Comments

  1. Paavo

    Very helpful, thank you!

    Addition: to prevent the indentation of text after an equation, add only ONE line feed between them. (This may be trivial, not for me.)

    Follow-up question: is there an easy way to achieve the same effect after figures (which may be placed by LaTeX virtually anywhere)?

    • Hi Paavo,

      The same applies for figures and other floats. Do not leave any blank line, just continue your paragraph on the next line, right after \end{figure} and it will be place within the paragraph.

      Here is a MWE:

      \documentclass[11pt]{article}
      \usepackage{graphicx, blindtext}
      \begin{document}
      \blindtext
      \begin{figure}[ht]
      \centering
      \rule{\linewidth}{0.5\linewidth}
      \caption{Some figure}
      \end{figure}
      \blindtext
      \end{document}
  2. Hello, this is the best and most complete explanation on LaTeX paragraph and line spacing I’ve ever seen. You could also mention there is the “leading” package that makes it much easier to change line spacing.

  3. Alberto Takase

    Hello, this is a nice article. To provide criticism, I believe mentioning lineskip alongside baselineskip would improve the article. Cheers.

Leave a Reply to Ole J. ForsbergCancel reply