How to include two pictures side by side in Markdown for IPython Notebook (Jupyter)?

后端 未结 6 1427
感情败类
感情败类 2020-12-08 05:05

I am trying to insert two pictures side by side in one Markdown cell on a notebook. The way I do it was:

\"Drawing\"

        
6条回答
  •  一向
    一向 (楼主)
    2020-12-08 05:35

    I'm using VSCode, with native markdown and that solution works for me in terms ...

    ![alt](yourimg1.jpg) | ![alt](yourimg2.jpg)
    

    Its because I need to insert a lot of images on my website. Like this:

    So, it works on the first two pictures and the others, it doesn't work =/

    I find that I need to add some space between image tags

    So, I did this and works fine, like the attached picture:

    ![alt](yourimg1.jpg) | ![alt](yourimg2.jpg)
    // space 1
    // space 2
    // space 3
    ![alt](yourimg1.jpg) | ![alt](yourimg2.jpg)
    // space 1
    // space 2
    // space 3
    

    And it worked properly for me!

    I hope that helped you!

提交回复
热议问题