ntra00 / marc2bibframe

Convert marc to BIBFRAME 1.0 - see lcnetdev/marc2bibframe2 for current release
http://www.loc.gov/bibframe/
Other
64 stars 20 forks source link

8XX numbering within series #197

Open kiegel opened 9 years ago

kiegel commented 9 years ago

A series statement has two parts: a series title (or author/title access point) and series numbering. When a bf:Work is created for a series statement of a specific work within a series, the series title should not include the series numbering.

For example:

830 _0 |a Organum. |n 3. Reihe, |p Kammermusik ; |v Nr. 70.

gives:

<http://example.org/99146523440001452work13> a bf:Work ;
    bf:authorizedAccessPoint "Organum. 3. Reihe, Kammermusik ; Nr. 70" ;
    bf:title "Organum. 3. Reihe, Kammermusik ; Nr. 70" .

In this rendering, the numbering is included as part of the series title. However, it is not the case that there are 70 different series works. There is only one work for the series, and this series has 70 parts.

A version like this may be better. Care must still be taken after reconciliation to associate the correct number with each related work in the series.

<http://example.org/99146523440001452work13> a bf:Work ;
    bf:authorizedAccessPoint "Organum. 3. Reihe, Kammermusik ; " ;
    bf:partNumber "Nr. 70." ;
    bf:title "Organum. 3. Reihe, Kammermusik ;" .

(OCLC # 4157133)