diff options
| author | Laurenz <laurmaedje@gmail.com> | 2024-02-04 12:25:28 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-02-04 11:25:28 +0000 |
| commit | 71ed7795995642ee34e6272c550538897cd11d50 (patch) | |
| tree | 2ff5ecb9b948cd04a607e44b66ce4d8d096d4c79 /tests/typ | |
| parent | a8f764ab484de735b3099870204fa613f4f2a2db (diff) | |
Fix terms show rule (#3325)
Diffstat (limited to 'tests/typ')
| -rw-r--r-- | tests/typ/bugs/1050-terms-indent.typ | 11 | ||||
| -rw-r--r-- | tests/typ/layout/terms.typ | 8 |
2 files changed, 19 insertions, 0 deletions
diff --git a/tests/typ/bugs/1050-terms-indent.typ b/tests/typ/bugs/1050-terms-indent.typ new file mode 100644 index 00000000..82376820 --- /dev/null +++ b/tests/typ/bugs/1050-terms-indent.typ @@ -0,0 +1,11 @@ +#set page(width: 200pt) +#set par(first-line-indent: 0.5cm) + +- #lorem(10) +- #lorem(10) + ++ #lorem(10) ++ #lorem(10) + +/ Term 1: #lorem(10) +/ Term 2: #lorem(10) diff --git a/tests/typ/layout/terms.typ b/tests/typ/layout/terms.typ index fa94ae12..178aa98b 100644 --- a/tests/typ/layout/terms.typ +++ b/tests/typ/layout/terms.typ @@ -22,6 +22,8 @@ An important energy source for vegetarians. + And healthy! + --- // Test style change. #set text(8pt) @@ -31,6 +33,12 @@ / Second list: #lorem(5) --- +// Test RTL. +#set text(8pt, dir: rtl) + +/ פרי: דבר טעים, אכיל. ומקור אנרגיה חשוב לצמחונים. + +--- // Test grid like show rule. #show terms: it => table( columns: 2, |
