Skip to content

Commit 5bf2ef3

Browse files
aburchEli-Zaretskii
authored andcommitted
Add more blackboard bold characters to TeX input method
This patch adds all capital blackboard bold letters and those for "1" and "2". Most characters are in common use in mathematics, but it does not seem useful to exclude the few not widely used. Reference: https://en.wikipedia.org/wiki/Blackboard_bold * lisp/leim/quail/latin-ltx.el (latin-ltx--define-rules): Add all the blackboard bold commands from AMSTeX. (Bug#21103)
1 parent c362a62 commit 5bf2ef3

File tree

1 file changed

+26
-2
lines changed

1 file changed

+26
-2
lines changed

lisp/leim/quail/latin-ltx.el

Lines changed: 26 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -656,10 +656,34 @@ system, including many technical ones. Examples:
656656
("\\wp" ?℘)
657657
("\\wr" ?≀)
658658

659-
("\\Bbb{N}" ?ℕ) ; AMS commands for blackboard bold
660-
("\\Bbb{P}" ?ℙ) ; Also sometimes \mathbb.
659+
("\\Bbb{A}" ?𝔸) ; AMS commands for blackboard bold
660+
("\\Bbb{B}" ?𝔹) ; Also sometimes \mathbb.
661+
("\\Bbb{C}" ?ℂ)
662+
("\\Bbb{D}" ?𝔻)
663+
("\\Bbb{E}" ?𝔼)
664+
("\\Bbb{F}" ?𝔽)
665+
("\\Bbb{G}" ?𝔾)
666+
("\\Bbb{H}" ?ℍ)
667+
("\\Bbb{I}" ?𝕀)
668+
("\\Bbb{J}" ?𝕁)
669+
("\\Bbb{K}" ?𝕂)
670+
("\\Bbb{L}" ?𝕃)
671+
("\\Bbb{M}" ?𝕄)
672+
("\\Bbb{N}" ?ℕ)
673+
("\\Bbb{O}" ?𝕆)
674+
("\\Bbb{P}" ?ℙ)
675+
("\\Bbb{Q}" ?ℚ)
661676
("\\Bbb{R}" ?ℝ)
677+
("\\Bbb{S}" ?𝕊)
678+
("\\Bbb{T}" ?𝕋)
679+
("\\Bbb{U}" ?𝕌)
680+
("\\Bbb{V}" ?𝕍)
681+
("\\Bbb{W}" ?𝕎)
682+
("\\Bbb{X}" ?𝕏)
683+
("\\Bbb{Y}" ?𝕐)
662684
("\\Bbb{Z}" ?ℤ)
685+
("\\Bbb{1}" ?𝟙)
686+
("\\Bbb{2}" ?𝟚)
663687
("--" ?–)
664688
("---" ?—)
665689
;; We used to use ~ for NBSP but that's inconvenient and may even look like

0 commit comments

Comments
 (0)