From 6f33006460510829a492f558fd250c6846b301cd Mon Sep 17 00:00:00 2001 From: Arno Gourdol Date: Mon, 11 Nov 2024 14:30:41 -0800 Subject: [PATCH] fix: fixed #2545 --- CHANGELOG.md | 1 + src/virtual-keyboard/data.ts | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bd2cc2b7d..00df658c2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ - Correctly display the caret following a `\mathop{}` command. - **#2540** When using `renderMathInElement()` some white space was occasionally incorrectly removed. +- **#2545** (?) Use `\rightarrow` instead of `\rarr` in the virtual keyboard. ## 0.101.1 _2024-10-15_ diff --git a/src/virtual-keyboard/data.ts b/src/virtual-keyboard/data.ts index 70c72fa0e..8ad41b19d 100644 --- a/src/virtual-keyboard/data.ts +++ b/src/virtual-keyboard/data.ts @@ -400,8 +400,8 @@ export const LAYOUTS: Partial< insert: '\\mathrm{abs}\\left(#0\\right)', }, { - latex: '\\rarr', - shift: '\\rArr', + latex: '\\rightarrow', + shift: '\\Rightarrow', variants: [ { latex: '\\implies', aside: 'implies' },