1 | initial version |
you can try this
x = var('x')
p1 = plot(sin(x**Integer(2)), (x, Integer(0), Integer(6)), axes_labels=[r'$\theta$', r'$\sin(\theta^2)$'], fontsize=Integer(16))
p2 = plot(x**Integer(3), (x, Integer(1), Integer(100)), axes_labels=[r'$x$', r'$y$'], scale='semilogy', frame=True, gridlines='minor')
ga = graphics_array([p1, p2])
ga.matplotlib(figsize=(8., 5.))