diff options
Diffstat (limited to 'src/eval/library.rs')
| -rw-r--r-- | src/eval/library.rs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/eval/library.rs b/src/eval/library.rs index a92d8bd1..13825d7e 100644 --- a/src/eval/library.rs +++ b/src/eval/library.rs @@ -91,13 +91,13 @@ pub struct LangItems { pub math_attach: fn( base: Content, // Positioned smartly. - top: Option<Content>, - bottom: Option<Content>, + t: Option<Content>, + b: Option<Content>, // Fixed positions. - topleft: Option<Content>, - bottomleft: Option<Content>, - topright: Option<Content>, - bottomright: Option<Content>, + tl: Option<Content>, + bl: Option<Content>, + tr: Option<Content>, + br: Option<Content>, ) -> Content, /// A base with an accent: `arrow(x)`. pub math_accent: fn(base: Content, accent: char) -> Content, |
