Enter here your XPath 3.0 query to the data.
Please, use t: namespace for TEI elements. The starting point of any Xpath should
be $config:collection-root
if you are searching the entire dataset.
You can also use, as a cached and short form to point to collections the following variables:
$config:collection-rootMS
for manuscripts; $config:collection-rootW
for Textual Units
$config:collection-rootPl
for places; $config:collection-rootPr
for persons;
$config:collection-rootIn
for repositories; $config:collection-rootA
for authority files.
If you want to search for Places and Repositories, you can use $config:collection-rootPlIn
0 results for collection($config:data-root)//t:explicit[contains(@type,'expanded')]
Persons marked up in colophons: $config:collection-rootMS//t:colophon[t:persName]
Manuscripts with at least 26 additions: $config:collection-rootMS//t:additions/t:list/t:item[@xml:id='a26']
Manuscripts with a text marked up as Amharic: $config:collection-rootMS//t:TEI[descendant::t:textLang[@mainLang='am' or @otherLangs='am']]
Manuscripts with additions that contain something tagged Amharic: $config:collection-rootMS//t:TEI[not(contains(@xml:id, 'IHA'))]//t:additions[descendant::t:*[@xml:lang='am']]
Records with the title with the subtype inscriptio: $config:collection-root//t:title[contains(@subtype,'inscriptio')]
Manuscripts that have at least 31 quires: $config:collection-rootMS//t:collation/t:list[count(t:item) ge 31]
Manuscripts where a roleName appears: $config:collection-rootMS//t:roleName
Additons of the type OwnershipNote: $config:collection-rootMS//t:additions/t:list/t:item[t:desc[@type='OwnershipNote']]
Place records revised in 2022: $config:collection-rootPl//t:revisionDesc/t:change[contains(concat(' ', @when, ' '), '2022')]
Work records that contain "Senodos" inside title: $config:collection-rootW//t:titleStmt/t:title[contains(.,'Senodos')]
Works that contain the string "Senodos" somewhere: $config:collection-rootW//*[contains(.,'Senodos')]
Person record which have at least some attribute for birth and death (can be when, notBefore, notAfter) elements and occupation type ruler: $config:collection-rootPr//t:person[t:birth[@*]][t:death[@*]][t:occupation[@type='ruler']]
Manuscripts with miniatures in them: $config:collection-rootMS//t:decoDesc[t:decoNote[@type='miniature']]
Manuscripts with an addition element typed Ownership Note followed by another one with type Supplication: $config:collection-rootMS//t:additions/t:list/t:item[t:desc[@type='OwnershipNote']][following-sibling::t:item[t:desc[@type='Supplication']]]