如何在rST / Sphinx的HTML与PDF输出中为图像使用不同的选项?

时间:2018-06-12 22:02:28

标签: latex python-sphinx restructuredtext

我们链接到源内容中的图片。在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%

但不包括输出中的图像。

0 个答案:

没有答案