Using docutils
, it doesn't seem possible to align an image both horizontally and vertically in reStructuredText. Vertical alignment is only accepted for substitutions, while horizontal alignment only works for inline images, thus:
.. image:: some/image.png
:align: middle
and
.. |name| image:: some/image.png
:align: center
crash.
Is there a way to control both the vertical and horizontal alignments?