I would like to write a series of numbered equations aligned at the equality sign. Like the usual .. math:: with multiple equations, but wrapped in \begin{align} ... \end{align} rather than \begin{equation} ... \end{equation}. Is there a way to do that with sphinx? Or perhaps an extension?
EDIT: I need equation numbers so that I can refer to those from the main text using the :ref: role.
Use
:nowrap:to allow you to provide your own wrapping and:label:to crerate a label, which you can reference using:eq:. For example:For my source and more details, see the Sphinx documentation.