Tile Layout objects in a User Function
millot1
It seems that new Layout functions eg AppendLayoutObject are now recommended.
I cannot find how to Tile objects on a Layout in a function , except using Tile and Execute...
Is there an easier way?
NewLayout /K=1 /P=Portrait
AppendLayoutObject graph $"GraphName1"
AppendLayoutObject graph $"GraphName2"
AppendLayoutObject graph $"GraphName3"
AppendLayoutObject graph $"GraphName1"
AppendLayoutObject graph $"GraphName2"
AppendLayoutObject graph $"GraphName3"
This is the only way I know how to do it: construct a string with the Tile command using variables depending on how many objects there may be and then Execute quietly.
May 22, 2024 at 07:17 am - Permalink
I often use the following snippet to arrange multiple graphs on one layout to make e.g. an (a-d) figure. Maybe this is useful.
https://www.wavemetrics.com/code-snippet/stacked-plots-multiple-plots-l…
May 23, 2024 at 01:01 am - Permalink