Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

latexml::font(3pm) [debian man page]

LaTeXML::Font(3pm)					User Contributed Perl Documentation					LaTeXML::Font(3pm)

NAME
"LaTeXML::Font" - representation of fonts, along with the specialization "LaTeXML::MathFont". DESCRIPTION
This module defines Font objects. I'm not completely happy with the arrangement, or maybe just the use of it, so I'm not going to document extensively at this point. "LaTeXML::Font" and "LaTeXML::MathFont" represent fonts (the latter, fonts in math-mode, obviously) in LaTeXML. The attributes are family : serif, sansserif, typewriter, caligraphic, fraktur, script series : medium, bold shape : upright, italic, slanted, smallcaps size : tiny, footnote, small, normal, large, Large, LARGE, huge, Huge color : any named color, default is black They are usually merged against the current font, attempting to mimic the, sometimes counter-intuitive, way that TeX does it, particularly for math "LaTeXML::MathFont" "LaTeXML::MathFont" supports "$font-"specialize($string);> for computing a font reflecting how the specific $string would be printed when $font is active; This (attempts to) handle the curious ways that lower case greek often doesn't get a different font. In particular, it recognizes the following classes of strings: single latin letter, single uppercase greek character, single lowercase greek character, digits, and others. AUTHOR
Bruce Miller <bruce.miller@nist.gov> COPYRIGHT
Public domain software, produced as part of work done by the United States Government & not subject to copyright in the US. perl v5.10.1 2009-06-11 LaTeXML::Font(3pm)

Check Out this Related Man Page

LaTeXML::Number(3pm)					User Contributed Perl Documentation				      LaTeXML::Number(3pm)

NAME
"LaTeXML::Number" - representation of numbers, dimensions, skips and glue. DESCRIPTION
This module defines various dimension and number-like data objects "LaTeXML::Number" represents numbers, "LaTeXML::Float" represents floating-point numbers, "LaTeXML::Dimension" represents dimensions, "LaTeXML::MuDimension" represents math dimensions, "LaTeXML::Glue" represents glue (skips), "LaTeXML::MuGlue" represents math glue, "LaTeXML::Pair" represents pairs of numbers "LaTeXML::Pairlist" represents list of pairs. Common methods The following methods apply to all objects. "@tokens = $object->unlist;" Return a list of the tokens making up this $object. "$string = $object->toString;" Return a string representing $object. "$string = $object->ptValue;" Return a value representing $object without the measurement unit (pt) with limited decimal places. Numerics methods These methods apply to the various numeric objects "$n = $object->valueOf;" Return the value in scaled points (ignoring shrink and stretch, if any). "$n = $object->smaller($other);" Return $object or $other, whichever is smaller "$n = $object->larger($other);" Return $object or $other, whichever is larger "$n = $object->absolute;" Return an object representing the absolute value of the $object. "$n = $object->sign;" Return an integer: -1 for negatives, 0 for 0 and 1 for positives "$n = $object->negate;" Return an object representing the negative of the $object. "$n = $object->add($other);" Return an object representing the sum of $object and $other "$n = $object->subtract($other);" Return an object representing the difference between $object and $other "$n = $object->multiply($n);" Return an object representing the product of $object and $n (a regular number). AUTHOR
Bruce Miller <bruce.miller@nist.gov> COPYRIGHT
Public domain software, produced as part of work done by the United States Government & not subject to copyright in the US. perl v5.10.1 2009-06-11 LaTeXML::Number(3pm)
Man Page