File tree 1 file changed +26
-16
lines changed
1 file changed +26
-16
lines changed Original file line number Diff line number Diff line change 10
10
(listof (list/c string? string-len-one?))])
11
11
12
12
(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)))))))
29
39
30
40
(define tex-shortcut-table
31
41
(append
You can’t perform that action at this time.
0 commit comments