Uses of Class
be.ugent.caagt.jmathtex.SymbolNotFoundException

Packages that use SymbolNotFoundException
be.ugent.caagt.jmathtex   
 

Uses of SymbolNotFoundException in be.ugent.caagt.jmathtex
 

Methods in be.ugent.caagt.jmathtex that throw SymbolNotFoundException
 TeXFormula TeXFormula.addAcc(java.lang.String s, java.lang.String accentName)
          Parses the given string(s) into a TeXFormula, puts the given accent above it and inserts the result at the end of the current TeXFormula.
 TeXFormula TeXFormula.addAcc(TeXFormula base, java.lang.String accentName)
          Puts the given accent above the given TeXFormula and inserts the result at the end of the current TeXFormula.
 TeXFormula TeXFormula.addEmbraced(java.lang.String s, char l, char r)
          Parses the given string into a TeXFormula, surrounds it with the given delimiters and inserts the result at the end of the current TeXformula.
 TeXFormula TeXFormula.addEmbraced(java.lang.String s, java.lang.String left, java.lang.String right)
          Parses the given string(s) into a TeXFormula, surrounds it with the given delimiters (if not null) and inserts the result at the end of the current TeXFormula.
 TeXFormula TeXFormula.addEmbraced(TeXFormula f, char l, char r)
          Surrounds the given TeXFormula with the given delimiters and inserts the result at the end of the current TeXformula.
 TeXFormula TeXFormula.addEmbraced(TeXFormula f, java.lang.String left, java.lang.String right)
          Surrounds the given TeXFormula with the given delimiters (if not null) and inserts the result at the end of the current TeXFormula.
 TeXFormula TeXFormula.addSymbol(java.lang.String name)
          Inserts the symbol with the given name at the end of the current TeXFormula.
 TeXFormula TeXFormula.addSymbol(java.lang.String name, int type)
          Inserts the symbol with the given name at the end of the current TeXFormula as a symbol of the given symbol type.
 TeXFormula TeXFormula.embrace(char left, char right)
          Surrounds this TeXFormula with the given delimiters.
 TeXFormula TeXFormula.embrace(java.lang.String left, java.lang.String right)
          Surrounds this TeXFormula with the given delimiters (if not null).
 TeXFormula TeXFormula.putAccentOver(java.lang.String accentName)
          Puts the given accent above the current TeXFormula and changes the current TeXFormula into the resulting accent construction.
 TeXFormula TeXFormula.putDelimiterOver(int delimiter)
          Puts the delimiter symbol represented by the given delimiter type constant above the current TeXFormula and changes the current TeXFormula into the resulting construction.
 TeXFormula TeXFormula.putDelimiterOver(int delimiter, java.lang.String sup, int kernUnit, float kern)
          Puts the delimiter symbol represented by the given delimiter type constant above the current TeXFormula, parses the given string into a TeXFormula and puts it above the delimiter symbol (seperated by an amount of vertical space defined by the given float value and unit) in a smaller size (unless the current TeXFormula will be displayed in the smallest possible size: the script_script style's size) and finally changes the current TeXFormula into the resulting construction.
 TeXFormula TeXFormula.putDelimiterOver(int delimiter, TeXFormula sup, int kernUnit, float kern)
          Puts the delimiter symbol represented by the given delimiter type constant above the current TeXFormula, puts the given TeXFormula above the delimiter symbol (seperated by an amount of vertical space defined by the given float value and unit) in a smaller size (unless the current TeXFormula will be displayed in the smallest possible size: the "script_script" style's size) and finally changes the current TeXFormula into the resulting construction.
 TeXFormula TeXFormula.putDelimiterUnder(int delimiter)
          Puts the delimiter symbol represented by the given delimiter type constant under the current TeXFormula and changes the current TeXFormula into the resulting construction.
 TeXFormula TeXFormula.putDelimiterUnder(int delimiter, java.lang.String sub, int kernUnit, float kern)
          Puts the delimiter symbol represented by the given delimiter type constant under the current TeXFormula, parses the given string into a TeXFormula and puts it under the delimiter symbol (seperated by an amount of vertical space defined by the given float value and unit) in a smaller size (unless the current TeXFormula will be displayed in the smallest possible size: the script_script style's size) and finally changes the current TeXFormula into the resulting construction.
 TeXFormula TeXFormula.putDelimiterUnder(int delimiter, TeXFormula sub, int kernUnit, float kern)
          Puts the delimiter symbol represented by the given delimiter type constant under the current TeXFormula, puts the given TeXFormula under the delimiter symbol (seperated by an amount of vertical space defined by the given float value and unit) in a smaller size (unless the current TeXFormula will be displayed in the smallest possible size: the "script_script" style's size) and finally changes the current TeXFormula into the resulting construction.