我们链接到源内容中的图片。在HTML中,我们希望图像具有一定的宽度和对齐。在我们的PDF输出中,我们希望图像具有不同的宽度和对齐方式。
有没有办法在全局范围内执行此操作,还是必须将每个图像指令修改为类似的内容?
.. only:: html
.. image:: /_static/job-list.png
:width: 20%
:align: left
.. only:: latex
.. image:: /_static/job-list.png
:align: center
:width: 60%
我们尝试将其缩短为:
.. image:: /_static/job-list.png
.. only:: html
:width: 20%
:align: left
.. only:: latex
:align: center
:width: 60%
但不包括输出中的图像。