Closed
Description
Converting markdown
See [@MyPaper].
See [@MyPaper, Equation 1] for details.
See [@MyPaper, Equation 1].
See [@MyPaper, Equation 1; @Other, Figure 1].
to Typst gives
See @MyPaper.
See @MyPaper[Equation 1] for details.
See @MyPaper[Equation 1];.
See @MyPaper[Equation 1];@Other[Figure 1];.
using the online tool (Pandoc 3.3). See here
Note the unnecessary semicolons in the last two examples which causes Typst to render these as
They should be removed like so
In most other cases when scripting using #
expressions, you should put a semicolon to forcibly end the script https://typst.app/docs/reference/scripting/. But not with citing using @
.