Crossref syntax such as See @fig-demofiglabel is not well supported with no-space situation for docx output format.
WARNING: Unable to resolve crossref @fig-demofiglabel所示
For example:
I tried the syntax below, with no success
MWE
---
title: MWE
format: docx
---
See @fig-demofiglabel
如@{fig-demofiglabel}所示
If I add a space before`@`, it works.
如 @{fig-demofiglabel}所示
```{r}
#| label: fig-demofiglabel
#| fig-cap: "Demo figure"
plot(1)
```
