diff options
| author | Laurenz <laurmaedje@gmail.com> | 2023-03-08 10:54:04 +0100 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2023-03-08 11:02:27 +0100 |
| commit | e5eab73374880077971f3f22acbdd3d302877128 (patch) | |
| tree | 07aa926b27032d6bcd82486d664dfd4161ccbd3e /docs/src/tutorial/3-advanced.md | |
| parent | 1b2b53ecb91a9bd7fb3493e471ae03cd142a7c03 (diff) | |
Streamline field names
Diffstat (limited to 'docs/src/tutorial/3-advanced.md')
| -rw-r--r-- | docs/src/tutorial/3-advanced.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/src/tutorial/3-advanced.md b/docs/src/tutorial/3-advanced.md index 0e337d86..3784bc8e 100644 --- a/docs/src/tutorial/3-advanced.md +++ b/docs/src/tutorial/3-advanced.md @@ -359,7 +359,7 @@ a way to set any of that, we need to write our own heading show rule. #show heading: it => block[ #set align(center) #set text(12pt, weight: "regular") - #smallcaps(it.title) + #smallcaps(it.body) ] <<< ... @@ -441,7 +441,7 @@ differentiate between section and subsection headings: ): it => block[ #set align(center) #set text(12pt, weight: "regular") - #smallcaps(it.title) + #smallcaps(it.body) ] #show heading.where( @@ -450,7 +450,7 @@ differentiate between section and subsection headings: size: 11pt, weight: "regular", style: "italic", - it.title + [.], + it.body + [.], ) >>> >>> #align(center, text( |
