Math & Science ⇒ What should be the natural spacement between equations?
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
What should be the natural spacement between equations?
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
What should be the natural spacement between equations?
what I'm asking is that all the equations in a given math environment (gather and align) are equaly spaced vertically. I want to get this equal vertical spacing for all align and gather environments. If an equation is really bigger than some other, I'll put it in a separate environment, of hand adjust the spacing in its case.
I hate the variable spacings. It looks horrible!
What should be the natural spacement between equations?
\vphantom
is what you're really after:
Code: Select all
\documentclass[11pt,letterpaper,twoside]{book}
\usepackage{lmodern}
\usepackage{amsmath}
%\setlength{\jot}{\baselineskip}
\newcommand*\bigstrut{\vphantom{\frac{A^2}{y^2}}}
\begin{document}
Blabla:
\begin{gather}
\bigstrut x^2 - \frac{1}{2} \, x = 3, \\
\bigstrut \frac{a^2}{b^3} \, y + 2 x \, y = y^2, \\
\bigstrut a - b = c.
\end{gather}
\end{document}
Rainer