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 /crates/typst-kit | |
| parent | d94acd615e5bde7f6d131be351e145477e515721 (diff) | |
Change default font to Libertinus Serif (#4969)
Diffstat (limited to 'crates/typst-kit')
| -rw-r--r-- | crates/typst-kit/Cargo.toml | 2 | ||||
| -rw-r--r-- | crates/typst-kit/src/fonts.rs | 2 | ||||
| -rw-r--r-- | crates/typst-kit/src/lib.rs | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/crates/typst-kit/Cargo.toml b/crates/typst-kit/Cargo.toml index de412ac8..13d0a34b 100644 --- a/crates/typst-kit/Cargo.toml +++ b/crates/typst-kit/Cargo.toml @@ -43,7 +43,7 @@ downloads = ["dep:env_proxy", "dep:native-tls", "dep:ureq", "dep:openssl"] packages = ["downloads", "dep:dirs", "dep:flate2", "dep:tar"] # Embeds some fonts into the binary: -# - For text: Linux Libertine, New Computer Modern +# - For text: Libertinus Serif, New Computer Modern # - For math: New Computer Modern Math # - For code: Deja Vu Sans Mono # diff --git a/crates/typst-kit/src/fonts.rs b/crates/typst-kit/src/fonts.rs index 8f85bfdc..8c8981a1 100644 --- a/crates/typst-kit/src/fonts.rs +++ b/crates/typst-kit/src/fonts.rs @@ -4,7 +4,7 @@ //! # Embedded fonts //! The following fonts are available as embedded fonts via the `embed-fonts` //! feature flag: -//! - For text: Linux Libertine, New Computer Modern +//! - For text: Libertinus Serif, New Computer Modern //! - For math: New Computer Modern Math //! - For code: Deja Vu Sans Mono diff --git a/crates/typst-kit/src/lib.rs b/crates/typst-kit/src/lib.rs index d0ea82ef..956339b8 100644 --- a/crates/typst-kit/src/lib.rs +++ b/crates/typst-kit/src/lib.rs @@ -7,7 +7,7 @@ //! - [fonts] contains a default implementation for searching local and system //! installed fonts. It is enabled by the `fonts` feature flag, additionally //! the `embed-fonts` feature can be used to embed the Typst default fonts. -//! - For text: Linux Libertine, New Computer Modern +//! - For text: Libertinus Serif, New Computer Modern //! - For math: New Computer Modern Math //! - For code: Deja Vu Sans Mono //! - [download] contains functionality for making simple web requests with |
