#include "atom/atom_text.h" #include "box/box_single.h" #include "env/env.h" #include "utils/utf.h" using namespace std; using namespace microtex; void TextAtom::append(c32 code) { appendToUtf8(_txt, code); } sptr TextAtom::createBox(Env& env) { auto style = (_mathMode ? env.mathFontStyle() : env.textFontStyle()); return sptrOf(_txt, style, Env::fixedTextSize() * env.scale()); }