Math & ScienceWhat should be the natural spacement between equations?

Information and discussion about LaTeX's math and science related features (e.g. formulas, graphs).
User avatar
Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

What should be the natural spacement between equations?

Post by Johannes_B »

Your book is about physics. Equations in physics need some space. Do you want equations to have the same distance from one another in all of the 2000+ pages?
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

Cham
Posts: 937
Joined: Sat Apr 02, 2011 4:06 pm

What should be the natural spacement between equations?

Post by Cham »

Johannes,

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!
rais
Posts: 419
Joined: Sun Nov 16, 2014 8:51 pm

What should be the natural spacement between equations?

Post by rais »

perhaps \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}
KR
Rainer
Post Reply