Hey, I am writing my bachelors thesis and part of it is analysing images. I want to show certain areas in it without manipulating the image file, so I tried to use this workaround:
#figure(
grid(
columns: 2,
gutter: 0.5em,
block(
image("../pic16.png")),
block(
image("../pic17.png")),
place(dy: -82pt, dx:110pt, rect(
stroke: 1pt + red,
width: 10mm,
height: 5mm
)),
place(dy: -90pt, dx:3pt, rect(
stroke: 1pt + red,
width: 20mm,
height: 6mm
)),
place(dy: -95pt, dx:350pt, rect(
stroke: 1pt + red,
width: 16mm,
height: 6mm
)),
),
caption: [Die REM-Aufnahmen zeigen den Querschnitt der Probe, welche bei Raumtemperatur mit Stickstoff und einem Gasdruck von 1,8 bar gespritzt wurde],
)<T2.2_Quer>
The problem I find with this is that it creates more spacing under the image with new box rows, even when I do rows:1 in the figure, see screenshot attached. Figure (Abbildung) 16 has too much spacing after the image whereas Figure 17 has the correct amount.
How Can I create rectangles on top of the image without creating new blank rows?
