As you can see in the example below, the itemize environment is the same whether or not there is a line break before the \begin{itemize}. However, the align environment has significantly more space if one puts in a line break. First, why is this the case? Second, is there a way to make the align environment behave like itemize -- or is there an alternative package to align with the same functionality that I could use?
\documentclass{article}
\usepackage{amsmath}
\begin{document}
Here are some items without a line break:
\begin{itemize}
\item A
\item B
\item C
\end{itemize}
Here are some items with a line break:
\begin{itemize}
\item A
\item B
\item C
\end{itemize}
Here is an equation without a line break:
\begin{align}
X = 2
\end{align}
Here is an equation with a line break
\begin{align}
X = 2
\end{align}
\end{document}



$$,\[,align,equationanddisplaymath? – Mico Jul 02 '16 at 16:49