1 | initial version |
Hello,
You can use graphics_array as in
sage: G = [plot((lambda x: sin(n*x))) for n in xrange(1,5*pi,pi)]
sage: graphics_array(G)
and precise the number of rows and columns you want
sage: graphics_array(G,2,2)
For more information on options
sage: graphics_array?
Vincent