I am a student relatively new to latex compared to you all. I have a vector calculus final where we are allotted one cheatsheet front and back. I have a really good five-column landscape mode cheatsheet but the problem is when I use \begin{flalign*} to type equations in, they show up with lots of space in between. And also they take too much verticle space. For example:
If I do:
\begin{flalign*}
\nabla \times \mathbf{F} &= (1, 1, -2) \\
\iint_{S} \nabla \times \mathbf{F} \cdot d\mathbf{S} &= \iint_{S} (1, 1, -2) \cdot (0, 0, 1)\, dS = -2 \times \text{Area of } S = -2\pi \\
\oint_{\partial S} \mathbf{F} \cdot d\mathbf{r} &= \oint_{\partial S} (y, -x, z) \cdot (dx, dy, 0) = -2\pi
\end{flalign*}
The issue with this is:
- The integrals take up too much space like they are in equation mode $$equation$$. I want inline equation spacing.
- The equations don't wrap.
So I have to instead manually change all this to in-line equations with line breaks at the end:
\textbf{Solution:} \\
$\nabla \times \mathbf{F} = (1, 1, -2)$ \\
$\iint_{S} \nabla \times \mathbf{F} \cdot d\mathbf{S} = \iint_{S} (1, 1, -2) \cdot (0, 0, 1)\, dS = -2 \times \text{Area of } S = -2\pi $ \\
$\oint_{\partial S} \mathbf{F} \cdot d\mathbf{r} = \oint_{\partial S} (y, -x, z) \cdot (dx, dy, 0) = -2\pi$ \\
but I still don't get the alignment that \begin{flalign*} provides you with. At least I get wrapping and I get CONDENSED equations.
TLDR: How can I do inline equation height with aligned environment? I just want small equations with structure.




