Nils Diewald | a31a515 | 2015-04-17 21:05:23 +0000 | [diff] [blame] | 1 | % layout 'main', title => 'KorAP: Query Languages'; |
| 2 | |
| 3 | %# https://letsencrypt.org/howitworks/ |
| 4 | |
| 5 | %# Store the id of an active section in the session, so the system is able to directly scroll to the relevant section |
| 6 | %# This should be stored when clicking on a specific query |
| 7 | %# but the remembered section contains the id - not the query |
| 8 | |
Akron | 1120a58 | 2017-10-17 12:29:16 +0200 | [diff] [blame] | 9 | <h2 id="tutorial-top">Query Languages</h2> |
Nils Diewald | a31a515 | 2015-04-17 21:05:23 +0000 | [diff] [blame] | 10 | |
Nils Diewald | c46003b | 2015-05-07 15:55:35 +0000 | [diff] [blame] | 11 | <section id="intro"> |
Nils Diewald | a31a515 | 2015-04-17 21:05:23 +0000 | [diff] [blame] | 12 | <h3>Frontend Features</h3> |
Akron | b2d6b76 | 2016-08-29 18:30:23 +0200 | [diff] [blame] | 13 | <p>This frontend differs to the <%= doc_ext_link_to 'official frontend', 'http://korap.ids-mannheim.de/app/', target => '_blank', rel => 'noopener noreferrer' %> by providing a serialization view, an integrated tutorial, a comparison view for morphological annotations, and an autocompletion for closed annotations (type in <%= doc_link_to 'foundry prefixes', 'data', 'annotation' %> like <code>cnx/</code>).</p> |
Nils Diewald | a31a515 | 2015-04-17 21:05:23 +0000 | [diff] [blame] | 14 | </section> |
| 15 | |
Nils Diewald | c46003b | 2015-05-07 15:55:35 +0000 | [diff] [blame] | 16 | <section id="examples"> |
Nils Diewald | a31a515 | 2015-04-17 21:05:23 +0000 | [diff] [blame] | 17 | <h3>Example Queries</h3> |
Nils Diewald | a31a515 | 2015-04-17 21:05:23 +0000 | [diff] [blame] | 18 | |
Akron | ff7811f | 2017-12-19 12:40:41 +0100 | [diff] [blame] | 19 | <p><strong><%= doc_link_to 'Poliqarp', 'ql', 'poliqarp-plus' %></strong>: Find all occurrences of the lemma "baum" as annotated by the <%= doc_link_to 'default foundry', 'data', 'annotation' %>.</p> |
Akron | f4a7cf4 | 2018-01-09 15:58:45 +0100 | [diff] [blame^] | 20 | %= doc_query poliqarp => '[base=Baum]' |
Nils Diewald | a31a515 | 2015-04-17 21:05:23 +0000 | [diff] [blame] | 21 | |
Akron | ff7811f | 2017-12-19 12:40:41 +0100 | [diff] [blame] | 22 | <p><strong><%= doc_link_to 'Poliqarp', 'ql', 'poliqarp-plus' %></strong>: Find all sequences of adjectives as annotated by Treetagger, that are repeated 3 to 5 times in a row.</p> |
Akron | f4a7cf4 | 2018-01-09 15:58:45 +0100 | [diff] [blame^] | 23 | %= doc_query poliqarp => '[tt/p=ADJA]{3,5}' |
Nils Diewald | a31a515 | 2015-04-17 21:05:23 +0000 | [diff] [blame] | 24 | |
Akron | ff7811f | 2017-12-19 12:40:41 +0100 | [diff] [blame] | 25 | <p><strong><%= doc_link_to 'Cosmas-II', 'ql', 'cosmas-2' %></strong>: Find all occurrences of the words "der" and "Baum", in case they are in a maximum distance of 5 tokens. The order is not relevant.</p> |
Akron | f4a7cf4 | 2018-01-09 15:58:45 +0100 | [diff] [blame^] | 26 | %= doc_query cosmas2 => 'der /w5 Baum' |
Nils Diewald | a31a515 | 2015-04-17 21:05:23 +0000 | [diff] [blame] | 27 | |
Akron | ff7811f | 2017-12-19 12:40:41 +0100 | [diff] [blame] | 28 | <p><strong><%= doc_link_to 'Cosmas-II', 'ql', 'cosmas-2' %></strong>: Find all sequences of a word starting with a "d" (using a wildcard) followed by an adjective as annotated in the mate foundry, followed by the word "Baum" (ignore the case), that is in a sentence element annotated by the <%= doc_link_to 'default foundry', 'data', 'annotation' %>.</p> |
Nils Diewald | a31a515 | 2015-04-17 21:05:23 +0000 | [diff] [blame] | 29 | <p><em>Be aware</em>: Minor incompatibilities with implemented languages may be announced with warnings.</p> |
Akron | f4a7cf4 | 2018-01-09 15:58:45 +0100 | [diff] [blame^] | 30 | %= doc_query cosmas2 => 'd* MORPH(mate/p=ADJA) $Baum #IN #ELEM(s)' |
Nils Diewald | a31a515 | 2015-04-17 21:05:23 +0000 | [diff] [blame] | 31 | |
Akron | ff7811f | 2017-12-19 12:40:41 +0100 | [diff] [blame] | 32 | <p><strong><%= doc_link_to 'Poliqarp+', 'ql', 'poliqarp-plus' %></strong>: Find all nominal phrases as annotated using Connexor, that contain an adverb as annotated by OpenNLP, that is annotated as something starting with an "A" using regular expressions in Treetagger.</p> |
Akron | f4a7cf4 | 2018-01-09 15:58:45 +0100 | [diff] [blame^] | 33 | %= doc_query poliqarp => 'contains(<cnx/c=np>,{[opennlp/p=ADV & tt/p="A.*"]})', cutoff => 1 |
Nils Diewald | a31a515 | 2015-04-17 21:05:23 +0000 | [diff] [blame] | 34 | |
Akron | ff7811f | 2017-12-19 12:40:41 +0100 | [diff] [blame] | 35 | <p><strong><%= doc_link_to 'Poliqarp+', 'ql', 'poliqarp-plus' %></strong>: Find all sentences as annotated by the base foundry that start with a sequence of one token in present tense as annotated by Connexor and the lemma "die" annotated by the <%= doc_link_to 'default foundry', 'data', 'annotation' %>. Highlight both terms of the sequence.</p> |
Akron | f4a7cf4 | 2018-01-09 15:58:45 +0100 | [diff] [blame^] | 36 | %= doc_query poliqarp => 'startswith(<base/s=s>, {1:[cnx/m=PRES]}{2:[base=die]})', cutoff => 1 |
Nils Diewald | a31a515 | 2015-04-17 21:05:23 +0000 | [diff] [blame] | 37 | |
Akron | ff7811f | 2017-12-19 12:40:41 +0100 | [diff] [blame] | 38 | <p><strong><%= doc_link_to 'Poliqarp+', 'ql', 'poliqarp-plus' %></strong>: Find all sequences of an article, followed by three to four adjectives and a noun as annotated by the Treetagger foundry, that finish a sentence. Highlight all parts of the sequence.</p> |
Akron | f4a7cf4 | 2018-01-09 15:58:45 +0100 | [diff] [blame^] | 39 | %= doc_query poliqarp => 'focus(3:endswith(<base/s=s>,{3:[tt/p=ART]{1:{2:[tt/p=ADJA]{3,4}}[tt/p=NN]}}))', cutoff => 1 |
Nils Diewald | a31a515 | 2015-04-17 21:05:23 +0000 | [diff] [blame] | 40 | |
Akron | ff7811f | 2017-12-19 12:40:41 +0100 | [diff] [blame] | 41 | <p><strong><%= doc_link_to 'Annis', 'ql', 'annis' %></strong>: Find all occurrences of the sequence of two tokens annotated as adverbs by the <%= doc_link_to 'default foundry', 'data', 'annotation' %>.</p> |
Akron | f4a7cf4 | 2018-01-09 15:58:45 +0100 | [diff] [blame^] | 42 | %= doc_query annis => 'pos="ADV" & pos="ADV" & #1 . #2' |
Nils Diewald | a31a515 | 2015-04-17 21:05:23 +0000 | [diff] [blame] | 43 | |
Akron | ff7811f | 2017-12-19 12:40:41 +0100 | [diff] [blame] | 44 | <p><strong><%= doc_link_to 'CQL', 'ql', 'cql' %></strong>: Find all occurrences of the sequence "der alte Mann".</p> |
Akron | f4a7cf4 | 2018-01-09 15:58:45 +0100 | [diff] [blame^] | 45 | %= doc_query cql => '"der alte Mann"' |
Nils Diewald | a31a515 | 2015-04-17 21:05:23 +0000 | [diff] [blame] | 46 | </section> |