-
Notifications
You must be signed in to change notification settings - Fork 61
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
What’s the recommended way to denote a collection? #1356
Comments
Here is in practice what Readium developers decided to map (from EPUB 2 and EPUB 3 to the internal Readium WP Manifest). https://readium.org/architecture/streamer/parser/metadata.html#collections-and-series This is implemented in the Readium Desktop (-> Thorium Reader) and Readium Mobile toolkits |
Thank you, @llemeurfr! So, based on the information you linked to the example would have to be: <dc:title>The Eye of the World</dc:title>
<dc:type id="dc-type">Collection</dc:type>
<meta refines="#dc-type" property="collection-type">series</meta> <!-- Or: "collection" -->
<meta refines="#dc-type" property="belongs-to-collection">The Wheel of Time</meta>
<meta refines="#dc-type" property="file-as">Wheel of Time, The</meta>
<meta refines="#dc-type" property="dcterms:identifier">urn:isbn:1234567890</meta> <!-- Duplicate of the <dc:identifier> element? -->
<meta refines="#dc-type" property="group-position">Book 1</meta> <!-- Is this a free text value? --> Is this correct? |
@jenstroeger The doc was written following the examples in the EPUB Packages 3.2 spec. So as an example:
I’m not sure why you have a Notes:
|
Thank you @llemeurfr and @JayPanoz, figured it out and it’s all working now 👍 |
Suppose I have a book “The Eye of the World” which belongs to the collection “The Wheel of Time”. How would I express the collection/series in a single book’s metadata, perhaps similar to the ONIX codelist 148?
The
<dc:type>
doesn’t provide a “collection” or some such in its type registry. If it did, I’d probably refine it like so:It looks like #326 is a relevant discussion and two years old, though it doesn’t seem to come to a definite conclusion other than @jcsalomon’s recommendation?
The text was updated successfully, but these errors were encountered: