I have a sequence of aligned equations, and I wish to bulletpoint some (but not all) of them. For example, in this MWE I wish to bulletpoint just the first and third lines (beginning with ABCDE = ..., and with F = ...).
\documentclass{article}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage{hyperref}
\begin{document}
This is some text in which I discuss the equations that follow. Lorem ipsum dolor
sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore
et dolore magna aliqua.
\begin{align}
ABCDE &= xy + xz \nonumber \\
&= x(y+z), \\
F &= pq + pr \nonumber \\
&= p(q+r).
\end{align}
This is more text in which I discuss the above equations. Ut enim ad minim veniam,
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu
fugiat nulla pariatur.
\end{document}
I have tried to use the Itemize environment and an \intertext command to insert the \item, as suggested at Sharing alignment between equations in two different items, but this produces ugly formatting, probably because I don't have a 'title' for each item - the first bulletpoint sits on the line above the first line of the equations, a gap is introduced between the second and third lines, and there is no second bulletpoint:
\documentclass{article}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage{hyperref}
\begin{document}
This is some text in which I discuss the equations that follow. Lorem ipsum dolor
sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore
et dolore magna aliqua.
\begin{itemize}
\item \begin{align} ABCDE &= xy + xz \nonumber \\
&= x(y+z), \\
\intertext{\item } F &= pq + pr \nonumber \\
&= p(q+r).
\end{align}
\end{itemize}
This is more text in which I discuss the above equations. Ut enim ad minim veniam,
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu
fugiat nulla pariatur.
\end{document}
At the moment I am attempting to work around this by simply inserting \bullet wherever I want a bulletpoint and fiddling with the whitespace by hand (e.g. using \quad and the like) until the bulletpoints are aligned with each other and a suitable distance from their equation, but this is hardly satisfactory.
Thanks for the help, I hope this question makes sense!


