22.1.2.9 baseJc

This element specifies the justification of the matrix. Text outside of the matrix can be aligned with the bottom, top, or center of a matrix object. If this element is omitted, the matrix assumes center justification. In other words, whether the element is absent or present without the val attribute, the default of the val attribute is center.

This matrix has top baseJc: 1 (3 5

The XML below represents the matrix with top baseJC:

<m:d>
  <m:dPr>
    <m:shp m:val="match"/>
  </m:dPr>
  <m:e>
    <m:m>
      <m:mPr>
        <m:baseJc m:val="top"/>
        <m:mcs>
          <m:mc>
            <m:mcPr>
              <m:count
              <m:mcJc m:val="center"/>
            </m:mcPr>
          </m:mc>
        </m:mcs>
      </m:mPr>
      <m:mr>
        <m:e>
          <m:r>
            <m:rPr>
              <m:scr m:val="roman"/>
              <m:sty m:val="p"/>
            </m:rPr>
            <m:t>1</m:t>
          </m:r>
        </m:e>
        <m:e>
          <m:r>
            <m:rPr>
              <m:scr m:val="roman"/>
              <m:sty m:val="p"/>
            </m:rPr>
            <m:t>2</m:t>
          </m:r>
        </m:e>
      </m:mr>
      <m:mr>
        <m:e>
          <m:r>
            <m:rPr>
              <m:scr m:val="roman"/>
              <m:sty m:val="p"/>
            </m:rPr>
            <m:t>3</m:t>
          </m:r>
        </m:e>
        <m:e>
          <m:r>
            <m:rPr>
              <m:scr m:val="roman"/>
              <m:sty m:val="p"/>
            </m:rPr>
            <m:t>4</m:t>
          </m:r>
        </m:e>
      </m:mr>
      <m:mr>
        <m:e>
          <m:r>
            <m:rPr>
              <m:scr m:val="roman"/>
              <m:sty m:val="p"/>
            </m:rPr>
            <m:t>5</m:t>
          </m:r>
        </m:e>
        <m:e>
          <m:r>
            <m:rPr>
              <m:scr m:val="roman"/>
              <m:sty m:val="p"/>
            </m:rPr>
            <m:t>6</m:t>
          </m:r>
        </m:e>
      </m:mr>
    </m:m>
  </m:e>
</m:d>

Because the matrix base justification is top, the top row of the matrix is lined up with the baseline of the rest of the line.

end example]

Attributes

val (Value)

Specifies the vertical justification parent element respect to surrounding text. Possible values are top, bottom, and center. [Example: The following examples illustrate baseJc on the matrix object m.

The possible values for this attribute are defined by the ST_YAlign simple type (22.9.2.20).

[Note: The W3C XML Schema definition of this element’s content model (CT_YAlign) is located in A.6.1. end note]

Last updated on