Floating plots in notebook?
Is there a way to make plots float? Like in floating divs? Say, I have a two plots:
plot(sin, 0, pi).show()
plot(cos, 0, pi).show()
Right now this code produces two pictures, one on top of the other:
--------
|plot 1|
--------
|plot 2|
--------
But my screen is wide enough to show them alongside like:
----------------
|plot 1| plot 2|
----------------
It would be nice to have an option allowing to produce a few floating divs from pictures.