Skip to content

<header>

The <header> element contains score metadata: what the piece is called, who is behind it, what tuning it is written against, and what terms it is published under.

<thai-score>

In order:

  1. <title> - exactly one
  2. <composer> - zero or more, one per composer
  3. <lyricist> - zero or more, one per lyricist
  4. <arranger> - zero or more, one per arranger
  5. <tuning> - zero or one
  6. <license> - zero or one

Only <title> is required. Much of the repertoire is traditional, so a score with nobody to credit is normal rather than incomplete.

<header>
<title>Lao Duang Duen</title>
<composer>Traditional</composer>
<tuning reference="c-major" />
</header>
<header>
<title>Example Song</title>
<composer>Example Composer</composer>
<lyricist>Example Lyricist</lyricist>
<arranger>Example Arranger</arranger>
<tuning reference="khrueang-sai" />
<license>CC BY-SA 4.0</license>
</header>