From 7ff83db757330899576b50b87968ca86f2539f7b Mon Sep 17 00:00:00 2001 From: Laurenz Date: Mon, 30 Sep 2024 17:19:22 +0200 Subject: Change default font to Libertinus Serif (#4969) --- docs/guides/guide-for-latex-users.md | 2 +- docs/tutorial/3-advanced.md | 18 +++++++++--------- docs/tutorial/4-template.md | 4 ++-- 3 files changed, 12 insertions(+), 12 deletions(-) (limited to 'docs') diff --git a/docs/guides/guide-for-latex-users.md b/docs/guides/guide-for-latex-users.md index c845747b..8500e18b 100644 --- a/docs/guides/guide-for-latex-users.md +++ b/docs/guides/guide-for-latex-users.md @@ -313,7 +313,7 @@ function. The following example illustrates how it works: >>> abstract: [], >>> doc, >>> ) = { ->>> 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/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", -- cgit v1.2.3