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

Packages that use TeXFormula
be.ugent.caagt.jmathtex   
be.ugent.caagt.jmathtex.mathml   
 

Uses of TeXFormula in be.ugent.caagt.jmathtex
 

Methods in be.ugent.caagt.jmathtex that return TeXFormula
 TeXFormula TeXFormula.add(java.lang.String s)
          Parses the given string and inserts the resulting formula at the end of the current TeXFormula.
 TeXFormula TeXFormula.add(TeXFormula f)
          Inserts the given TeXFormula at the end of the current TeXFormula.
 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.addAcc(TeXFormula base, TeXFormula accent)
          Puts the given accent TeXFormula (that must represent a single accent symbol!) above the given base 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.addFraction(java.lang.String num, java.lang.String denom, boolean rule)
          Parses the given strings into TeXFormula's that will represent the numerator (num) and the denominator (denom) of a fraction, draws a line between them depending on "rule" and inserts the result at the end of the current TeXFormula.
 TeXFormula TeXFormula.addFraction(java.lang.String num, java.lang.String denom, boolean rule, int numAlign, int denomAlign)
          Parses the given strings into TeXFormula's that will represent the numerator (num) and denominator (denom) of a fraction, draws a line between them depending on "rule", aligns the numerator and denominator in comparison with each other (indicated by numAlign and denomAlign) and inserts the result at the end of the current TeXFormula.
 TeXFormula TeXFormula.addFraction(java.lang.String num, TeXFormula denom, boolean rule)
          Parses the given string into a TeXFormula that will represent the numerator of a fraction, uses the given TeXFormula as the denominator of this fraction, draws a line between them depending on "rule" and inserts the result at the end of the current TeXFormula.
 TeXFormula TeXFormula.addFraction(TeXFormula num, java.lang.String denom, boolean rule)
          Parses the given string into a TeXFormula that will represent the denominator of a fraction, uses the given TeXFormula as the numerator of this fraction, draws a line between them depending on "rule" and inserts the result at the end of the current TeXFormula.
 TeXFormula TeXFormula.addFraction(TeXFormula num, TeXFormula denom, boolean rule)
          Uses the given TeXFormula's as the numerator (num) and denominator (denom) of a fraction, draws a line between them depending on "rule" and inserts the result at the end of the current TeXFormula.
 TeXFormula TeXFormula.addFraction(TeXFormula num, TeXFormula denom, boolean rule, int numAlign, int denomAlign)
          Uses the given TeXFormula's as the numerator (num) and denominator (denom) of a fraction, draws a line between them depending on "rule", aligns the numerator and denominator in comparison with each other (indicated by numAlign and denomAlign) and inserts the result at the end of the current TeXFormula.
 TeXFormula TeXFormula.addNthRoot(java.lang.String base, java.lang.String nthRoot)
          Parses the given strings into TeXFormula's, puts them under a root sign (base) and in the upper left corner over this root sign (nthRoot) and inserts the result at the end of the current TeXFormula.
 TeXFormula TeXFormula.addNthRoot(java.lang.String base, TeXFormula nthRoot)
          Parses the given string into a TeXFormula, puts it under a root sign, puts the given TeXFormula in the upper left corner over this root sign and inserts the result at the end of the current TeXFormula.
 TeXFormula TeXFormula.addNthRoot(TeXFormula base, java.lang.String nthRoot)
          Parses the given string into a TeXFormula, puts it in the upper left corner over the root sign, puts the given TeXFormula under this root sign and inserts the result at the end of the current TeXFormula.
 TeXFormula TeXFormula.addNthRoot(TeXFormula base, TeXFormula nthRoot)
          Puts the given TeXFormula's under a root sign (base) and in the upper left corner over this root sign (nthRoot) and inserts the result at the end of the current TeXFormula.
 TeXFormula TeXFormula.addOp(java.lang.String op, java.lang.String low, java.lang.String up)
          Parses the given strings into TeXFormula's that will represent a "big operator" (op), it's lower (low) and upper (up) bound, and inserts the result at the end of the current TeXFormula.
 TeXFormula TeXFormula.addOp(java.lang.String op, java.lang.String low, java.lang.String up, boolean lim)
          Parses the given strings into TeXFormula's that will represent a "big operator" (op), it's lower (low) and upper (up) bound, and inserts the result at the end of the current TeXFormula.
 TeXFormula TeXFormula.addOp(TeXFormula op, TeXFormula low, TeXFormula up)
          Uses the given TeXFormula's as a "big operator" (op), it's lower (low) and upper (up) bound, and inserts the result at the end of the current TeXFormula.
 TeXFormula TeXFormula.addOp(TeXFormula op, TeXFormula low, TeXFormula up, boolean lim)
          Uses the given TeXFormula's as a "big operator" (op), it's lower (low) and upper (up) bound, and inserts the result at the end of the current TeXFormula.
 TeXFormula TeXFormula.addPhantom(java.lang.String phantom)
          Parses the given string into a phantom TeXFormula and inserts the result at the end of the current TeXFormula.
 TeXFormula TeXFormula.addPhantom(java.lang.String phantom, boolean width, boolean height, boolean depth)
          Parses the given string into a phantom TeXFormula and inserts the result at the end of the current TeXFormula.
 TeXFormula TeXFormula.addPhantom(TeXFormula phantom)
          Inserts the given TeXFormula as a phantom TeXFormula at the end of the current TeXFormula.
 TeXFormula TeXFormula.addPhantom(TeXFormula phantom, boolean width, boolean height, boolean depth)
          Inserts the given TeXFormula as a phantom TeXFormula at the end of the current TeXFormula.
 TeXFormula TeXFormula.addSqrt(java.lang.String base)
          Parses the given string into a TeXFormula that will be displayed under a root sign and inserts the result at the end of the current TeXFormula.
 TeXFormula TeXFormula.addSqrt(TeXFormula base)
          Displays the given TeXFormula under a root sign and inserts the result at the end of the current TeXFormula.
 TeXFormula TeXFormula.addStrut(int unit, float width, float height, float depth)
          Inserts a strut box (whitespace) with the given width, height and depth (in the given unit) at the end of the current TeXFormula.
 TeXFormula TeXFormula.addStrut(int widthUnit, float width, int heightUnit, float height, int depthUnit, float depth)
          Inserts a strut box (whitespace) with the given width (in widthUnits), height (in heightUnits) and depth (in depthUnits) 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.centerOnAxis()
          Centers the current TeXformula vertically on the axis (defined by the parameter "axisheight" in the resource "DefaultTeXFont.xml".
 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.fraction(java.lang.String s, boolean rule)
          Uses the current TeXFormula as the numerator of a fraction, parses the given string into a TeXFormula that will represent the denominator of the fraction, draws a line between them depending on "rule" and changes the current TeXFormula into this resulting fraction.
 TeXFormula TeXFormula.fraction(java.lang.String s, boolean rule, int numAlign, int denomAlign)
          Uses the current TeXFormula as the numerator of a fraction, parses the given string into a TeXFormula that will represent the denominator of the fraction, possibly draws a line between them depending on "rule", aligns the numerator and denominator in comparison with each other (indicated by numAlign and denomAlign) and changes the current TeXFormula into this resulting fraction.
 TeXFormula TeXFormula.fraction(TeXFormula f, boolean rule)
          Uses the current TeXFormula as the numerator of a fraction, the given TeXFormula as the denominator of the fraction, draws a line between them depending on "rule" and changes the current TeXFormula into this resulting fraction.
 TeXFormula TeXFormula.fraction(TeXFormula f, boolean rule, int numAlign, int denomAlign)
          Uses the current TeXFormula as the numerator of a fraction, the given TeXFormula as the denominator of the fraction, draws a line between them depending on "rule", aligns the numerator and denominator in comparison with each other (indicated by numAlign and denomAlign) and changes the current TeXFormula into this resulting fraction.
 TeXFormula TeXFormula.fraction(TeXFormula f, float defaultFactor, int numAlign, int denomAlign)
          Uses the current TeXFormula as the numerator of a fraction, the given TeXFormula as the denominator of the fraction, draws a line between them with a thickness of "defaultFactor" times the default rule thickness, aligns the numerator and denominator in comparison with each other (indicated by numAlign and denomAlign) and changes the current TeXFormula into this resulting fraction.
 TeXFormula TeXFormula.fraction(TeXFormula f, int unit, float thickness)
          Uses the current TeXFormula as the numerator of a fraction, the given TeXFormula as the denominator of the fraction, draws a line between them with the given thickness (in the given unit) and changes the current TeXFormula into this resulting fraction.
 TeXFormula TeXFormula.fraction(TeXFormula f, int unit, float thickness, int numAlign, int denomAlign)
          Uses the current TeXFormula as the numerator of a fraction, the given TeXFormula as the denominator of the fraction, draws a line between them depending on "rule", aligns the numerator and denominator in comparison with each other (indicated by numAlign and denomAlign) and changes the current TeXFormula into this resulting fraction.
 TeXFormula TeXFormula.fractionInvert(java.lang.String s, boolean rule)
          Uses the current TeXFormula as the denominator of a fraction, parses the given string into a TeXFormula that will represent the numerator of the fraction, draws a line between them depending on "rule" and changes the current TeXFormula into this resulting fraction.
 TeXFormula TeXFormula.fractionInvert(java.lang.String s, boolean rule, int numAlign, int denomAlign)
          Uses the current TeXFormula as the denominator of a fraction, parses the given string into a TeXFormula that will represent the numerator of the fraction, draws a line between them depending on "rule", aligns the numerator and denominator in comparison with each other (indicated by numAlign and denomAlign) and changes the current TeXFormula into this resulting fraction.
 TeXFormula TeXFormula.fractionInvert(TeXFormula f, boolean rule)
          Uses the current TeXFormula as the denominator of a fraction, the given TeXFormula as the numerator of the fraction, draws a line between them depending on "rule" and changes the current TeXFormula into this resulting fraction.
 TeXFormula TeXFormula.fractionInvert(TeXFormula f, boolean rule, int numAlign, int denomAlign)
          Uses the current TeXFormula as the denominator of a fraction, the given TeXFormula as the numerator of the fraction, draws a line between them depending on "rule", aligns the numerator and denominator in comparison with each other (indicated by numAlign and denomAlign) and changes the current TeXFormula into this resulting fraction.
static TeXFormula TeXFormula.get(java.lang.String name)
          Get a predefined TeXFormula.
 TeXFormula TeXFormula.makePhantom()
          Changes this TeXFormula into a phantom TeXFormula.
 TeXFormula TeXFormula.makePhantom(boolean width, boolean height, boolean depth)
          Changes this TeXFormula into a phantom TeXFormula.
 TeXFormula TeXFormula.nthRoot(java.lang.String nthRoot)
          Parses the given string into a TeXFormula, puts it in the upper left corner over a root sign (nthRoot), puts the current TeXFormula under this root sign and changes the current TeXFormula into this resulting root construction.
 TeXFormula TeXFormula.nthRoot(TeXFormula nthRoot)
          Puts the given TeXFormula in the upper left corner over a root sign, puts the current TeXFormula under this root sign and changes the current TeXFormula into this resulting root construction.
 TeXFormula TeXFormula.overline()
          Puts a line over the current TeXFormula and changes the current TeXFormula into the resulting construction.
 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.
 TeXFormula TeXFormula.putOver(java.lang.String over, int overUnit, float overSpace, boolean overScriptSize)
          Parses the given string into a TeXFormula that will be put above the current TeXFormula, in a smaller size depending on "overScriptSize" and seperated by a vertical space of size "overSpace" in "overUnit" and changes the current TeXFormula into the resulting construction.
 TeXFormula TeXFormula.putOver(TeXFormula over, int overUnit, float overSpace, boolean overScriptSize)
          Puts the given TeXFormula above the current TeXFormula, in a smaller size depending on "overScriptSize" and seperated by a vertical space of size "overSpace" in "overUnit" and changes the current TeXFormula into the resulting construction.
 TeXFormula TeXFormula.putUnder(java.lang.String under, int underUnit, float underSpace, boolean underScriptSize)
          Parses the given string into a TeXFormula that will be put under the current TeXFormula, in a smaller size depending on "underScriptSize" and seperated by a vertical space of size "underSpace" in "underUnit" and changes the current TeXFormula into the resulting construction.
 TeXFormula TeXFormula.putUnder(TeXFormula under, int underUnit, float underSpace, boolean underScriptSize)
          Puts the given TeXFormula under the current TeXFormula, in a smaller size depending on "underScriptSize" and seperated by a vertical space of size "underSpace" in "underUnit" and changes the current TeXFormula into the resulting construction.
 TeXFormula TeXFormula.putUnderAndOver(java.lang.String under, int underUnit, float underSpace, boolean underScriptSize, java.lang.String over, int overUnit, float overSpace, boolean overScriptSize)
          Parses the given string "under" into a TeXFormula that will be put under the current TeXFormula, in a smaller size depending on "underScriptSize" and seperated by a vertical space of size "underSpace" in "underUnit", parses the given string "over" into a TeXFormula that will be put above the current TeXFormula, in a smaller size depending on "overScriptSize" and seperated by a vertical space of size "overSpace" in "overUnit" and finally changes the current TeXFormula into the resulting construction.
 TeXFormula TeXFormula.putUnderAndOver(TeXFormula under, int underUnit, float underSpace, boolean underScriptSize, TeXFormula over, int overUnit, float overSpace, boolean overScriptSize)
          Puts the given TeXFormula "under" under the current TeXFormula, in a smaller size depending on "underScriptSize" and seperated by a vertical space of size "underSpace" in "underUnit", puts the given TeXFormula "over" above the current TeXFormula, in a smaller size depending on "overScriptSize" and seperated by a vertical space of size "overSpace" in "overUnit" and finally changes the current TeXFormula into the resulting construction.
 TeXFormula TeXFormula.setBackground(java.awt.Color c)
          Changes the background color of the current TeXFormula into the given color.
 TeXFormula TeXFormula.setColor(java.awt.Color c)
          Changes the (foreground) color of the current TeXFormula into the given color.
 TeXFormula TeXFormula.setFixedTypes(int leftType, int rightType)
          Sets a fixed left and right type of the current TeXFormula.
 TeXFormula TeXFormula.setScripts(java.lang.String sub, java.lang.String sup)
          Parses the given strings into TeXFormula's and attaches them together to the current TeXFormula as a subscript (sub) and a superscript (sup).
 TeXFormula TeXFormula.setScripts(java.lang.String sub, TeXFormula sup)
          Parses the given string into a TeXFormula's and attaches it to the current TeXFormula as a subscript together with the given TeXFormula (as a superscript).
 TeXFormula TeXFormula.setScripts(TeXFormula sub, java.lang.String sup)
          Parses the given string into a TeXFormula's and attaches it to the current TeXFormula as a superscript together with the given TeXFormula (as a subscript).
 TeXFormula TeXFormula.setScripts(TeXFormula sub, TeXFormula sup)
          Attaches the given TeXFormula's together to the current TeXFormula as a subscript (sub) and a superscript (sup).
 TeXFormula TeXFormula.setSubscript(java.lang.String sub)
          Parses the given string into a TeXFormula and attaches it to the current TeXFormula as a subscript.
 TeXFormula TeXFormula.setSubscript(TeXFormula sub)
          Attaches the given TeXFormula to the current TeXFormula as a subscript.
 TeXFormula TeXFormula.setSuperscript(java.lang.String sup)
          Parses the given string into a TeXFormula and attaches it to the current TeXFormula as a superscript.
 TeXFormula TeXFormula.setSuperscript(TeXFormula sup)
          Attaches the given TeXFormula to the current TeXFormula as a superscript.
 TeXFormula TeXFormula.sqrt()
          Puts the current TeXFormula under a root sign and changes the current TeXFormula into the resulting square root construction.
 TeXFormula TeXFormula.underline()
          Puts a line under the current TeXFormula and changes the current TeXFormula into the resulting construction.
 

Methods in be.ugent.caagt.jmathtex with parameters of type TeXFormula
 TeXFormula TeXFormula.add(TeXFormula f)
          Inserts the given TeXFormula 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.addAcc(TeXFormula base, TeXFormula accent)
          Puts the given accent TeXFormula (that must represent a single accent symbol!) above the given base TeXFormula 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.addFraction(java.lang.String num, TeXFormula denom, boolean rule)
          Parses the given string into a TeXFormula that will represent the numerator of a fraction, uses the given TeXFormula as the denominator of this fraction, draws a line between them depending on "rule" and inserts the result at the end of the current TeXFormula.
 TeXFormula TeXFormula.addFraction(TeXFormula num, java.lang.String denom, boolean rule)
          Parses the given string into a TeXFormula that will represent the denominator of a fraction, uses the given TeXFormula as the numerator of this fraction, draws a line between them depending on "rule" and inserts the result at the end of the current TeXFormula.
 TeXFormula TeXFormula.addFraction(TeXFormula num, TeXFormula denom, boolean rule)
          Uses the given TeXFormula's as the numerator (num) and denominator (denom) of a fraction, draws a line between them depending on "rule" and inserts the result at the end of the current TeXFormula.
 TeXFormula TeXFormula.addFraction(TeXFormula num, TeXFormula denom, boolean rule, int numAlign, int denomAlign)
          Uses the given TeXFormula's as the numerator (num) and denominator (denom) of a fraction, draws a line between them depending on "rule", aligns the numerator and denominator in comparison with each other (indicated by numAlign and denomAlign) and inserts the result at the end of the current TeXFormula.
 TeXFormula TeXFormula.addNthRoot(java.lang.String base, TeXFormula nthRoot)
          Parses the given string into a TeXFormula, puts it under a root sign, puts the given TeXFormula in the upper left corner over this root sign and inserts the result at the end of the current TeXFormula.
 TeXFormula TeXFormula.addNthRoot(TeXFormula base, java.lang.String nthRoot)
          Parses the given string into a TeXFormula, puts it in the upper left corner over the root sign, puts the given TeXFormula under this root sign and inserts the result at the end of the current TeXFormula.
 TeXFormula TeXFormula.addNthRoot(TeXFormula base, TeXFormula nthRoot)
          Puts the given TeXFormula's under a root sign (base) and in the upper left corner over this root sign (nthRoot) and inserts the result at the end of the current TeXFormula.
 TeXFormula TeXFormula.addOp(TeXFormula op, TeXFormula low, TeXFormula up)
          Uses the given TeXFormula's as a "big operator" (op), it's lower (low) and upper (up) bound, and inserts the result at the end of the current TeXFormula.
 TeXFormula TeXFormula.addOp(TeXFormula op, TeXFormula low, TeXFormula up, boolean lim)
          Uses the given TeXFormula's as a "big operator" (op), it's lower (low) and upper (up) bound, and inserts the result at the end of the current TeXFormula.
 TeXFormula TeXFormula.addPhantom(TeXFormula phantom)
          Inserts the given TeXFormula as a phantom TeXFormula at the end of the current TeXFormula.
 TeXFormula TeXFormula.addPhantom(TeXFormula phantom, boolean width, boolean height, boolean depth)
          Inserts the given TeXFormula as a phantom TeXFormula at the end of the current TeXFormula.
 TeXFormula TeXFormula.addSqrt(TeXFormula base)
          Displays the given TeXFormula under a root sign and inserts the result at the end of the current TeXFormula.
 TeXFormula TeXFormula.fraction(TeXFormula f, boolean rule)
          Uses the current TeXFormula as the numerator of a fraction, the given TeXFormula as the denominator of the fraction, draws a line between them depending on "rule" and changes the current TeXFormula into this resulting fraction.
 TeXFormula TeXFormula.fraction(TeXFormula f, boolean rule, int numAlign, int denomAlign)
          Uses the current TeXFormula as the numerator of a fraction, the given TeXFormula as the denominator of the fraction, draws a line between them depending on "rule", aligns the numerator and denominator in comparison with each other (indicated by numAlign and denomAlign) and changes the current TeXFormula into this resulting fraction.
 TeXFormula TeXFormula.fraction(TeXFormula f, float defaultFactor, int numAlign, int denomAlign)
          Uses the current TeXFormula as the numerator of a fraction, the given TeXFormula as the denominator of the fraction, draws a line between them with a thickness of "defaultFactor" times the default rule thickness, aligns the numerator and denominator in comparison with each other (indicated by numAlign and denomAlign) and changes the current TeXFormula into this resulting fraction.
 TeXFormula TeXFormula.fraction(TeXFormula f, int unit, float thickness)
          Uses the current TeXFormula as the numerator of a fraction, the given TeXFormula as the denominator of the fraction, draws a line between them with the given thickness (in the given unit) and changes the current TeXFormula into this resulting fraction.
 TeXFormula TeXFormula.fraction(TeXFormula f, int unit, float thickness, int numAlign, int denomAlign)
          Uses the current TeXFormula as the numerator of a fraction, the given TeXFormula as the denominator of the fraction, draws a line between them depending on "rule", aligns the numerator and denominator in comparison with each other (indicated by numAlign and denomAlign) and changes the current TeXFormula into this resulting fraction.
 TeXFormula TeXFormula.fractionInvert(TeXFormula f, boolean rule)
          Uses the current TeXFormula as the denominator of a fraction, the given TeXFormula as the numerator of the fraction, draws a line between them depending on "rule" and changes the current TeXFormula into this resulting fraction.
 TeXFormula TeXFormula.fractionInvert(TeXFormula f, boolean rule, int numAlign, int denomAlign)
          Uses the current TeXFormula as the denominator of a fraction, the given TeXFormula as the numerator of the fraction, draws a line between them depending on "rule", aligns the numerator and denominator in comparison with each other (indicated by numAlign and denomAlign) and changes the current TeXFormula into this resulting fraction.
 TeXFormula TeXFormula.nthRoot(TeXFormula nthRoot)
          Puts the given TeXFormula in the upper left corner over a root sign, puts the current TeXFormula under this root sign and changes the current TeXFormula into this resulting root 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, 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.
 TeXFormula TeXFormula.putOver(TeXFormula over, int overUnit, float overSpace, boolean overScriptSize)
          Puts the given TeXFormula above the current TeXFormula, in a smaller size depending on "overScriptSize" and seperated by a vertical space of size "overSpace" in "overUnit" and changes the current TeXFormula into the resulting construction.
 TeXFormula TeXFormula.putUnder(TeXFormula under, int underUnit, float underSpace, boolean underScriptSize)
          Puts the given TeXFormula under the current TeXFormula, in a smaller size depending on "underScriptSize" and seperated by a vertical space of size "underSpace" in "underUnit" and changes the current TeXFormula into the resulting construction.
 TeXFormula TeXFormula.putUnderAndOver(TeXFormula under, int underUnit, float underSpace, boolean underScriptSize, TeXFormula over, int overUnit, float overSpace, boolean overScriptSize)
          Puts the given TeXFormula "under" under the current TeXFormula, in a smaller size depending on "underScriptSize" and seperated by a vertical space of size "underSpace" in "underUnit", puts the given TeXFormula "over" above the current TeXFormula, in a smaller size depending on "overScriptSize" and seperated by a vertical space of size "overSpace" in "overUnit" and finally changes the current TeXFormula into the resulting construction.
 TeXFormula TeXFormula.setScripts(java.lang.String sub, TeXFormula sup)
          Parses the given string into a TeXFormula's and attaches it to the current TeXFormula as a subscript together with the given TeXFormula (as a superscript).
 TeXFormula TeXFormula.setScripts(TeXFormula sub, java.lang.String sup)
          Parses the given string into a TeXFormula's and attaches it to the current TeXFormula as a superscript together with the given TeXFormula (as a subscript).
 TeXFormula TeXFormula.setScripts(TeXFormula sub, TeXFormula sup)
          Attaches the given TeXFormula's together to the current TeXFormula as a subscript (sub) and a superscript (sup).
 TeXFormula TeXFormula.setSubscript(TeXFormula sub)
          Attaches the given TeXFormula to the current TeXFormula as a subscript.
 TeXFormula TeXFormula.setSuperscript(TeXFormula sup)
          Attaches the given TeXFormula to the current TeXFormula as a superscript.
 

Constructors in be.ugent.caagt.jmathtex with parameters of type TeXFormula
TeXFormula(TeXFormula f)
          Creates a new TeXFormula that is a copy of the given TeXFormula.
 

Constructor parameters in be.ugent.caagt.jmathtex with type arguments of type TeXFormula
TeXFormula(java.util.List<TeXFormula> l)
          Creates a new TeXFormula from a list of TeXFormula objects.
 

Uses of TeXFormula in be.ugent.caagt.jmathtex.mathml
 

Methods in be.ugent.caagt.jmathtex.mathml that return TeXFormula
protected static TeXFormula MathMLParser.createSpace(java.lang.String[] attr)
           
static TeXFormula MathMLParser.parse(java.io.File file, boolean validate)
          Parses a MathML input file identified by a File.
static TeXFormula MathMLParser.parse(java.io.InputStream stream, boolean validate)
          Parses MathML input from the specified InputStream.
static TeXFormula MathMLParser.parse(java.io.InputStream stream, java.lang.String uri, boolean validate)
          Parses MathML input from the specified InputStream and URI base.
static TeXFormula MathMLParser.parse(java.io.Reader reader, boolean validate)
          Parses MathML input from the specified Reader.
static TeXFormula MathMLParser.parse(java.io.Reader reader, java.lang.String uri, boolean validate)
          Parses MathML input from the specified Reader and URI base.
static TeXFormula MathMLParser.parse(java.lang.String uri, boolean validate)
          Parses a MathML input file identified by the specified URI.
static TeXFormula MathMLParser.parse(java.net.URL url, boolean validate)
          Parses a MathML input file identified by the specified URL.
 

Methods in be.ugent.caagt.jmathtex.mathml that return types with arguments of type TeXFormula
protected static java.util.List<TeXFormula> MathMLParser.getFormulaList(java.util.List l, be.ugent.caagt.jmathtex.mathml.Environment env)