diff --git a/__test__/index.test.ts b/__test__/index.test.ts index 0f7c390..8736491 100755 --- a/__test__/index.test.ts +++ b/__test__/index.test.ts @@ -1416,5 +1416,19 @@ describe('#convert', () => { expect(result).toBe('\\textbf{\\textit{ Theorem of Pythagoras }}'); }); + + describe('mtext with mathvariant attribute setted as "double-struck"', () => { + const mathml = ` + + + R + + + `; + + const result = MathMLToLaTeX.convert(mathml); + + expect(result).toBe('\\mathbb{R}'); + }); }); });