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

I am trying to insert two pictures side by side in one Markdown cell on a laptop. How I did it:

<img src="pic/scan_concept.png" alt="Drawing" style="width: 250px;"/> 

to be able to sort the included image. Can anyone give suggestions on top of this?

Thanks,

+6
source share
3 answers

JMann's solution did not work for me. But it worked

 from IPython.display import HTML, display display(HTML("<table><tr><td><img src='img1'></td><td><img src='img2'></td></tr></table>")) 

I took an idea from this laptop

+8
source

You can create tables using such channels and dashes.

 A | B - | - ![alt](yourimg1.jpg) | ![alt](yourimg2.jpg) 

see table syntax

+12
source

I found the following works in the Markdown cell:

  <tr> <td> <img src="Nordic_trails.jpg" alt="Drawing" style="width: 250px;"/> </td> <td> <img src="Nordic_trails.jpg" alt="Drawing" style="width: 250px;"/> </td> </tr> 
+2
source

All Articles