-
Notifications
You must be signed in to change notification settings - Fork 1
titlestmt
hubendubler edited this page Oct 29, 2018
·
5 revisions
The titlestmt element provides info about the movie title. It is the parent of one or more title elements that can provide the title as well as sub-titles in multiple languages.
When the titlestmt only contains a title string without any attributes, the shorthand version is recommended. A single title element with the title string as content replaces the titlestmt (See shorthand usage).
titlestmt = title_shorthand | element titlestmt {
title+
}
fei_element |= titlestmt
fheadcontent |= titlestmt
title = element title {
attribute type { "subtitle" }?,
attribute lang { xsd:string }?,
xsd:string
}
title_shorthand = element title {
xsd:string
}
<titlestmt>
<title>The Lord of the Rings</title>
<title type="subtitle">The Fellowship of the Ring</title>
</titlestmt><titlestmt lang="en">
<title>The Lord of the Rings</title>
<title type="subtitle">The Fellowship of the Ring</title>
</titlestmt><titlestmt>
<title lang="en">RED</title>
<title lang="de">R.E.D.</title>
<title lang="de" type="subtitle">Älter. Härter. Besser.</title>
</titlestmt>Instead of
<titlestmt>
<title>Father and Daughter</title>
</titlestmt>this shorthand variant is recommended:
<title>Father and Daughter</title>The original element was derived from MEI. Visit the MEI Reference element
FEI documentation - First draft 09/2018