From a69a275a96670f716fb8bb837ef2ddccf3ffc6d7 Mon Sep 17 00:00:00 2001 From: Alexandre Nunes Date: Sat, 19 Sep 2020 15:57:21 -0300 Subject: [PATCH] feat: add mfenced and mtable as Bmatrix --- .../mathml-tag-to-latex/mathml-tags/MFenced.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/converters/mathml-interfaces-to-latex/mathml-tag-to-latex/mathml-tags/MFenced.ts b/src/converters/mathml-interfaces-to-latex/mathml-tag-to-latex/mathml-tags/MFenced.ts index 7b032c7..63d9854 100755 --- a/src/converters/mathml-interfaces-to-latex/mathml-tag-to-latex/mathml-tags/MFenced.ts +++ b/src/converters/mathml-interfaces-to-latex/mathml-tag-to-latex/mathml-tags/MFenced.ts @@ -62,6 +62,8 @@ class Matrix { return 'pmatrix'; case '|': return 'vmatrix'; + case '{': + return 'Bmatrix'; default: return 'bmatrix'; }