From 5537205cb115eda039533315a946b6e4c146fb94 Mon Sep 17 00:00:00 2001 From: universemaster Date: Sun, 5 Feb 2023 15:57:17 +0000 Subject: [PATCH] Update hbar to U+210F from U+0127 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The correct unicode character is ℏ https://www.compart.com/en/unicode/U+210F "Planck Constant Over Two Pi". However, previously the character was set to ħ https://www.compart.com/en/unicode/U+0127 "Latin Small Letter H with Stroke". --- src/latex.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/latex.ts b/src/latex.ts index 7010b2f..559c180 100644 --- a/src/latex.ts +++ b/src/latex.ts @@ -276,7 +276,7 @@ export const latexSymbols = { '\\geqq': '≧', '\\gneq': '⪈', '\\gtcc': '⪧', - '\\hbar': 'ħ', + '\\hbar': 'ℏ', '\\iint': '∬', '\\intx': '⨘', '\\iota': 'ι',