Exemplo n.º 1
0
 public GroupedLetterSym(LetterSym[] letters, AccentKind accent)
 {
     _letters = letters; _accent = accent;
 }
Exemplo n.º 2
0
 public LetterSym(char letter, AccentKind accent, Expr subscript, Format format, object tag)
 {
     _letter = letter; _accent = accent; _subscript = subscript; _format = format; _tag = tag;
 }
Exemplo n.º 3
0
 public GroupedLetterSym(params LetterSym[] letters)
 {
     _letters = letters; _accent = new NoAccent();
 }
Exemplo n.º 4
0
 public WordSym(string word, AccentKind accent, Expr subscript, Format format, object tag)
 {
     _word = word; _accent = accent; _subscript = subscript; _format = format; _tag = Tag;
 }