Skip to content

Commit

Permalink
created a small sample file for rdfa
Browse files Browse the repository at this point in the history
  • Loading branch information
HelenaSabel committed Oct 18, 2024
1 parent 3fc6e8b commit d9b67fe
Showing 1 changed file with 65 additions and 0 deletions.
65 changes: 65 additions & 0 deletions P5/Exemplars/tei_rdfa.tei
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
<?xml-model href="tei_rdfa.rng" type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?>
<?xml-model href="tei_rdfa.rng" type="application/xml" schematypens="http://purl.oclc.org/dsdl/schematron"?>
<TEI xmlns="http://www.tei-c.org/ns/1.0">
<teiHeader>
<fileDesc>
<titleStmt about="disco:au_004e">
<title property="dc:title"><!-- supply a title --></title>
<author property="dc:creator"><!-- supply an author --></author>
</titleStmt>
<publicationStmt>
<p><!-- supply publication information--> </p>
</publicationStmt>
<sourceDesc>
<p><!-- supply information about the source --></p>
</sourceDesc>
</fileDesc>
<profileDesc>
<particDesc>
<listPerson>
<person xml:id="disco_004e" about="disco:004e" typeof="foaf:Person">
<idno cert="high" property="rdfs:seeAlso"
resource="https://viaf.org/viaf/88937355"/>
<persName type="full">
<forename property="foaf:givenName">Gaspar Melchor</forename>
<nameLink>de</nameLink>
<surname property="foaf:familyName">Jovellanos</surname>
</persName>
<persName type="source" property="foaf:name">Gaspar Melchor de
Jovellanos</persName>
<sex property="foaf:gender" content="M"/>
<birth>
<date property="schema:birthDate" content="1744" cert="high"/>
<location>
<placeName>
<settlement property="schema:birthPlace" inlist="">Gijón</settlement>
<bloc property="schema:birthPlace" inlist="">Europe</bloc>
</placeName>
</location>
</birth>
</person>
</listPerson>
</particDesc>
</profileDesc>
<encodingDesc>
<listPrefixDef>
<prefixDef ident="foaf" matchPattern="([A-Za-z]+)"
replacementPattern="http://xmlns.com/foaf/0.1/$1"/>
<prefixDef ident="dc" matchPattern="([A-Za-z]+)"
replacementPattern="http://purl.org/dc/terms/$1"/>
<prefixDef ident="schema" matchPattern="([A-Za-z]+)"
replacementPattern="http://schema.org/$1"/>
<prefixDef ident="rdfs" matchPattern="([A-Za-z]+)"
replacementPattern="http://www.w3.org/2000/01/rdf-schema#$1"/>
<prefixDef ident="disco" matchPattern="([A-Za-z]+)"
replacementPattern="https://prf1.org/disco/$1"/>
</listPrefixDef>
</encodingDesc>
</teiHeader>
<text>
<body>
<!-- the text. possibly a <p> or two? -->
<p/>
</body>
</text>
</TEI>

0 comments on commit d9b67fe

Please sign in to comment.