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

Packages that use InvalidUnitException
be.ugent.caagt.jmathtex   
 

Uses of InvalidUnitException in be.ugent.caagt.jmathtex
 

Methods in be.ugent.caagt.jmathtex that throw InvalidUnitException
 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.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.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, 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.