summaryrefslogtreecommitdiff
path: root/library/src/math/tex.rs
diff options
context:
space:
mode:
Diffstat (limited to 'library/src/math/tex.rs')
-rw-r--r--library/src/math/tex.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/library/src/math/tex.rs b/library/src/math/tex.rs
index 5f332f3c..b2b6486e 100644
--- a/library/src/math/tex.rs
+++ b/library/src/math/tex.rs
@@ -35,13 +35,14 @@ impl Texify for Content {
/// Layout a TeX formula into a frame.
pub fn layout_tex(
- world: Tracked<dyn World>,
+ vt: &Vt,
tex: &str,
display: bool,
styles: StyleChain,
) -> SourceResult<Fragment> {
// Load the font.
let variant = variant(styles);
+ let world = vt.world();
let mut font = None;
for family in families(styles) {
font = world.book().select(family, variant).and_then(|id| world.font(id));