Skip to content

Commit

Permalink
allow multiple titles on a series: #55
Browse files Browse the repository at this point in the history
  • Loading branch information
opoudjis committed Jul 22, 2024
1 parent 0245e2b commit 92e00b8
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion grammars/biblio.rnc
Original file line number Diff line number Diff line change
Expand Up @@ -415,7 +415,7 @@ extent = element extent {
series = element series {
attribute type { SeriesType }?,
formattedref?,
btitle, bplace?, seriesorganization?,
btitle+, bplace?, seriesorganization?,
abbreviation?,
seriesfrom?, seriesto?,
seriesnumber?, seriespartnumber?, seriesrun?
Expand Down
4 changes: 3 additions & 1 deletion grammars/biblio.rng
Original file line number Diff line number Diff line change
Expand Up @@ -1204,7 +1204,9 @@
<optional>
<ref name="formattedref"/>
</optional>
<ref name="btitle"/>
<oneOrMore>
<ref name="btitle"/>
</oneOrMore>
<optional>
<ref name="bplace"/>
</optional>
Expand Down
Binary file modified images/RelBib_BibliographicItem.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/RelBib_Series.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion models/SeriesType.lutaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class SeriesType {
The type of series description expressed in this container.
}
}
+title: TypedTitleString[0..1] {
+title: TypedTitleString[0..*] {
definition {
The title of the series.
}
Expand Down

0 comments on commit 92e00b8

Please sign in to comment.