Thu 2018-07-05 09:00:32 UTC, HG: > In this graphic the second graphic p2 doesn't modify fontsize=8, > but if I interchange it does, that means the second graphic is > invalid to the command. Any help ?
> r=2/sqrt(n(pi)); > p1=plot(circle((0,0),r,color="red",fill=True,alpha=0.2,fontsize=8)+\ > polygon(((-1,1),(1,1),(1,-1),(-1,-1)),color="blue",alpha=0.2, > thickness=1,frame=True,axes=True,fontsize=8));p2=c > g = graphics_array([p1,p2]); > g.show(frame=True,figsize=10,fontsize=8) The code you provided is not correct or complete, as you will find if you try copy-pasting it in a fresh Sage session. In particular it seems there is no definition for c. The following works, but probably neither illustrates nor solves your problem. sage: r = 2/RDF.pi().sqrt() sage: c = circle((0, 0), r, color="red", fill=True, alpha=0.2, fontsize=8) sage: p = polygon(((-1, 1), (1, 1), (1, -1), (-1, -1)), color="blue", ....: alpha=0.2, thickness=1, frame=True, axes=True, fontsize=8) sage: c + p Launched png viewer for Graphics object consisting of 2 graphics primitives sage: g = graphics_array([c, p]) sage: g.show(frame=True, figsize=10, fontsize=8) Launched png viewer for Graphics Array of size 1 x 2 -- You received this message because you are subscribed to the Google Groups "sage-support" group. To unsubscribe from this group and stop receiving emails from it, send an email to sage-support+unsubscr...@googlegroups.com. To post to this group, send email to sage-support@googlegroups.com. Visit this group at https://groups.google.com/group/sage-support. For more options, visit https://groups.google.com/d/optout.