<notes>¶
| Appears in | Frequency | 
|---|---|
| Zero or one | 
The element <notes> is used to identify the editorial notes related to the article, the issue the article is publisher, translations notes, etc.
Examples:
Example of general editorial notes:¶
...
<front>
  <journal-meta> ... </journal-meta>
  <article-meta> ...  </article-meta>
  ...
  <notes>
    <sec>
      <title>...</title>
      <p>...</p>
    </sec>
  </notes>
</front>
...
Example of general editorial notes without a title:¶
...
<front>
  <journal-meta> ... </journal-meta>
  <article-meta> ...  </article-meta>
  ...
  <notes>
    <sec>
      <p>General editorial note...</p>
    </sec>
  </notes>
</front>
...
Example of editorial notes for issue and article:¶
...
<front>
  <journal-meta> ... </journal-meta>
  <article-meta> ...  </article-meta>
  <notes>
    <sec sec-type="issue-note">
      <title>Issue Editorial Note</title>
      <p>Issue editorial note....</p>
    </sec>
    <sec sec-type="article-note">
      <title>Article Editorial Note</title>
      <p>Article editorial note...</p>
    </sec>
  </notes>
</front>
...