From 8aa1b7a6659c58bc4fb2b28ebdbe58943124636e Mon Sep 17 00:00:00 2001 From: Alexandre Nunes Date: Thu, 17 Sep 2020 11:35:27 -0300 Subject: [PATCH] feat: add mtext double-struck text case --- .../mathml-tag-to-latex/mathml-tags/MText.ts | 2 ++ 1 file changed, 2 insertions(+) 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 ba5381b..cd585ec 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 @@ -34,6 +34,8 @@ class TextCommand { return ['\\textit']; case 'bold-italic': return ['\\textit', '\\textbf']; + case 'double-struck': + return ['\\mathbb']; default: return ['\\text']; }