Comments Part

Content Type:

application/vnd.openxmlformats-officedocument.presentationml.comments+xml

Root Namespace:

http://schemas.openxmlformats.org/presentationml/2006/main

Source Relationship:

http://schemas.openxmlformats.org/officeDocument/2006/relationships/comments

An instance of this part type contains the comments for a single slide. Each comment is tied to its author via an author-ID. Each comment's index number and author-ID combination are unique.

A package shall contain one Comments part for each slide containing one or more comments, and each of those parts shall be the target of an implicit relationship from its corresponding Slide (§13.3.8) part.

example:
<Relationships xmlns="…">
  <Relationship Id="rId4"
    Type="http://…/comments" 
    Target="../comments/comment2.xml"/>
</Relationships>

The root element for a part of this content type shall be< cmLst >.

example:
<p:cmLst xmlns:p="…" …>
  <p:cm authorId="0" dt="2005-11-13T17:00:22.071" idx="1">
    <p:pos x="4486" y="1342"/>
    <p:text>Comment text goes here.</p:text>
  </p:cm>
  <p:cm authorId="0" dt="2005-11-13T17:00:34.849" idx="2">
    <p:pos x="3607" y="1867"/>
    <p:text>Another comment's text goes here.</p:text>
  </p:cm>
  <p:cm authorId="1" dt="2005-11-15T00:06:46.919" idx="1">
    <p:pos x="1493" y="2927"/>
    <p:text>comment …</p:text>
  </p:cm>
</p:cmLst>

A Comments part shall be located within the package containing the source relationship (expressed syntactically, the @TargetMode attribute of the <Relationship> element shall be Internal).

A Comments part shall not have implicit or explicit relationships to any other part defined by this Standard.