Faceted Search
Linguistic Search (TEST)
⚠️ Note
The corpus is updated on a regular basis but not daily! For most up-to-date query use the faceted search.
How to use the linguistic search
- Simple mode: Search for a single word e.g.
Jerusalemor.*rusalem - Lemma:
pesshows all forms of the word like 'pes', 'pedibus' etc. - Corpus Query Language (CQL):
- Search by word form:
q[word="Jerusalem"]
Finds exact word "Jerusalem" - Search by lemma (root form):
q[lemma="cedo"]
Finds "cessit", "cedentes", "cediderunt" etc. - Combine with wildcards:
q[word="indulg.*"]
Finds words starting with "indulg" - Multiple options (OR):
q[word="populus|civitatem"]
Finds "populus" OR "civitatem"
- Search by word form:
- Phrase:
reliqua pedibus suis.
Using Wildcards
-
.(dot) = matches any single character
Example:.erusalemmatches "Jerusalem" or "Ierusalem" -
.*(dot-asterisk) = matches any number of characters (including zero)
Example:.*erusalemmatches "Jerusalem", "Hierusalem", "Ierusalem" -
.?(dot-question) = matches zero or one character
Example:.?salemmatches "Hierusalem" or "Jerusalem"
Searching with Word Distance (CQL only)
Find words within a certain distance from each other:
-
q[word="rege"][word="Francorum"]
Finds "rege" immediately followed by "Francorum" -
q[word="rege"][][word="Francorum"]
Finds "rege" exactly 1 word away from "Francorum" -
q[word="Hieronymus"][]{0,15}[word="Josephus"]
"Hieronymus" within 0 to 15 words of "Josephus"
Quick Examples
- Simple:
Jerusalem - Simple with wildcard:
.*erusalem - Lemma:
altissimus - CQL exact match:
q[word="Jerusalem"] - CQL wildcard:
q[word=".*salem"] - CQL with distance:
q[lemma="sacerdos"][]{0,15} [word="sanguis"] - CQL multiple words:
q[word="templum|ecclesia|synagoga"]