-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
created a small sample file for rdfa
- Loading branch information
1 parent
3fc6e8b
commit d9b67fe
Showing
1 changed file
with
65 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |