2

I am creating a jupyterbook using

jb build my_report --builder=pdflatex

In my jupyter book, my output is written in the notebooks.ipynb.

Within this report I have

from IPython.display import Image
Image(filename='Images/my_image.png',width=600, height=400)

Here the width and height have no impact when building the book. How do I change the cell metadata to change the size?

Currently the cell metadata is as follows:

{
    "tags": [
        "remove-input"
    ]
}
Anon.user111
  • 468
  • 1
  • 5
  • 16

1 Answers1

0

I believe the only (working) way at the moment is to resize the source image.

d1sh4
  • 1,710
  • 5
  • 21