diff options
| author | unclebean <unclebean2013@gmail.com> | 2024-04-16 20:05:07 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-04-16 12:05:07 +0000 |
| commit | 4c99d6c8b38c23222fabf2465dbc030d08b6283f (patch) | |
| tree | 34afb73139162250914fa950998b6b0eb5e625d3 /crates | |
| parent | 5415095ef3743048c9aa363b02722e89e2d01d81 (diff) | |
Add datetime duration example in datetime document #3178 (#3931)
Co-authored-by: Laurenz <laurmaedje@gmail.com>
Diffstat (limited to 'crates')
| -rw-r--r-- | crates/typst/src/foundations/datetime.rs | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/crates/typst/src/foundations/datetime.rs b/crates/typst/src/foundations/datetime.rs index 9e4f0084..d15cd417 100644 --- a/crates/typst/src/foundations/datetime.rs +++ b/crates/typst/src/foundations/datetime.rs @@ -45,6 +45,28 @@ use crate::World; /// ) /// ``` /// +/// # Datetime and Duration +/// You can get a [duration] by subtracting two datetime: +/// ```example +/// #let first-of-march = datetime(day: 1, month: 3, year: 2024) +/// #let first-of-jan = datetime(day: 1, month: 1, year: 2024) +/// #let distance = first-of-march - first-of-jan +/// #distance.hours() +/// ``` +/// +/// You can also add/subtract a datetime and a duration to retrieve a new, +/// offset datetime: +/// ```example +/// #let date = datetime(day: 1, month: 3, year: 2024) +/// #let two-days = duration(days: 2) +/// #let two-days-earlier = date - two-days +/// #let two-days-later = date + two-days +/// +/// #date.display() \ +/// #two-days-earlier.display() \ +/// #two-days-later.display() +/// ``` +/// /// # Format /// You can specify a customized formatting using the /// [`display`]($datetime.display) method. The format of a datetime is |
