$v:unit-scale
$v:unit-scale — List of known measurement units and their sizes.
Variable:
{http://docbook.org/ns/docbook/variables}unit-scale
Defined in:
modules/units.xsl
Used in:
modules/units.xsl
Used by:
Synopsis
   |<xsl:variable name="v:unit-scale"
   |               as="map(*)">
   |   <xsl:map>
   |      <xsl:map-entry key="'px'" select="1.0"/>
   |      <xsl:map-entry key="'in'" select="$pixels-per-inch"/>
   |      <xsl:map-entry key="'m'" select="$pixels-per-inch div 2.54 * 100.0"/>
   |      <xsl:map-entry key="'cm'" select="$pixels-per-inch div 2.54"/>
   |      <xsl:map-entry key="'mm'" select="$pixels-per-inch div 25.4"/>
   |      <xsl:map-entry key="'pt'" select="$pixels-per-inch div 72.0"/>
   |      <xsl:map-entry key="'pc'" select="$pixels-per-inch div 6.0"/>
   |      <xsl:map-entry key="'em'" select="$pixels-per-inch div 6.0"/>
   |      <xsl:map-entry key="'barleycorn'" select="$pixels-per-inch div 3.0"/>
   |   </xsl:map>
   |</xsl:variable>
Description
The $v:unit-scale map contains a set of
measurement units and their absolute length in terms of pixels (as
computed with $pixels-per-inch).
Recognized units at the time of this writing are shown in Figure 1.1, Recognized units of measure.
| Unit | Size | 
|---|---|
px | 1.0 | 
in |  | 
m |  | 
cm |  | 
mm |  | 
pt |  | 
pc |  | 
em |  | 
barleycorn |  | 
Figure 1.1 Recognized units of measure
See also Section 4.2, Lengths and units.