Code: Select all
\documentclass{book}
\usepackage{amsmath}
\setlength{\jot}{20pt}
\begin{document}
\begin{align*}
x &= 1 \\
y &= 2
\end{align*}
\end{document}
However, even though this is an AMSMATH package command that works correctly when NOT using AMSART or AMSBOOK document classes, it gets completely ignored when using those. No error occurs, the command is just ignored.
The nearly identical document below contains only an edit to the document class, and yet the \setlength{\jot}{} command does nothing.
Code: Select all
\documentclass{book}
\usepackage{amsmath}
\setlength{\jot}{50pt}
\begin{document}
\begin{align*}
x &= 1 \\
y &= 2
\end{align*}
\end{document}
Thanks in advance!