Is there an option for short figure captions?

LaTeX supports long and short caption:

\caption[Short title for List of Figures]{Long caption appears below the image.}

Can we add similar mechanism in figure.caption so that shorter caption is displayed in LoF section and longer one in the main document?
Eg:

#figure(
    caption: figure.caption(
        short: [Short title for List of Figures],
        [Long caption appears below the image.]
    )
)

Hi @roopesh,

the post linked below implements exactly this with a custom function:

1 Like