Quick patch to avoid LaTeX errors with double subscripts, now that I'm using katex-convert-unicode to convert some characters to LaTeX directly (I should do this only for HTML output… to be fixed later)

This commit is contained in:
Georges Dupéron 2017-07-11 02:45:42 +02:00
parent 8714493822
commit a03874e520

View File

@ -23,40 +23,40 @@
(if (string? str)
(string-replace*
str
'([ "_0"]
[ "_1"]
[ "_2"]
[ "_3"]
[ "_4"]
[ "_5"]
[ "_6"]
[ "_7"]
[ "_8"]
[ "_9"]
[ "_i"]
[ "_j"]
[ "_k"]
[ "_l"]
[ "_m"]
[ "_n"]
[ "_o"]
[ "^0"]
[¹ "^1"]
[² "^2"]
[³ "^3"]
[ "^4"]
[ "^5"]
[ "^6"]
[ "^7"]
[ "^8"]
[ "^9"]
[ "^i"]
[ʲ "^j"]
[ "^k"]
[ˡ "^l"]
[ "^m"]
[ "^n"]
[ "^o"]
'([ "{}_0"]
[ "{}_1"]
[ "{}_2"]
[ "{}_3"]
[ "{}_4"]
[ "{}_5"]
[ "{}_6"]
[ "{}_7"]
[ "{}_8"]
[ "{}_9"]
[ "{}_i"]
[ "{}_j"]
[ "{}_k"]
[ "{}_l"]
[ "{}_m"]
[ "{}_n"]
[ "{}_o"]
[ "{}^0"]
[¹ "{}^1"]
[² "{}^2"]
[³ "{}^3"]
[ "{}^4"]
[ "{}^5"]
[ "{}^6"]
[ "{}^7"]
[ "{}^8"]
[ "{}^9"]
[ "{}^i"]
[ʲ "{}^j"]
[ "{}^k"]
[ˡ "{}^l"]
[ "{}^m"]
[ "{}^n"]
[ "{}^o"]
[ "\\subseteq" "\\ensuremath{\\subseteq}"]
[ "\\subset" "\\ensuremath{\\subset}"]
[ "\\supseteq" "\\ensuremath{\\supseteq}"]