From 758767e14c76760a634025bf174db15e42c602a4 Mon Sep 17 00:00:00 2001 From: Alexandre Nunes Date: Thu, 17 Sep 2020 11:39:17 -0300 Subject: [PATCH] feat: add mtext bold-fraktur text use case --- .../mathml-tag-to-latex/mathml-tags/MText.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/converters/mathml-interfaces-to-latex/mathml-tag-to-latex/mathml-tags/MText.ts b/src/converters/mathml-interfaces-to-latex/mathml-tag-to-latex/mathml-tags/MText.ts index 5b6225d..3a46e84 100644 --- a/src/converters/mathml-interfaces-to-latex/mathml-tag-to-latex/mathml-tags/MText.ts +++ b/src/converters/mathml-interfaces-to-latex/mathml-tag-to-latex/mathml-tags/MText.ts @@ -36,6 +36,7 @@ class TextCommand { return ['\\textit', '\\textbf']; case 'double-struck': return ['\\mathbb']; + case 'bold-fraktur': case 'fraktur': return ['\\mathfrak']; default: