StrawManFacsimileMarkup: Difference between revisions

From TEIWiki
Jump to navigation Jump to search
Conal (talk | contribs)
No edit summary
Conal (talk | contribs)
No edit summary
Line 2: Line 2:
<teiHeader>
<teiHeader>


<taxonomy><!-- ??? replace with some kind of keyword system, for use with tei:ref/@type? -->
<taxonomy id="facsimile-types">
<!-- seems to me there are a variety of possible facsimile types ('uses'), -->
<!-- and that projects might come up with new ones, or specialize existing ones -->
<!-- as in the "very-small-thumbnail" below, which would mean providing a basic -->
<!-- taxonomy which would be shared and part of the guidelines, while allowing -->
<!-- extension -->
<!-- how to use with tei:ref/@type? or replace tei:ref below with something else? -->
<bibl>
<bibl>
<ref target="{pointer to a standard taxonomy of facsimile roles/relationships?}"/>
<ref target="{pointer to a standard taxonomy of basic facsimile roles/relationships}"/>
<category xml:id="text">
<category xml:id="text">
<catDesc>Textual form</catDesc>
<catDesc>Textual form</catDesc>
Line 10: Line 16:
<category xml:id="thumbnail">
<category xml:id="thumbnail">
<catDesc>Thumbnail image</catDesc>
<catDesc>Thumbnail image</catDesc>
<category xml:id="very-small-thumbnail">
<catDesc>Extra small thumbnail</catDesc>
</category>
</category>
</category>
<category xml:id="access">
<category xml:id="access">

Revision as of 10:14, 24 February 2006

<teiHeader>

	<taxonomy id="facsimile-types">
		<!-- seems to me there are a variety of possible facsimile types ('uses'), -->
		<!-- and that projects might come up with new ones, or specialize existing ones -->
		<!-- as in the "very-small-thumbnail" below, which would mean providing a basic -->
		<!-- taxonomy which would be shared and part of the guidelines, while allowing -->
		<!-- extension -->
		<!-- how to use with tei:ref/@type? or replace tei:ref below with something else? -->
		<bibl>
			<ref target="{pointer to a standard taxonomy of basic facsimile roles/relationships}"/>
			<category xml:id="text">
				<catDesc>Textual form</catDesc>
			</category>
			<category xml:id="thumbnail">
				<catDesc>Thumbnail image</catDesc>
				<category xml:id="very-small-thumbnail">
					<catDesc>Extra small thumbnail</catDesc>
				</category>
			</category>
			<category xml:id="access">
				<catDesc>Large image</catDesc>
			</category>
			<category xml:id="annotation">
				<catDesc>Large annotated image</catDesc>
			</category>
		</bibl>
	</taxonomy>

	...
	<facsimileStmt>
		<facsimileList><!-- list of facsimile images, inline or external -->
			<graphic xml:id="thumb-p1" url="thumb-p1.jpg" mimeType="image/jpeg"/>
			<graphic xml:id="access-p1" url="access-p1.jpg" mimeType="image/jpeg"/>
			...
			<svg:svg xml:id="detail-unclear-22" xmlns:svg="http://www.w3.org/2000/svg">
				<!-- svg image could be zoomed and cropped here to a detail -->
				<svg:image id="svg1-access-p1-detail" x="0" y="0" width="100" height="100" 
				xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="access-p1.jpg"/>
			</svg:svg>
			...
		</facsimileList>
		<facsimileLinks>
			<facsimileLink><!-- group of links to equivalents -->
				<ref type="text" target="#pb1"/>
				<ref type="thumbnail" target="#thumb-p1"/>
				<ref type="access" target="#access-p1"/>
				<ref type="annotation" target="#annotation-p1"/>
			</facsimileLink>
			<facsimileLink>
				<ref type="text" target="#unclear-22"/>
				<ref type="access" target="#detail-unclear-22"/>
			</facsimileLink>
			...
		</facsimileLinks>
		
	</facsimileStmt>
	...
</teiHeader>