diff options
| author | Laurenz <laurmaedje@gmail.com> | 2023-10-31 01:33:06 +0100 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2023-10-31 01:33:06 +0100 |
| commit | ab5dd2a1cb5e6e038f92fbdca0996f602e42f16a (patch) | |
| tree | 90de80cbf5b43c0f525dab20a4b3e901a8933fce /tests/typ/text | |
| parent | 27ab2bb9a2e49bd6b8190eb39b18957b27aca222 (diff) | |
CSL support
Diffstat (limited to 'tests/typ/text')
| -rw-r--r-- | tests/typ/text/quote.typ | 25 |
1 files changed, 17 insertions, 8 deletions
diff --git a/tests/typ/text/quote.typ b/tests/typ/text/quote.typ index b815b032..0fd96ff5 100644 --- a/tests/typ/text/quote.typ +++ b/tests/typ/text/quote.typ @@ -18,6 +18,7 @@ And I quote: #quote(attribution: [René Descartes])[cogito, ergo sum]. --- // Spacing with other blocks #set quote(block: true) +#set text(8pt) #lorem(10) #quote(lorem(10)) @@ -25,27 +26,35 @@ And I quote: #quote(attribution: [René Descartes])[cogito, ergo sum]. --- // Inline citation -#bibliography("/files/works.bib") - +#set text(8pt) #quote(attribution: <tolkien54>)[In a hole in the ground there lived a hobbit.] +#set text(0pt) +#bibliography("/files/works.bib") + --- // Citation-format: label or numeric +#set text(8pt) #set quote(block: true) -#bibliography("/files/works.bib", style: "ieee") - #quote(attribution: <tolkien54>)[In a hole in the ground there lived a hobbit.] +#set text(0pt) +#bibliography("/files/works.bib", style: "ieee") + --- // Citation-format: note +#set text(8pt) #set quote(block: true) -#bibliography("/files/works.bib", style: "chicago-notes") - #quote(attribution: <tolkien54>)[In a hole in the ground there lived a hobbit.] +#set text(0pt) +#bibliography("/files/works.bib", style: "chicago-notes") + --- // Citation-format: author-date or author +#set text(8pt) #set quote(block: true) -#bibliography("/files/works.bib", style: "apa") - #quote(attribution: <tolkien54>)[In a hole in the ground there lived a hobbit.] + +#set text(0pt) +#bibliography("/files/works.bib", style: "apa") |
