<html>
  <head>
    <meta content="text/html; charset=ISO-8859-1"
      http-equiv="Content-Type">
  </head>
  <body bgcolor="#FFFFFF" text="#000000">
    I often have the same desire as Antonino, for much the same
    reasons.  Creating subplots is really not an appropriate solution. 
    The separate figures are exactly that, separate figures.  It is
    semantically incorrect to combine them into one figure, and causes
    additional complications when I want to save them to a file (for
    example if I want to include them in a manuscript) -- if I have
    combined them as subplots, then when I want to save them, I must
    re-separate them.<br>
    <br>
    Antonino, at one point, with a much older (pre 1.0) version of the
    notebook, I found a way to hack the notebook CSS so that output
    cells would float left.  This was a (nearly) perfect solution for
    me.  However, I suspect it might not work anymore with newer
    versions of the notebook.  When I updated to a post 1.0 version, I
    never took the time to get it working again.  But perhaps that idea
    is a starting point for you.  Take a look at the HTML structure of
    the notebook and output cells, and then fiddle with the CSS (in
    whatever way is now appropriate) until you get something that works
    better for you.<br>
    <br>
    Regards,<br>
    Jon<br>
    <br>
    <div class="moz-cite-prefix">On 02/21/2014 12:13 PM, Patrick Surry
      wrote:<br>
    </div>
    <blockquote
cite="mid:CAA-tCo41iYXSbxLs762dB9BmZgf9xLWee46jU9HpuqvPg64JCg@mail.gmail.com"
      type="cite">
      <meta http-equiv="Content-Type" content="text/html;
        charset=ISO-8859-1">
      <div dir="ltr">
        <div class="gmail_extra">If you're using matplotlib for your
          plots, you can use subplots to create a horizontal (or
          arbitrary grid) of plots in an output cell.</div>
        <div class="gmail_extra"><br>
        </div>
        <div class="gmail_extra">
          Try this example <a moz-do-not-send="true"
            href="http://matplotlib.org/examples/pylab_examples/subplot_demo.html">http://matplotlib.org/examples/pylab_examples/subplot_demo.html</a></div>
        <div class="gmail_extra"><br>
        </div>
        <div class="gmail_extra">
          but change plt.subplot(2,1,1) and plt.subplot(2,1,2) (which
          indicate a 2x1 grid and plot #1 and #2) to plt.subplot(1,2,1)
          and plt.subplot(1,2,2) which does the same in a 1x2 grid.</div>
        <div class="gmail_extra"><br>
        </div>
        <div class="gmail_extra">
           </div>
      </div>
      <br>
      <fieldset class="mimeAttachmentHeader"></fieldset>
      <br>
      <pre wrap="">_______________________________________________
IPython-dev mailing list
<a class="moz-txt-link-abbreviated" href="mailto:IPython-dev@scipy.org">IPython-dev@scipy.org</a>
<a class="moz-txt-link-freetext" href="http://mail.scipy.org/mailman/listinfo/ipython-dev">http://mail.scipy.org/mailman/listinfo/ipython-dev</a>
</pre>
    </blockquote>
    <br>
  </body>
</html>