feat: add mtext double-struck text case

This commit is contained in:
Alexandre Nunes 2020-09-17 11:35:27 -03:00
parent 4925e9174e
commit 8aa1b7a665
1 changed files with 2 additions and 0 deletions

View File

@ -34,6 +34,8 @@ class TextCommand {
return ['\\textit'];
case 'bold-italic':
return ['\\textit', '\\textbf'];
case 'double-struck':
return ['\\mathbb'];
default:
return ['\\text'];
}