Questions below ...
On 22/07/28164 20:33, Piotr BaĆski wrote:
> Hi Kevin,
>
> On 2010-01-31 12:02, Kevin Hawkins wrote:
>
>> My original plan was to use the<pb> element in the encoding of the
>> critical edition to mark page breaks in the various witnesses, which is
>> possibly what Stuart is suggesting. This would leave the document
>> littered with<pb>s, none of which are actually in the text of the
>> critical edition. I don't find this all that elegant, so I want to
>> create TEI documents for each witness but not include a transcription of
>> each witness in each of these TEI documents. Unfortunately, I'm having
>> trouble finding an appropriate mechanism for pointing to the critical
>> edition from the various witnesses. As Laurent points out, both of my
>> proposals rely on the proximity of<ptr> elements to the proceeding<pb>
>> or<graphic> element. I don't like this any more than he does.
>>
>> Laurents suggests using<linkGrp>, which contains<link> elements, but
>> it seems from the Guidelines that<linkGrp> would need to be used in the
>> encoding of the critical edition, not in the encoding of the witnesses.
>
> Can't you keep the linkGrp in a document disassociated from all the
> others? A dedicated linkGrp document? Or:
The element linkGrp may only contain link or ptr. How can I use it to
associate one of these with a pb or graphic element? That is, how would
you redo the markup in one of these to associate word ranges with
particular page images?
<!-- first option -->
<text>
<body>
<ab xml:base="criticaledition.xml">
<pb facs="manuscriptimage1.jpg"/>
<ptr target="range(#W.238.16.06,#W.239.03.02)"/>
<pb facs="manuscriptimage2.jpg"/>
<ptr target="range(#W.239.03.03,#W.239.37.10)"/>
<pb facs="manuscriptimage3.jpg"/>
<ptr target="range(#W.239.37.12,#W.241.16.12)"/>
</ab>
</body>
</text>
<!-- second option -->
<facsimile xml:base="criticaledition.xml">
<graphic url="manuscriptimage1.jpg"/>
<ptr target="range(#W.238.16.06,#W.239.03.02)"/>
<graphic url="manuscriptimage2.jpg"/>
<ptr target="range(#W.239.03.03,#W.239.37.10)"/>
<graphic url="manuscriptimage3.jpg"/>
<ptr target="range(#W.239.37.12,#W.241.16.12)"/>
</facsimile>
(I've corrected the URI references from my initial email to correctly
point to an external document.)
>> Wendell suggests this is a type overlapping markup. Even if there were
>> elements for "start of text on page" and "end of text on page" which I
>> could insert in an overlapping way in the critical edition, I still
>> haven't found a way to store this information outside the critical edition.
>
> In your original examples of separate files for witnesses, you rely on
> the proximity of<pb> and<ptr> -- but why not wrap them in, say,
> <div>s? Or rethink the structure with an eye towards using the @corresp
> attribute on<div>s or whatever, specifying the ranges you are
> interested in.
I thought use of div to indicate text that happened to fall on a single
page of a witness would constitute tag abuse since there's no structural
division in the text at the point of the page break. If this would be
an acceptable use of div, then I would not be opposed to doing:
<text>
<body xml:base="criticaledition.xml">
<div corresp="range(#W.238.16.06,#W.239.03.02)">
<pb facs="manuscriptimage1.jpg"/>
</div>
<div corresp="range(#W.239.03.03,#W.239.37.10)">
<pb facs="manuscriptimage2.jpg"/>
</div>
<div corresp="range(#W.239.37.12,#W.241.16.12)">
<pb facs="manuscriptimage3.jpg"/>
</div>
</body>
</text>
Tag abuse?
|