I need 2 different TikZpictures with the same bounding box (the one of the first TikZpicture) because I need a perfect vertical alignment of the subfigures side by side.
Please, how can I handle this?
tikz-pgfvertical alignment
I need 2 different TikZpictures with the same bounding box (the one of the first TikZpicture) because I need a perfect vertical alignment of the subfigures side by side.
Please, how can I handle this?
Best Answer
You can use the
\useasboundingbox
command in the second picture to set the bounding box. Should be the first command in the picture.If you don't know the dimensions of the first picture you can get them from the
current bounding box
node. Usingremember picture
you can then access this information in the second node.The code below will set the accept same bounding box for the second picture.
This works if both pictures use only positive coordinates. Adjustment must be made if this isn't the case.
The
\fbox
commands are only to display the bounding box and are not really required.