diff options
| author | Laurenz <laurmaedje@gmail.com> | 2024-09-30 17:19:22 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-30 15:19:22 +0000 |
| commit | 7ff83db757330899576b50b87968ca86f2539f7b (patch) | |
| tree | 73a779808e84edec1539a07f49b8123b8424da59 /docs/tutorial | |
| parent | d94acd615e5bde7f6d131be351e145477e515721 (diff) | |
Change default font to Libertinus Serif (#4969)
Diffstat (limited to 'docs/tutorial')
| -rw-r--r-- | docs/tutorial/3-advanced.md | 18 | ||||
| -rw-r--r-- | docs/tutorial/4-template.md | 4 |
2 files changed, 11 insertions, 11 deletions
diff --git a/docs/tutorial/3-advanced.md b/docs/tutorial/3-advanced.md index d984e8e7..f1ed8154 100644 --- a/docs/tutorial/3-advanced.md +++ b/docs/tutorial/3-advanced.md @@ -61,7 +61,7 @@ Let's start by writing some set rules for the document. ) #set par(justify: true) #set text( - font: "Linux Libertine", + font: "Libertinus Serif", size: 11pt, ) @@ -69,7 +69,7 @@ Let's start by writing some set rules for the document. ``` You are already familiar with most of what is going on here. We set the text -size to `{11pt}` and the font to Linux Libertine. We also enable paragraph +size to `{11pt}` and the font to Libertinus Serif. We also enable paragraph justification and set the page size to US letter. The `header` argument is new: With it, we can provide content to fill the top @@ -90,7 +90,7 @@ align it and increase its font weight by enclosing it in `[*stars*]`. ```example >>> #set page(width: 300pt, margin: 30pt) ->>> #set text(font: "Linux Libertine", 11pt) +>>> #set text(font: "Libertinus Serif", 11pt) #align(center, text(17pt)[ *A fluid dynamic model for glacier flow* @@ -104,7 +104,7 @@ supervisor, we'll add our own and their name. ```example >>> #set page(width: 300pt, margin: 30pt) ->>> #set text(font: "Linux Libertine", 11pt) +>>> #set text(font: "Libertinus Serif", 11pt) >>> >>> #align(center, text(17pt)[ >>> *A fluid dynamic model @@ -141,7 +141,7 @@ Now, let's add the abstract. Remember that the conference wants the abstract to be set ragged and centered. ```example:0,0,612,317.5 ->>> #set text(font: "Linux Libertine", 11pt) +>>> #set text(font: "Libertinus Serif", 11pt) >>> #set par(justify: true) >>> #set page( >>> "us-letter", @@ -200,7 +200,7 @@ keyword: <<< ... ->>> #set text(font: "Linux Libertine", 11pt) +>>> #set text(font: "Libertinus Serif", 11pt) >>> #set par(justify: true) #set page( >>> "us-letter", @@ -266,7 +266,7 @@ content. In our case, it passes it on to the `columns` function. >>> for glacier flow >>> ] >>> ->>> #set text(font: "Linux Libertine", 11pt) +>>> #set text(font: "Libertinus Serif", 11pt) >>> #set par(justify: true) >>> #set page( >>> "us-letter", @@ -325,7 +325,7 @@ a way to set any of that, we need to write our own heading show rule. >>> for glacier flow >>> ] >>> ->>> #set text(font: "Linux Libertine", 11pt) +>>> #set text(font: "Libertinus Serif", 11pt) >>> #set par(justify: true) >>> #set page( >>> "us-letter", @@ -401,7 +401,7 @@ differentiate between section and subsection headings: >>> for glacier flow >>> ] >>> ->>> #set text(font: "Linux Libertine", 11pt) +>>> #set text(font: "Libertinus Serif", 11pt) >>> #set par(justify: true) >>> #set page( >>> "us-letter", diff --git a/docs/tutorial/4-template.md b/docs/tutorial/4-template.md index a96e7c0a..0ec4a978 100644 --- a/docs/tutorial/4-template.md +++ b/docs/tutorial/4-template.md @@ -97,7 +97,7 @@ previous chapter. ) set par(justify: true) set text( - font: "Linux Libertine", + font: "Libertinus Serif", size: 11pt, ) @@ -270,7 +270,7 @@ want to import. >>> abstract: [], >>> doc, >>> ) = { ->>> set text(font: "Linux Libertine", 11pt) +>>> set text(font: "Libertinus Serif", 11pt) >>> set par(justify: true) >>> set page( >>> "us-letter", |
