mirror of
https://github.com/typst/typst
synced 2025-05-20 20:15:29 +08:00
24 lines
418 B
Typst
24 lines
418 B
Typst
// Test citation in other introspection.
|
|
|
|
---
|
|
#set page(width: 180pt)
|
|
#set heading(numbering: "1")
|
|
|
|
#outline(
|
|
title: [List of Figures],
|
|
target: figure.where(kind: image),
|
|
)
|
|
|
|
#pagebreak()
|
|
|
|
= Introduction <intro>
|
|
#figure(
|
|
rect[-- PIRATE --],
|
|
caption: [A pirate @arrgh in @intro],
|
|
)
|
|
|
|
#locate(loc => [Citation @distress on page #loc.page()])
|
|
|
|
#pagebreak()
|
|
#bibliography("/files/works.bib", style: "chicago-notes")
|