1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
use Tracked;
use Span;
use crateSourceResult;
use crateEngine;
use crate;
use crateLocation;
/// Determines the location of an element in the document.
///
/// Takes a selector that must match exactly one element and returns that
/// element's @location. This location can, in particular, be used to retrieve
/// the physical @location.page[`page`] number and
/// @location.position[`position`] (page, x, y) for that element.
///
/// = Examples <examples>
/// Locating a specific element:
///
/// ```example
/// #context [
/// Introduction is at: \
/// #locate(<intro>).position()
/// ]
///
/// = Introduction <intro>
/// ```