Should there be a line space between equations?
You’ve probably stared at a manuscript, a LaTeX file, or a Word doc and wondered whether a blank line belongs between two formulas. Maybe you’re polishing a research paper, drafting a textbook, or just typing up homework. The answer isn’t “yes or no” in a vacuum—spacing depends on context, audience, and the tools you’re using.
This is the bit that actually matters in practice.
In the next few minutes we’ll unpack what “line space between equations” really means, why it matters, where the common pitfalls lie, and—most importantly—what actually works in practice. Grab a coffee, and let’s get into the nitty‑gritty Not complicated — just consistent..
What Is a Line Space Between Equations
When we talk about a line space we’re simply referring to the vertical gap that separates one displayed equation from the next line of text or another displayed equation. In LaTeX, for example, a blank line in the source creates a new paragraph, which inserts a parskip (extra vertical space) before the next block. In Microsoft Word, hitting Enter twice after an equation will leave an empty line, while a single Enter keeps the equations tightly stacked Surprisingly effective..
So the question boils down to: Should those two equations sit shoulder‑to‑shoulder, or should there be a breathing room—a blank line—between them? The answer hinges on readability, logical grouping, and the conventions of the publishing venue.
The two main ways to display equations
- Inline equations – tucked inside a paragraph, like (E=mc^2). No line spacing is involved because they share the line with surrounding text.
- Displayed equations – centered or left‑aligned on their own line, often numbered, like
[ \int_{a}^{b} f(x),dx = F(b)-F(a). ]
It’s the displayed case where the line‑space debate lives.
Why It Matters
Readability for humans
Imagine flipping through a dense math‑heavy PDF. If every equation is crammed together, the eye has to work harder to tell where one derivation ends and the next begins. A modest vertical gap acts like a paragraph break in prose—it signals a shift in thought And that's really what it comes down to..
Accessibility
Screen readers treat blank lines as pauses. When a blind user navigates a document, a line space between equations can give them a moment to process the previous formula before moving on. Skipping that pause can make the auditory experience feel like a relentless stream of symbols And it works..
Formatting standards
Journals, conference proceedings, and textbooks each have their own style sheets. Some explicitly demand a blank line before and after each displayed equation; others want equations “tight” with no extra spacing. Ignoring those guidelines can lead to a manuscript rejection or a costly reformatting round.
Counterintuitive, but true.
Version control and diffs
If you’re collaborating on a LaTeX project via Git, a blank line can affect the diff output. Adding or removing a line space shows up as a change, which can be noisy. Some teams prefer a “no‑extra‑space” policy to keep the diff clean.
How It Works (or How to Do It)
Below is a practical walk‑through for the three most common environments: LaTeX, Microsoft Word, and Google Docs. Pick the one you use, and follow the steps that match your workflow.
LaTeX
LaTeX handles spacing automatically, but you can fine‑tune it It's one of those things that adds up..
1. The default behavior
\begin{equation}
a = b + c
\end{equation}
\begin{equation}
d = e - f
\end{equation}
A blank line in the source creates a new paragraph, which inserts \parskip (usually 0 pt plus a little stretch). Most document classes (article, report, book) set \parskip to zero, so the two equations will appear without extra vertical space—just the standard \abovedisplayskip and \belowdisplayskip around each equation That alone is useful..
2. Adding intentional space
If you want a noticeable gap, use \medskip, \bigskip, or a custom length:
\begin{equation}
a = b + c
\end{equation}
\medskip % adds roughly 6pt of vertical space
\begin{equation}
d = e - f
\end{equation}
Or define your own:
\newlength{\eqgap}
\setlength{\eqgap}{12pt}
...
\begin{equation}
a = b + c
\end{equation}
\vspace{\eqgap}
\begin{equation}
d = e - f
\end{equation}
3. When not to add space
- Aligned environments (
align,gather,multline) already include a small gap between rows. Adding extra\medskipwill look like a double‑space and feel clunky. - Numbered sequences that are logically a single derivation (e.g., steps 1‑5 of a proof) should stay tight; the numbers themselves act as separators.
4. Using packages
The \setlength{\abovedisplayskip}{...Even so, } and \setlength{\belowdisplayskip}{... } commands let you globally control the space above and below every displayed equation.
\setlength{\abovedisplayskip}{10pt}
\setlength{\belowdisplayskip}{10pt}
Microsoft Word
Word’s equation editor (built‑in or MathType) treats each equation as an object.
1. Simple line break
Press Enter once after an equation. In practice, word inserts a normal paragraph break (about 12 pt, depending on the style). The next equation will start on the following line with the same spacing.
2. Adding extra space
- Highlight the paragraph containing the equation.
- Right‑click → Paragraph… → Spacing → set After to, say, 6 pt.
- Or insert a blank paragraph (hit Enter twice) between the two equations.
3. Keeping things tight
If you’re writing a series of steps that belong together, set the After spacing to 0 pt for those paragraphs. You can create a custom “Equation Block” style that has no extra space, then apply it to the whole block That alone is useful..
4. Consistency across the document
Use the Styles pane: create a style called “DisplayEquation” that defines the exact before/after spacing you want. Apply it each time you insert an equation. This way you won’t have to remember the exact point size Which is the point..
Google Docs
Google Docs doesn’t have a native equation editor as reliable as LaTeX, but the built‑in equation tool works fine for most needs.
1. Default spacing
Insert an equation, hit Enter. Google Docs treats the equation as a line of text, so the next line starts with the normal line‑height (about 1.15 × font size) Less friction, more output..
2. Adding a blank line
Press Enter twice. The empty line will appear with the same line‑height, giving a modest visual break Worth keeping that in mind..
3. Custom spacing
Select the line with the equation → Format → Line spacing → Custom spacing. Even so, set Paragraph spacing after to a value like 6 pt. This adds a permanent gap after that particular equation without inserting a visible empty line Turns out it matters..
4. Template approach
If you frequently need a specific gap, create a small template snippet: an equation followed by a custom‑spaced paragraph. Copy‑paste that snippet whenever you need a new displayed formula Simple, but easy to overlook. Turns out it matters..
Common Mistakes / What Most People Get Wrong
Mistake #1: Assuming a blank line equals “more readable” in every case
A blank line is helpful when you’re switching topics, but over‑spacing can make a document feel disjointed. In a long derivation, a series of tightly packed equations reads more like a continuous argument, which is what you want It's one of those things that adds up..
Mistake #2: Mixing spacing conventions inside the same paper
You might see a paragraph with a single‑spaced equation, then later a double‑spaced one. Consider this: that inconsistency distracts reviewers. Pick a rule—either “space between logical groups” or “no extra space unless required”—and stick to it.
Mistake #3: Ignoring the publisher’s style sheet
A lot of authors think “my thesis looks fine, so the journal will be fine too.” Journals like IEEE Transactions or Springer have explicit LaTeX class files that already set \abovedisplayskip and \belowdisplayskip. Adding manual \vspace on top of that can produce double gaps that look unprofessional.
Mistake #4: Using \\ to create space in LaTeX
People sometimes write:
\begin{equation}
a = b + c \\[1em]
d = e - f
\end{equation}
That forces a line break inside the equation environment, which is illegal in most cases and leads to compilation warnings. The proper way is to close the environment, insert the space, then start a new one.
Mistake #5: Forgetting about accessibility
If you’re publishing online, screen readers will read every line break as a pause. Adding unnecessary blank lines can make the audio version feel choppy. g.Use ARIA roles or proper markup (e., <math> tags with <p> wrappers) to indicate logical grouping instead of relying solely on visual spacing.
Practical Tips / What Actually Works
-
Group logically, separate visually – If two equations belong to the same derivation step, keep them together. If they belong to different steps, insert a blank line or a small
\medskip. -
make use of style sheets – In LaTeX, define a custom environment:
\newenvironment{eqgroup} {\par\addvspace{6pt}} % space before group {\par\addvspace{6pt}} % space after groupThen wrap related equations in
\begin{eqgroup} … \end{eqgroup}. In Word, create a “EquationGroup” style with the exact before/after spacing you need Small thing, real impact.. -
Use numbering to guide spacing – When equations are numbered sequentially (1), (2), (3) but belong to different concepts, a blank line before a new number signals the shift. If they’re sub‑equations (1a), (1b), keep them tight.
-
Check the PDF output – What looks fine on screen may render differently when printed. Print a test page or export to PDF and eyeball the gaps. Adjust
\abovedisplayskipif needed Took long enough.. -
Ask your advisor or co‑author – In collaborative settings, agree on a spacing convention early. A quick “Do we want a line space after each major equation?” can save hours of reformatting later.
-
Don’t over‑rely on manual
\vspace– If you need a consistent gap throughout the document, change the global skip lengths rather than sprinkling\vspace{...}everywhere. It’s cleaner and easier to maintain Worth keeping that in mind. Simple as that.. -
For presentations (Beamer, PowerPoint) – A blank line can make a slide look empty. Use a small vertical space (
\vskip) instead of a full paragraph break to keep the slide compact Which is the point..
FAQ
Q1: Should I always put a blank line before a numbered equation?
A: Not always. If the equation starts a new logical section, a blank line helps. If it continues the previous argument, keep it tight. Follow the conventions of your target venue Turns out it matters..
Q2: How much space is “enough” between equations?
A: Roughly the same as a paragraph break in your document’s body—about 6–12 pt in LaTeX, 0.5 em in Word. Adjust until the eye can clearly see the separation without feeling a gap Which is the point..
Q3: My LaTeX class already adds space; will adding \medskip double it?
A: Yes. The class sets \abovedisplayskip and \belowdisplayskip. Adding \medskip on top of that creates two gaps. Remove the manual spacing if the class already does what you need.
Q4: Does extra spacing affect equation numbering?
A: No. Numbering is independent of vertical spacing. That said, too much space can push a number onto the next line, which looks odd. Keep the gap modest.
Q5: I’m writing a short answer for a homework assignment—do I need to worry about spacing?
A: For a quick homework sheet, consistency matters more than strict style. Use a single blank line between distinct equations; if you’re typing in Word, set the paragraph spacing to “0 pt after” for a compact look Which is the point..
Wrapping it up
Whether you’re polishing a journal article, drafting a textbook, or just typing up a lab report, the decision to insert a line space between equations boils down to readability, logical grouping, and the formatting rules you’re bound by. A little vertical breathing room can guide the reader’s eye, help screen‑reader users, and keep your document looking professional—provided you apply it consistently and respect the style guide you’re targeting Simple as that..
So next time you hit Enter after an equation, pause and ask yourself: *Does this next formula belong to the same thought, or is it a new step?Plus, * If it’s the latter, give it a line space. If not, keep it tight. Simple, sensible, and—most importantly—human.
The official docs gloss over this. That's a mistake.