L.6.1.5 Delimiters

Delimiters consist of opening and closing delimiting characters (such as parentheses, braces, brackets, and vertical bars), and an element contained inside. If two or more elements are contained within delimiters, separating characters are used.

Delimiters can grow to the height of the object they contain. For example, parentheses could grow quite

image

tall to

enclose this multi-row matrix:

. Or, at ) 1

image

the user’s discretion, they can maintain their height regardless of the content inside, as in

Delimiters have a single child object, the base argument, which can be used multiple times in the object to signify that a separator character is to be used. For example:

image

If the separator character is not specified in XML, the vertical bar is used.

Example:

Example XML:

<m:oMathPara>
  <m:oMath>
    <m:d>
      <m:e>
        <m:sSup>
          <m:e>
            <m:r>
              <m:t>x</m:t>
            </m:r>
          </m:e>
          <m:sup>
            <m:r>
              <m:t>2</m:t>
            </m:r>
          </m:sup>
        </m:sSup>
      </m:e>
      <m:e>
        <m:sSup>
          <m:e>
            <m:r>
              <m:t>y</m:t>
            </m:r>
          </m:e>
          <m:sup>
            <m:r>
              <m:t>2</m:t>
            </m:r>
          </m:sup>
        </m:sSup>
      </m:e>
    </m:d>
  </m:oMath>
</m:oMathPara>
Last updated on