I have a contour plot that I'm trying to organize into a grid using Grid. But Grid changes the FrameTicksStyle font size of the fractions. How do I prevent this?
ContourPlot[x^2 + y^2, {x, 0, π}, {y, -π, π}, FrameTicks -> {{{-π/2, 0, π/2}, None}, {{}, None}}, FrameTicksStyle -> {Directive[14], Directive[14]}] Grid[{{%, %}, {%, %}}] If you're wondering why I'm using Grid instead of GraphicsGrid, it's just way easier for what I'm trying to accomplish.







GraphicsGridretains the tick marks but adds extra space. $\endgroup$