WORKFLOW
Put Graphics in a Grid
Create graphics
Here is an array of Graphics and text objects:
{
{Graphics[Circle[]], Style["Hello", FontSize -> 48]},
{RandomImage[], Plot[Sin[x], {x, 0, 11}]}
}Format the graphics as a grid
Use GraphicsGrid to format an array of graphics as a grid:
GraphicsGrid[{
{Graphics[Circle[]], Style["Hello", FontSize -> 48]},
{RandomImage[], Plot[Sin[x], {x, 0, 11}]}
}]Notes
- SpanFromLeft and SpanFromAbove can be repeated to span multiple columns or rows.
Use SpanFromBoth to make grid elements that simultaneously span multiple rows and columns:
A GraphicsGrid can be resized as a whole: