| 91 | |
| 92 | #[test] |
| 93 | fn script() { |
| 94 | let expr = "<math> <mi>𝒜</mi><mo>,</mo><mi>𝒵</mi></math>"; |
| 95 | test("en", "SimpleSpeak", expr, "script cap eigh comma script cap z"); |
| 96 | let expr = "<math> <mi>𝒶</mi><mo>,</mo><mi>𝓏</mi></math>"; |
| 97 | test("en", "SimpleSpeak", expr, "script eigh comma script z"); |
| 98 | // MathType private space versions |
| 99 | let expr = "<math> <mi></mi><mo>,</mo><mi></mi></math>"; |
| 100 | test("en", "SimpleSpeak", expr, "script cap eigh comma script cap z"); |
| 101 | let expr = "<math> <mi></mi><mo>,</mo><mi></mi></math>"; |
| 102 | test("en", "SimpleSpeak", expr, "script eigh comma script z"); |
| 103 | } |
| 104 | |
| 105 | #[test] |
| 106 | fn bold_script() { |