diff options
| author | Laurenz <laurmaedje@gmail.com> | 2023-10-31 12:19:30 +0100 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2023-10-31 12:19:30 +0100 |
| commit | c177a63c9b8b5e57a6ce10f454e809b5474a354b (patch) | |
| tree | 13428e9f118b425cbcfc32d6bdf3a94a3b709222 /tests | |
| parent | 7bb4f6df44086b4c1120b227f7ae963e6c2ad5ab (diff) | |
Fix citation grouping bug with spaces
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/ref/meta/bibliography-ordering.png | bin | 140198 -> 155039 bytes | |||
| -rw-r--r-- | tests/ref/meta/bibliography.png | bin | 118312 -> 118033 bytes | |||
| -rw-r--r-- | tests/ref/meta/cite-group.png | bin | 0 -> 16597 bytes | |||
| -rw-r--r-- | tests/typ/meta/bibliography-ordering.typ | 15 | ||||
| -rw-r--r-- | tests/typ/meta/cite-group.typ | 19 |
5 files changed, 31 insertions, 3 deletions
diff --git a/tests/ref/meta/bibliography-ordering.png b/tests/ref/meta/bibliography-ordering.png Binary files differindex 675d2f68..d1be5ddf 100644 --- a/tests/ref/meta/bibliography-ordering.png +++ b/tests/ref/meta/bibliography-ordering.png diff --git a/tests/ref/meta/bibliography.png b/tests/ref/meta/bibliography.png Binary files differindex cb00f896..ed3dd667 100644 --- a/tests/ref/meta/bibliography.png +++ b/tests/ref/meta/bibliography.png diff --git a/tests/ref/meta/cite-group.png b/tests/ref/meta/cite-group.png Binary files differnew file mode 100644 index 00000000..ade98093 --- /dev/null +++ b/tests/ref/meta/cite-group.png diff --git a/tests/typ/meta/bibliography-ordering.typ b/tests/typ/meta/bibliography-ordering.typ index 5a00c51e..970d66d0 100644 --- a/tests/typ/meta/bibliography-ordering.typ +++ b/tests/typ/meta/bibliography-ordering.typ @@ -1,7 +1,16 @@ #set page(width: 300pt) -@mcintosh_anxiety, @psychology25 -@netwok, @issue201, @arrgh, @quark, @distress, -@glacier-melt, @issue201, @tolkien54, @sharing, @restful +@mcintosh_anxiety +@psychology25 +@netwok +@issue201 +@arrgh +@quark +@distress, +@glacier-melt +@issue201 +@tolkien54 +@sharing +@restful #bibliography("/files/works.bib") diff --git a/tests/typ/meta/cite-group.typ b/tests/typ/meta/cite-group.typ new file mode 100644 index 00000000..3bb0046d --- /dev/null +++ b/tests/typ/meta/cite-group.typ @@ -0,0 +1,19 @@ +// Test citation grouping. + +--- +A#[@netwok@arrgh]B \ +A@netwok@arrgh B \ +A@netwok @arrgh B \ +A@netwok @arrgh. B \ + +A @netwok#[@arrgh]B \ +A @netwok@arrgh, B \ +A @netwok @arrgh, B \ +A @netwok @arrgh. B \ + +A#[@netwok @arrgh @quark]B. \ +A @netwok @arrgh @quark B. \ +A @netwok @arrgh @quark, B. + +#set text(0pt) +#bibliography("/files/works.bib") |
