Skip to content Skip to sidebar Skip to footer

How To Include Image Files In Sphinx + Latex Pdf Files

I am using Sphinx Documentation tool alongwith LaTeX to generate pdf files. While trying to include images in the pdf file, I am coming up with the following error during compile:

Solution 1:

Don't place your images under _static. It is special-purpose folder, not for images. E.g. create modules/execute/img/, move image there, and .. image:: img/my-image.png.


Post a Comment for "How To Include Image Files In Sphinx + Latex Pdf Files"