Replace par function call in tutorial (#6023)

This commit is contained in:
Laurenz 2025-03-07 09:47:56 +01:00 committed by GitHub
parent e1a9166e1d
commit 99b7d2898e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -13,11 +13,11 @@ your report using Typst's styling system.
As we have seen in the previous chapter, Typst has functions that _insert_ As we have seen in the previous chapter, Typst has functions that _insert_
content (e.g. the [`image`] function) and others that _manipulate_ content that content (e.g. the [`image`] function) and others that _manipulate_ content that
they received as arguments (e.g. the [`align`] function). The first impulse you they received as arguments (e.g. the [`align`] function). The first impulse you
might have when you want, for example, to justify the report, could be to look might have when you want, for example, to change the font, could be to look
for a function that does that and wrap the complete document in it. for a function that does that and wrap the complete document in it.
```example ```example
#par(justify: true)[ #text(font: "New Computer Modern")[
= Background = Background
In the case of glaciers, fluid In the case of glaciers, fluid
dynamics principles can be used dynamics principles can be used
@ -37,9 +37,9 @@ do in Typst, there is special syntax for it: Instead of putting the content
inside of the argument list, you can write it in square brackets directly after inside of the argument list, you can write it in square brackets directly after
the normal arguments, saving on punctuation. the normal arguments, saving on punctuation.
As seen above, that works. The [`par`] function justifies all paragraphs within As seen above, that works. With the [`text`] function, we can adjust the font
it. However, wrapping the document in countless functions and applying styles for all text within it. However, wrapping the document in countless functions
selectively and in-situ can quickly become cumbersome. and applying styles selectively and in-situ can quickly become cumbersome.
Fortunately, Typst has a more elegant solution. With _set rules,_ you can apply Fortunately, Typst has a more elegant solution. With _set rules,_ you can apply
style properties to all occurrences of some kind of content. You write a set style properties to all occurrences of some kind of content. You write a set
@ -47,7 +47,9 @@ rule by entering the `{set}` keyword, followed by the name of the function whose
properties you want to set, and a list of arguments in parentheses. properties you want to set, and a list of arguments in parentheses.
```example ```example
#set par(justify: true) #set text(
font: "New Computer Modern"
)
= Background = Background
In the case of glaciers, fluid In the case of glaciers, fluid