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

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

User avatar
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