Heya, I’d like to include a table of figures in my document.
#figure(
image("figures/cute_kittens.svg", width: 80%),
caption: [Image of cute kittens. As you can see, these kittens are very cute.],
) <fig_cute_kittens>
#outline(target: figure.where(kind: image))
This however includes the whole caption. I’d like to have another field in the image which would be used for the outline, perhaps the alt
parameter in image
? I really don’t want to redefine figures as was suggested here, I’m still beginning with typst and this looks too complex for me.
Thank you!