Spanned grid content

using MakieLayout

using AbstractPlotting

scene, layout = layoutscene(4, 4, 30, resolution = (1200, 1200))

layout[1, 1:2] = LAxis(scene, title="[1, 1:2]")
layout[2:4, 1:2] = LAxis(scene, title="[2:4, 1:2]")
layout[:, 3] = LAxis(scene, title="[:, 3]")
layout[1:3, end] = LAxis(scene, title="[1:3, end]")
layout[end, end] = LAxis(scene, title="[end, end]")

scene