TEIC / TEI

The Text Encoding Initiative Guidelines
https://www.tei-c.org
Other
269 stars 88 forks source link

Add att.canonical to <bibl> #2392

Open StefanDumont opened 1 year ago

StefanDumont commented 1 year ago

Since I recently ran (again) into this issue I would like to raise the feature request here: We use <bibl> in our texts for encoding bibliographic references (as stated in the Guidelines). The bibliography is hold in an additional TEI file or in Zotero. So we have to link with an URL or ID to an entry in the bibliography. In the case of persName, placeName, orgName, name, term and rs we can use att.canonical which is very handy (@key for local IDs, @ref for URIs). Unfortunately bibl isn't member of att.canonical, so we have to use e.g. @corresp for that purpose. That doesn't seem consistent to me. Especially in processing I notice this often, because we have to treat "bibl-links" extra.

The issue was already discussed multiple times on the TEI-L mailing list, but I didn't see that there have been an issue for it on GitHub. Furthermore, my impression from the TEI-L is that many would support and welcome this enhancement.

Some discussions on mailing list:

skurzinz commented 1 year ago

I completely agree with the assessment of @StefanDumont, with the same being true for other members of model.bibLike.

Working on #2427 (which adds <persName> to the list above through the not perfectly named att.personal) I came across all the (person|place|object|…)Like models which could also be described as (named) entities. Wouldn’t it make sense to sit down and talk about creating a meta class for all these things that can be part of any ography?

IMHO the only thing that’s conceptually different for "works" is that bibl and the bibLikes refer to abstract bibliographical metadata of a print run/edition and not a concrete manifestation/copy (this one object type="book" that Herman Melville wrote his marginalia in), which may complicate things also for the use cases @StefanDumont may be working with, but this is not a showstopper for adding @key/@ref.

sydb commented 10 months ago

FWIW, I think adding <bibl> and its buddies to att.canonical is a good idea. May need to reinforce that the reference should be to a fuller or canonical reference, not to the bibliographic item itself. A possible example from a web page on citation.

<prefixDef ident="b" matchPattern="(\i\c+)" replacementPattern="./bibliography.tei#$1"/>
<!-- ... -->
<p>Referencing is an essential academic skill <bibl type="shrt" ref="b:pears1">Pears and Shields, 2019</bibl>.</p>
<!-- ... in the file ./bibliography.tei: -->
<biblStruct xml:id="pears1">
  <monogr>
    <author>
      <persName>Pears, R.</persName>
    </author>
    <author>
      <persName>Shields, G.</persName>
    </author>
    <title level="m">Cite them right: The essential referencing guide.</title>
    <edition>11th edn.</edition>
    <imprint>
      <date when="2019"/>
      <pubPlace>London</pubPlace>
      <publisher>MacMillan</publisher>
    </imprint>
  </monogr>
</biblStruct>
lb42 commented 10 months ago

You will then need to explain why this is or is not preferable to <ref target='b:pears1'>pears and shields, 2019</ref>

hcayless commented 10 months ago

I'm persuaded that (for example) linking a bibliography to some sort of master bibliography or catalog is a perfectly reasonable thing to want to do. But I agree with @lb42 that we will absolutely need some discussion of when you should use <bibl> vs. <ref>. My sense is that @ref on <bibl> is a little bit niche, and that usually you want <ref>. That needs to be explained.

ebeshero commented 10 months ago

Council F2F at Paderborn: We agree to add <bibl> to att.canonical, but we need to revise examples and discuss the situation of canonical referencing. We are persuaded that it may be more appropriate to use att.canonical on inline uses of <bibl> given the definition of att.canonical. This class of attributes applies to "associate a representation such as a name or title with canonical information about the object being named or referenced", the object being the bibliographic entry. This indeed is the practical usage of inline <bibl> referencing described here. We find that @corresp does not apply as precisely as the definition of @ref to this use case.

We agree that <ref> is applicable and recommended for most cases, but not as precise when inline mentions of bibliographic info that want to capture additional information in a short-form reference (with say biblScope information to be tagged). In these cases <bibl> is more applicable. Our example in the Guidelines provides <bibl> with @corresp, but we want to modify this to use @ref as more appropriate.

We need provide examples that apply <ref> as well as <bibl> with @ref. We agree that this will be useful for linked data referencing.