Skip to content

Commit 539d214

Browse files
committed
add all of the blackboard bold lowercase letters, uppercase letters, and digits
1 parent b2e2901 commit 539d214

File tree

1 file changed

+26
-16
lines changed

1 file changed

+26
-16
lines changed

tex-table/tex-table.rkt

+26-16
Original file line numberDiff line numberDiff line change
@@ -10,22 +10,32 @@
1010
(listof (list/c string? string-len-one?))])
1111

1212
(define blackboard-bold
13-
(for*/list ([i (in-string "ABCDEFGHIJKLMNOPQRSTUVWXYZ")])
14-
(cond
15-
[(member i (string->list "CHNPQRZ"))
16-
(list (format "b~a" i)
17-
(match i
18-
[#\C ""]
19-
[#\H ""]
20-
[#\N ""]
21-
[#\P ""]
22-
[#\Q ""]
23-
[#\R ""]
24-
[#\Z ""]))]
25-
[else
26-
(define bo (- (char->integer #\𝔸) (char->integer #\A)))
27-
(list (format "b~a" i)
28-
(string (integer->char (+ (char->integer i) bo))))])))
13+
(append
14+
(for*/list ([i (in-string "ABCDEFGHIJKLMNOPQRSTUVWXYZ")]
15+
[case (in-list '(lower upper))])
16+
(cond
17+
[(and (equal? case 'upper) (member i (string->list "CHNPQRZ")))
18+
(list (format "b~a" i)
19+
(match i
20+
[#\C ""]
21+
[#\H ""]
22+
[#\N ""]
23+
[#\P ""]
24+
[#\Q ""]
25+
[#\R ""]
26+
[#\Z ""]))]
27+
[else
28+
(define bo (match case
29+
['upper (- (char->integer #\𝔸) (char->integer #\A))]
30+
['lower (- (char->integer #\𝕒) (char->integer #\A))]))
31+
(define co (match case
32+
['upper 0]
33+
['lower (- (char->integer #\a) (char->integer #\A))]))
34+
(list (format "b~a" (integer->char (+ (char->integer i) co)))
35+
(string (integer->char (+ (char->integer i) bo))))]))
36+
(for/list ([i (in-inclusive-range 0 9)])
37+
(list (format "b~a" i)
38+
(string (integer->char (+ (char->integer #\𝟘) i)))))))
2939

3040
(define tex-shortcut-table
3141
(append

0 commit comments

Comments
 (0)