lingo 1.8.0 → 1.8.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (100) hide show
  1. data/ChangeLog +13 -0
  2. data/README +49 -29
  3. data/Rakefile +28 -4
  4. data/TODO +2 -9
  5. data/bin/lingo +24 -0
  6. data/bin/lingoctl +24 -0
  7. data/de/lingo-dic.txt +559 -74
  8. data/info/gpl-hdr.txt +21 -24
  9. data/lib/lingo.rb +83 -112
  10. data/lib/lingo/agenda_item.rb +53 -0
  11. data/lib/lingo/attendee.rb +261 -0
  12. data/lib/lingo/attendee/abbreviator.rb +95 -97
  13. data/lib/lingo/attendee/debugger.rb +94 -93
  14. data/lib/lingo/attendee/decomposer.rb +76 -83
  15. data/lib/lingo/attendee/dehyphenizer.rb +141 -144
  16. data/lib/lingo/attendee/formatter.rb +65 -0
  17. data/lib/lingo/attendee/multi_worder.rb +302 -0
  18. data/lib/lingo/attendee/noneword_filter.rb +89 -84
  19. data/lib/lingo/attendee/object_filter.rb +91 -0
  20. data/lib/lingo/attendee/sequencer.rb +159 -158
  21. data/lib/lingo/attendee/synonymer.rb +81 -84
  22. data/lib/lingo/attendee/text_reader.rb +242 -0
  23. data/lib/lingo/attendee/text_writer.rb +169 -0
  24. data/lib/lingo/attendee/tokenizer.rb +192 -191
  25. data/lib/lingo/attendee/variator.rb +152 -156
  26. data/lib/lingo/attendee/vector_filter.rb +140 -135
  27. data/lib/lingo/attendee/word_searcher.rb +98 -0
  28. data/lib/lingo/buffered_attendee.rb +69 -0
  29. data/lib/lingo/cachable.rb +58 -0
  30. data/lib/lingo/call.rb +72 -0
  31. data/lib/lingo/cli.rb +26 -0
  32. data/lib/lingo/config.rb +23 -26
  33. data/lib/lingo/core_ext.rb +42 -0
  34. data/lib/lingo/ctl.rb +239 -173
  35. data/lib/lingo/database.rb +148 -496
  36. data/lib/lingo/database/crypter.rb +85 -0
  37. data/lib/lingo/database/gdbm_store.rb +49 -0
  38. data/lib/lingo/database/hash_store.rb +67 -0
  39. data/lib/lingo/database/libcdb_store.rb +58 -0
  40. data/lib/lingo/database/sdbm_store.rb +64 -0
  41. data/lib/lingo/database/show_progress.rb +81 -0
  42. data/lib/lingo/database/source.rb +134 -0
  43. data/lib/lingo/database/source/key_value.rb +62 -0
  44. data/lib/lingo/database/source/multi_key.rb +65 -0
  45. data/lib/lingo/database/source/multi_value.rb +65 -0
  46. data/lib/lingo/database/source/single_word.rb +60 -0
  47. data/lib/lingo/database/source/word_class.rb +64 -0
  48. data/lib/lingo/error.rb +122 -0
  49. data/lib/lingo/language.rb +78 -518
  50. data/lib/lingo/language/dictionary.rb +173 -0
  51. data/lib/lingo/language/grammar.rb +211 -0
  52. data/lib/lingo/language/lexical.rb +66 -0
  53. data/lib/lingo/language/lexical_hash.rb +88 -0
  54. data/lib/lingo/language/token.rb +48 -0
  55. data/lib/lingo/language/word.rb +130 -0
  56. data/lib/lingo/language/word_form.rb +83 -0
  57. data/lib/lingo/reportable.rb +59 -0
  58. data/lib/lingo/version.rb +1 -1
  59. data/lingo-all.cfg +14 -10
  60. data/lingo-call.cfg +5 -5
  61. data/lingo.cfg +14 -12
  62. data/lingo.rb +26 -0
  63. data/lir.cfg +13 -9
  64. data/spec/spec_helper.rb +1 -0
  65. data/test.cfg +11 -11
  66. data/test/attendee/ts_abbreviator.rb +0 -6
  67. data/test/attendee/ts_decomposer.rb +0 -6
  68. data/test/attendee/{ts_multiworder.rb → ts_multi_worder.rb} +1 -7
  69. data/test/attendee/ts_noneword_filter.rb +1 -7
  70. data/test/attendee/{ts_objectfilter.rb → ts_object_filter.rb} +1 -7
  71. data/test/attendee/ts_sequencer.rb +0 -6
  72. data/test/attendee/ts_synonymer.rb +0 -6
  73. data/test/attendee/{ts_textreader.rb → ts_text_reader.rb} +1 -7
  74. data/test/attendee/{ts_textwriter.rb → ts_text_writer.rb} +1 -7
  75. data/test/attendee/ts_tokenizer.rb +0 -6
  76. data/test/attendee/ts_variator.rb +0 -6
  77. data/test/attendee/ts_vector_filter.rb +1 -7
  78. data/test/attendee/{ts_wordsearcher.rb → ts_word_searcher.rb} +1 -7
  79. data/test/ref/artikel.non +2 -29
  80. data/test/ref/artikel.seq +13 -8
  81. data/test/ref/artikel.vec +30 -15
  82. data/test/ref/artikel.ven +29 -14
  83. data/test/ref/artikel.ver +58 -43
  84. data/test/ref/lir.csv +146 -145
  85. data/test/ref/lir.non +186 -210
  86. data/test/ref/lir.seq +54 -50
  87. data/test/test_helper.rb +41 -36
  88. data/test/ts_database.rb +12 -11
  89. data/test/ts_language.rb +118 -68
  90. metadata +67 -29
  91. data/lib/lingo/attendee/multiworder.rb +0 -301
  92. data/lib/lingo/attendee/objectfilter.rb +0 -86
  93. data/lib/lingo/attendee/textreader.rb +0 -237
  94. data/lib/lingo/attendee/textwriter.rb +0 -196
  95. data/lib/lingo/attendee/wordsearcher.rb +0 -96
  96. data/lib/lingo/attendees.rb +0 -289
  97. data/lib/lingo/const.rb +0 -131
  98. data/lib/lingo/modules.rb +0 -98
  99. data/lib/lingo/types.rb +0 -285
  100. data/lib/lingo/utilities.rb +0 -40
@@ -1,274 +1,250 @@
1
1
  00002*als
2
2
  00003*precis
3
- 00005*von
4
3
  00006*natürlichsprachig pc
5
- 00007*am
6
- 00008*am bibliotheks- precis rswk
4
+ 00008*bibliotheks- precis rswk
7
5
  00010*tourdefrance
8
6
  00016*haager kluth schen
9
- 00017*am dad im schlagwortgebung von
10
- 00018*precis von
11
- 00019*deskriptoren din t von
12
- 00021*von
7
+ 00017*dad schlagwortgebung
8
+ 00018*precis
9
+ 00019*deskriptoren din t
13
10
  00023*din
14
- 00024*besonderen bibliographic british im library office on-line precis präkoordinierten retrieval subject von
11
+ 00024*bibliographic british library office on-line precis präkoordinierten subject
15
12
  00025*precis
16
13
  00026*precis
17
- 00028*als anderer bnb british library precis von vor
18
- 00029*british context im library mehrsprachigen precis preserved reörtert
19
- 00032*von
20
- 00033*als am asb sfb ssd
21
- 00034*an and anderen im precis von
22
- 00036*probabilistische probabilistischen retrievalmodell vom von
14
+ 00028*als anderer bnb british library precis vor
15
+ 00029*british context library mehrsprachigen precis preserved reörtert
16
+ 00033*als asb sfb ssd
17
+ 00034*and anderen precis
18
+ 00036*probabilistische probabilistischen vom
23
19
  00037*a allegro-c and as available established keyword of the with
24
- 00038*als an bibliodata d-mark erster rswk so unspezifischen von
25
- 00039*a als db db-thesaurus deskriptoren im um
26
- 00040*agris an empfiehlt fsta vor-
20
+ 00038*als bibliodata d-mark erster rswk so unspezifischen
21
+ 00039*a als db db-thesaurus deskriptoren
22
+ 00040*agris fsta vor-
27
23
  00042*als
28
- 00043*-entwicklung classification im proceedingsbänden
29
- 00044*a b begroffen besonderer besonders detailliertheit monokategorialen präkombinationen ubiquitätren von
30
- 00045*als boek buch- ersten het von
24
+ 00043*-entwicklung classification proceedingsbänden
25
+ 00044*a b begroffen besonders detailliertheit monokategorialen präkombinationen ubiquitätren
26
+ 00045*als boek buch- ersten het
31
27
  00046*precis
32
- 00047*bzw krtisch so von
33
- 00048*als an gibt von
34
- 00049*an facettierung präkoordinierungsindexes
28
+ 00047*bzw krtisch so
29
+ 00048*als
30
+ 00049*facettierung präkoordinierungsindexes
35
31
  00050*als
36
32
  00051*kwic-indexing luhn
37
- 00052*-retrieval als an höherwertige von vor
33
+ 00052*-retrieval als höherwertige vor
38
34
  00053*air deskriptoren englischsprachigen inputproduktion phys
39
- 00054*als clustering dokumenten- term- von vorklassifizierten
40
- 00055*- -selbst als art deskriptorensystem von
41
- 00057*als ctx cui deskriptoren deskriptorliste deutschsprachigen einbringung im input von wort-
35
+ 00054*als clustering dokumenten- term- vorklassifizierten
36
+ 00055*- -selbst als art deskriptorensystem
37
+ 00057*als ctx cui deskriptoren deskriptorliste deutschsprachigen einbringung input wort-
42
38
  00058*abstracts
43
- 00059*im oberwolfach-walke vom
44
- 00061*am judo-ds von
45
- 00062*cscw im retrieval von
46
- 00067*a accessible advanced an and at audio-visual automated av-materialien be been began cataloguing college compatible computerised covered decentralised departments facilities from has integrated is later library local monographs of opac other planned printed provided scores since so that the to using von well with
39
+ 00059*oberwolfach-walke vom
40
+ 00061*judo-ds
41
+ 00062*cscw
42
+ 00067*a accessible advanced and at audio-visual automated av-materialien be been began cataloguing college compatible computerised covered decentralised departments facilities from has integrated is later library local monographs of opac other planned printed provided scores since so that the to using well with
47
43
  00068*durham
48
44
  00069*kascade scanning
49
- 00070*cd-rom citation science
45
+ 00070*citation science
50
46
  00072*gruner
51
47
  00076*citation indexing
52
- 00077*and indexing probabilistisches retrieval
53
- 00078*a at by dbase describes facilitates heading introduction is it of programmed subject the use used using which
54
- 00079*als biosis dbes deskriptoren deskriptorenzuteilungen dokumentationseinheien embase inahltliche medline previews proximity recall scisearch von
48
+ 00077*and indexing probabilistisches
49
+ 00078*a at by dbase describes documentalist facilitates heading introduction is it of programmed subject the use used using which
50
+ 00079*als biosis dbes deskriptoren deskriptorenzuteilungen dokumentationseinheien embase inahltliche medline previews proximity recall scisearch
55
51
  00080*deskribierung
56
52
  00081*condor ctx golem stairs
57
- 00082*bildschrimtextanschluß dv-drucker gruner indexierer von
58
- 00083*als condor db- ir-systems um verarbeiet
59
- 00084*besonderer
60
- 00086*- and at been centres describes development discusses discussion examples for germany good have indexing integrated intellectual is library needing network of okapi opacs pica project results retrieval some stage the time uk used while
61
- 00088*besonders parser retrieval von
62
- 00089*am von
53
+ 00082*bildschrimtextanschluß dv-drucker gruner indexierer
54
+ 00083*als condor db- ir-systems verarbeiet
55
+ 00086*- and at been centres describes development discusses discussion examples for germany good have indexing integrated intellectual is library needing network of okapi opacs pica project results some stage the time uk used while
56
+ 00088*besonders parser
63
57
  00090*neunziger
64
58
  00091*and classification indexing on section
65
- 00092*von
66
- 00093*als edv is opac opacs retrieval rswk vielfältigen
67
- 00096*an im oberwolfach vom
68
- 00097*air im indexierungs- retrievalsystems
69
- 00098*-praxis als bibliographic boolescher citation coupling erhaltenen finanz- im juris kozitationsanalyse läßt precision recall retrieval sci science von vor zitationsbezügen
70
- 00100*cd-rom s von
71
- 00101*retrieval
59
+ 00093*als edv is opac opacs rswk vielfältigen
60
+ 00096*oberwolfach vom
61
+ 00097*air indexierungs-
62
+ 00098*-praxis als bibliographic boolescher citation coupling erhaltenen finanz- juris kozitationsanalyse läßt precision recall sci science vor zitationsbezügen
63
+ 00100*s
72
64
  00102*british library precis u
73
65
  00103*asb sfb ssd swi t
74
66
  00105*koindexaten opacs orientierungslosigkeit ranking recall relevance softwareseitige
75
67
  00106*deutschsprachige pcs
76
68
  00107*indexing wai
77
- 00109*retrieval
78
- 00110*an
79
- 00111*retrievaltest
80
- 00112*im
81
- 00115*als am condor
82
- 00116*als deskriptoren im von
83
- 00117*air im
69
+ 00115*als condor
70
+ 00116*als deskriptoren
71
+ 00117*air
84
72
  00121*als
85
73
  00122*air phys
86
74
  00123*phys
87
75
  00124*air phys
88
- 00125*adreßbuch im yellow übersichtlichkeit
89
- 00127*als besonderen hypertextfähigkeiten im von
90
- 00128*läßt retrieval selegiert vollständigkeits- vom von
76
+ 00125*adreßbuch yellow übersichtlichkeit
77
+ 00127*als hypertextfähigkeiten
78
+ 00128*läßt selegiert vollständigkeits- vom
91
79
  00129*als deskriptorgattungen eppelsheimer facettierung vor
92
- 00130*retrievalhilfen wortrelationierung
93
- 00131*a agencies agency and are austria available be been cd-rom established for germany have ismn italy lithuania luxembourg music of on participating published recording scheme sept should st switzerland the titles von
94
- 00132*advantages an and as by documents efficient examines exploring for im importance increase indexing libraries new of offered outlines possibility public retrieval retrieving storing subject technology the value well
95
- 00133*- an and ifla im indexing nein opac practices principles prä- präkoordination rswk s subject the trägt um von vor-
96
- 00134*von
97
- 00135*als von vor
98
- 00136*ab agency black fängt men security
99
- 00137*als besonders im
100
- 00138*als publikations- um von
101
- 00139*retrieval
102
- 00140*a amount and available be bibiothek bibliographic bodies by cd-rom central changes clearly collection converted corporate defined depends effectivity entries exchange floppy for from further guidelines has heading include into is keyword library magnetic may microfiche more new of on over particular planned possible precise produced publication reduced reference selective tape the topical unimarc upon
80
+ 00130*wortrelationierung
81
+ 00131*a agencies agency and are austria available be been established for germany have ismn italy lithuania luxembourg music of on participating published recording scheme sept should st switzerland the titles
82
+ 00132*advantages and as by documents efficient examines exploring for importance increase indexing libraries new of offered outlines possibility public retrieving storing subject technology the value well
83
+ 00133*- and ifla indexing nein opac practices principles prä- präkoordination rswk s subject the vor-
84
+ 00135*als vor
85
+ 00136*ab agency black men security
86
+ 00137*als besonders
87
+ 00138*als publikations-
88
+ 00140*a amount and available be bibiothek bibliographic bodies by central changes clearly collection converted corporate defined depends effectivity entries exchange floppy for from further guidelines has heading include into is keyword library magnetic may microfiche more new of on over particular planned possible precise produced publication reduced reference selective tape the topical unimarc upon
103
89
  00141*a and as at boolean by card catalogue catalogues cataloguing compared computerised concept configuration describes entries essential examines fields for free from function functions including indexing its library linked looks of offered opac oppor-tunities other outside principles restricted rules search searches searching specific structure subject techniques the title to topics traditional vague well with
104
- 00142*am an bzw möglichekeiten von wissenschafts-
105
- 00143*pc-thesaurusprogrammen von
106
- 00144*am faz
107
- 00145*evaluierung von
108
- 00146*an im opac universitäts-
90
+ 00142*bzw möglichekeiten wissenschafts-
91
+ 00143*pc-thesaurusprogrammen
92
+ 00144*faz
93
+ 00145*evaluierung
94
+ 00146*opac universitäts-
109
95
  00148*a academic and are argued back-of-the-book be between branch by can cognitive comprehension concept consists debeloped differences dijk discussed document followed for indexed indexing is it kintsch mind of process processing production set such suggested testing that the to van
110
- 00149*a and areas automated automatic automatically average be being combination documents each economic effectiveness energy examines for from growth immediate included indexed indexing intellectual it of per presents randomly ranged ranging recall references results retrieval retrievaltests search seems selected should sources study subject that the there therefore to topic topics ulb used were while with
96
+ 00149*a and areas automated automatic automatically average be being combination documents each economic effectiveness energy examines for from growth immediate included indexed indexing intellectual it of per presents randomly ranged ranging recall references results search seems selected should sources study subject that the there therefore to topic topics ulb used were while with
111
97
  00150*als
112
98
  00151*world-wide-web
113
- 00152*von
114
- 00153*a an and between bibliographic by cd-rom citation cocitation commercial difference discusses example for größte illustrates implemented linking means of offer on presents sci science so-called st the time within
115
- 00154*-ebenen als amphore handlungsabläufe pc-arbeitsplätze sequenz- so um von vor
116
- 00155*als an besonderem cd-rom deutschsprachige deutschsprachigen faz gibt im nzz retrievalflexibilität taz trunkierungsmöglichkeiten von
117
- 00157*am im opac
99
+ 00153*a and between bibliographic by citation cocitation commercial difference discusses example for illustrates implemented linking means of offer on presents sci science so-called st the time within
100
+ 00154*-ebenen als amphore pc-arbeitsplätze sequenz- so vor
101
+ 00155*als deutschsprachige deutschsprachigen faz nzz taz trunkierungsmöglichkeiten
102
+ 00157*opac
118
103
  00158*alektronische
119
104
  00159*i milos
120
105
  00161*milos
121
- 00164*engines größten im search von web wide world www
122
- 00165*- als bibliometrischer citation host im retrievalsprache science stn von vor
123
- 00166*an begriffes dier entlinearisierung im natursprachigen so von
124
- 00167*- and deutschsprachige erschließungs- german girt indexing retrieval retrievalsysteme
106
+ 00164*engines search web wide world www
107
+ 00165*- als bibliometrischer citation host science stn vor
108
+ 00166*dier entlinearisierung natursprachigen so
109
+ 00167*- and deutschsprachige erschließungs- german girt indexing
125
110
  00168*beijing bibliographic conference control ifla iv
126
- 00169*alphabetical an and appeared bavarian began between catalogue computerization entries erlanger filmed for from has introduced libraries library microfiche now of one periodicals printed produced publication saw the third to university using went
127
- 00170*-konzept a added and are as at attempts between bring can clearinghouse concentration concept consequences cooperation despite dfg discusses for from german groups increasing indexing job librarians libraries library mechanisms methods networked of on other outlines perspective realm relatively research retrieval search several similar society sources sourvces special specific structuring subject such technical the to together unstructured use value work
128
- 00171*ersten im mag zukunftsmärkte
111
+ 00169*alphabetical and appeared bavarian began between catalogue computerization entries erlanger filmed for from has introduced libraries library microfiche now of one periodicals printed produced publication saw the third to university using went
112
+ 00170*-konzept a added and are as at attempts between bring can clearinghouse concentration concept consequences cooperation despite dfg discusses for from german groups increasing indexing job librarians libraries library mechanisms methods networked of on other outlines perspective realm relatively research search several similar society sources sourvces special specific structuring subject such technical the to together unstructured use value work
113
+ 00171*ersten mag zukunftsmärkte
129
114
  00172*web
130
115
  00173*- hillarys melbournes
131
- 00174*bibliometrics bibliometrische bibliometrischen cd-edition citation im retrievals rückkopplung science social visual von vor
132
- 00175*alphabetic an and comparison coordinate experimental subject
133
- 00176*als bmbf fiz förderkonzept insti kmu medoc vom von vor
134
- 00177*audio- im informations- iud- ocr presse- radio- so von workgrouping
135
- 00178*accessible and are at before catalogue century collection countries described digitization for from german-speaking graphic incipit incorporating incunabula known libraries makes more of old printed project projects representation retrieval short th than the title university up vd17 works
136
- 00179*adreßsammlungen cd-roms
137
- 00180*a an analyzing and be by can canal catalogue catalogues compared compounds consequently field found german if library linguistic linguistically ls mehrsprachigen of presents psychology question questions reduces required results search searching simplifies so that the their them they title titles to translating variants with
138
- 00181*am an im so von
139
- 00182*chilias eu-projekt im medien- um www
140
- 00183*von
141
- 00184*excalibur fulcrum im inmagic pls textretrieval verity von zylab
142
- 00185*automatichen clustering im von
143
- 00186*air als von wai
116
+ 00174*bibliometrics bibliometrische bibliometrischen cd-edition citation rückkopplung science social visual vor
117
+ 00175*alphabetic and comparison coordinate experimental subject
118
+ 00176*als bmbf fiz förderkonzept insti kmu medoc vom vor
119
+ 00177*audio- informations- iud- ocr presse- radio- so workgrouping
120
+ 00178*accessible and are at before catalogue century collection countries described digitization for from german-speaking graphic incipit incorporating incunabula known libraries makes more of old printed project projects representation short th than the title university up vd17 works
121
+ 00179*adreßsammlungen
122
+ 00180*a analyzing and be by can canal catalogue catalogues compared compounds consequently field found german if library linguistic linguistically ls mehrsprachigen of presents psychology question questions reduces required results search searching simplifies so that the their them they title titles to translating variants with
123
+ 00181*so
124
+ 00182*chilias eu-projekt medien- www
125
+ 00184*excalibur fulcrum inmagic pls verity zylab
126
+ 00185*automatichen clustering
127
+ 00186*air als wai
144
128
  00188*hyperkatalog opac vom
145
- 00191*als begriffs- clusteringverfahrens prioritätsklassen retrieval so
146
- 00192*als im stich- vermittels von
129
+ 00191*als begriffs- clusteringverfahrens prioritätsklassen so
130
+ 00192*als stich- vermittels
147
131
  00193*dk
148
- 00194*besonderer precis von
149
- 00195*besonderer precis von
150
- 00197*dokumentare im relevenaz um vor
151
- 00198*kascade retrievaltests
152
- 00199*and bzw freewaissf german girt indexierungs- indexing pretest retrieval retrievalsysteme
132
+ 00194*precis
133
+ 00195*precis
134
+ 00197*dokumentare relevenaz vor
135
+ 00198*kascade
136
+ 00199*and bzw freewaissf german girt indexierungs- indexing pretest
153
137
  00200*-
154
- 00201*am
155
- 00202*about advantages and are arising as chain choice correction cumulation described detailed dictionary disadvantages discussed emphasis entries explained feasibilities following from given here is kwic kwoc laid limited machine-readable method methods of on procedure procedures processing production recording records setting sorting studied the their use used various von when with
138
+ 00202*about advantages and are arising as chain choice correction cumulation described detailed dictionary disadvantages discussed emphasis entries explained feasibilities following from given here is kwic kwoc laid limited machine-readable method methods of on procedure procedures processing production recording records setting sorting studied the their use used various when with
156
139
  00203*and bibliographic conference control council ifla iv
157
- 00204*- aacr aacr2r and beitraege c carrier content delsey fattahi graham hirons howarth j logic modeling of opac principles r records seriality t the toronto u ueber von
140
+ 00204*- aacr aacr2r and beitraege c carrier content delsey fattahi graham hirons howarth j logic modeling of opac principles r records seriality t the toronto u ueber
158
141
  00205*opacs subito vlb
159
- 00206*an milos retrievaltests universitäts- von
160
- 00207*apple deskriptoren edv entspricht mikroorganismen ms-access phytomedizinischer protugiesisch scab um vielfältigen von
161
- 00208*- als art disambiguierung fremdsprachiger im relationierung swd systematisierung
162
- 00209*als am im indexat retrieval
163
- 00210*an digitalisierter indexierungs- mining retrievalsystemen textuelle von
164
- 00211*am girt im indexierungs- iz retrievalsysteme
165
- 00212*bzw handelt probabilistische probabilistischen subkollektionen subkollektionsspezifischen um von übredies
166
- 00213*besonders deskriptoren deskriptorensystem ergibt h hüther im mehreren so von vor
167
- 00217*an kascade universitäts-
142
+ 00206*milos universitäts-
143
+ 00207*apple deskriptoren edv mikroorganismen ms-access phytomedizinischer protugiesisch scab vielfältigen
144
+ 00208*- als art disambiguierung fremdsprachiger relationierung swd systematisierung
145
+ 00209*als indexat
146
+ 00210*digitalisierter indexierungs- mining textuelle
147
+ 00211*girt indexierungs- iz
148
+ 00212*bzw probabilistische probabilistischen subkollektionen subkollektionsspezifischen übredies
149
+ 00213*besonders deskriptoren deskriptorensystem h hüther mehreren so vor
150
+ 00217*kascade universitäts-
168
151
  00218*opac
169
- 00219*an rswk universitäts-
170
- 00220*cd-roms
152
+ 00219*rswk universitäts-
171
153
  00221*a and as be compared consumer decreases describe increases input library modelled on over previous price processing produced quality quantity reactions reflect should showing the this whole with would years
172
154
  00222*din
173
- 00223*- als größte
155
+ 00223*- als
174
156
  00224*philosophicus
175
157
  00226*and bibliographic bibliography classification conference control ifla indexing iv on s section
176
- 00227*- baer citation gibt informationswisenschaftlichen science von vor
158
+ 00227*- baer citation informationswisenschaftlichen science vor
177
159
  00228*manche onliner psychologen
178
- 00229*- booleschen freestyle im lexis-nexis like more natürlichsprachige professionals retrievalmöglichkeiten this
179
- 00230*als anderen aspektische aspektischen controlled retrievalergebnisse retrievalverbesserung trunkierung zweiten
160
+ 00229*- booleschen freestyle lexis-nexis like more natürlichsprachige professionals this
161
+ 00230*als anderen aspektische aspektischen controlled trunkierung zweiten
180
162
  00231*rswk
181
- 00232*- ab als an basiern db db-version im precis rswk sacherschließunf um von
182
- 00233*- dbase document fiff im iv matching nachberarbeitung parametrisiertes retrieval so vom von
183
- 00234*am and aufl cataloguing classification erste headings im incompatibility ipc ipc3 ipc4 issues library monohierarchisch of sog subject trat
184
- 00235*im padok
185
- 00236*evaluierungsergebnisse meheren padok-ii retrievaltests von
186
- 00237*anderen im such- von web wide world yahoo
187
- 00238*im von web wide world
188
- 00239*ab als dokumentars im retrieval um vademecum von vor-
189
- 00240*a preus preuss von
190
- 00241*im von
163
+ 00232*- ab als basiern db db-version precis rswk sacherschließunf
164
+ 00233*- dbase document fiff iv matching nachberarbeitung parametrisiertes so vom
165
+ 00234*and aufl cataloguing classification erste headings incompatibility ipc ipc3 ipc4 issues library monohierarchisch of sog subject
166
+ 00235*padok
167
+ 00236*evaluierungsergebnisse meheren padok-ii
168
+ 00237*anderen such- web wide world yahoo
169
+ 00238*web wide world
170
+ 00239*ab als dokumentars vademecum vor-
171
+ 00240*a preus preuss
191
172
  00242*universitäts- vom
192
- 00243*retrieval
193
- 00244*abschlußveranstaltung ins
194
- 00245*am gbv im tib
195
- 00247*als am an bündelt cd-rom delivery document enthaltenen im intranet- isi mill multidisziplinarität of philadelphia science vor web www
196
- 00248*als an im klassifikatorischer kompendium retrievalmöglichkeiten von
197
- 00249*an metadatenformat metadatenschnittstelle von
198
- 00250*im von www zweite
199
- 00251*im
200
- 00252*ersten im von vor zweiten
201
- 00254*american apa association deskriptoren ins of psychological psycinfo psyndex psytkom records subject um verschlagwortet zpid
202
- 00255*als beiratsmiglied censorship geziehen of on ruge uta von vor
173
+ 00244*ins
174
+ 00245*gbv tib
175
+ 00247*als bündelt delivery document enthaltenen intranet- isi mill multidisziplinarität of philadelphia science vor web www
176
+ 00248*als klassifikatorischer kompendium
177
+ 00249*metadatenformat metadatenschnittstelle
178
+ 00250*www zweite
179
+ 00252*ersten vor zweiten
180
+ 00254*american apa association deskriptoren ins of psychological psycinfo psyndex psytkom records subject verschlagwortet zpid
181
+ 00255*als beiratsmiglied censorship geziehen of on ruge uta vor
203
182
  00256*editoral
204
183
  00257*szeintometrie
205
- 00258*am core hochwertiges im mathematics metadaten preprint retrieval retrievalwerkzeugen search von
184
+ 00258*core hochwertiges mathematics metadaten preprint search
206
185
  00259*ic
207
- 00260*- als anderer im mehreren von
208
- 00261*an deutschsprachiger i ii im kascade milos retrievaltests ulb von
209
- 00262*an niedersächsischen oclc staats- von
210
- 00263*als ic im knowledge von web
211
- 00264*als boole deskriptoren fulcrum girt im iz liefert recall retrievalsprachen sche um vergebenen vom von
212
- 00265*- classification ddc dewey henrichs melvil ranganathan retrieval sozial- von
213
- 00266*als ic im knowledge von web
214
- 00267*dfg kascade retrievaltest scanning selix theas um von
215
- 00268*- an ii von
216
- 00269*von
217
- 00270*a about als and application beyond by catalogues classification conventional current documentation explains explores faceted go ideas identifying indexing input investigates its keyword language languages library narrow need occurring of on on-line points principle regularly replacement retrieval searches searching structure subject syntactical terminology the their theory thinking to traditional view with
218
- 00271*a american and applications are been by characteristics classification consistency descriptors detailed done field firstly following for given has headings im increase indexing is its little mathematical mathematics needs now of practical presented presents proposal quality results scheme society some special study studying subject such terminology the to up using very which work
219
- 00272*a an and are bismas cataloguing categories category cologne construct content described description descriptive disciplines document does fhbd for free fringe further is library mainly not now on permit possibilities project provided ran retrieval scheme school so the to using whole
220
- 00273*- a achieved and arrival as ask be boolean building catalogues cataloguing categories component consequences could descriptive essential for fur im indexing introduction inversion is librarians might number of or prepared public result retrieval role rswk rules since subject syntactic the vom whether with
221
- 00274*a address advantages and as assessment automatic card catalogues concludes content cr-rom development disadvantages document effective examines existing indexing library make methods more needs of opacs postcoordinated precoordinated presents regard relevance representation retrieval storage such that the to with
222
- 00275*-aug a and avoiding between book college cologne demands from fur helpful high ii indexing is keyword librarianship mechanised mechanized methods milos more no nov numbers of or proved published quality ran reducing result retrieval retrievaltests searches semantic standardized successful than the title titles unsatisfied used vocabulary
223
- 00276*ab als and engines gibt im informations- kornmunikationssystem math-net search von web
224
- 00277*als am as d deskriptoren deskriptorterm deskriptorterme im indexierungssparche natürlichsprachige nominalsyntagma nominalsyntagmas nominalsyntagmen nominalsyntagna nonimalsyntagma nutzbarmachung referentielle referentiellen sydo-lyon von
225
- 00278*- an gibt heimanwender
226
- 00280*am
186
+ 00260*- als anderer mehreren
187
+ 00261*deutschsprachiger i ii kascade milos ulb
188
+ 00262*niedersächsischen oclc staats-
189
+ 00263*als ic knowledge web
190
+ 00264*als boole deskriptoren fulcrum girt iz recall sche vergebenen vom
191
+ 00265*- classification ddc dewey henrichs melvil ranganathan sozial-
192
+ 00266*als ic knowledge web
193
+ 00267*dfg kascade scanning selix theas
194
+ 00268*- ii
195
+ 00270*a about als and application beyond by catalogues classification conventional current documentation explains explores faceted go ideas identifying indexing input investigates its keyword language languages library narrow need occurring of on on-line points principle regularly replacement searches searching structure subject syntactical terminology the their theory thinking to traditional view with
196
+ 00271*a american and applications are been by characteristics classification consistency descriptors detailed done field firstly following for given has headings increase indexing is its little mathematical mathematics needs now of practical presented presents proposal quality results scheme society some special study studying subject such terminology the to up using very which work
197
+ 00272*a and are bismas cataloguing categories category cologne construct content described description descriptive disciplines document does fhbd for free fringe further is library mainly now on permit possibilities project provided ran scheme school so the to using whole
198
+ 00273*- a achieved and arrival as ask be boolean building catalogues cataloguing categories component consequences could descriptive essential for fur indexing introduction inversion is librarians might number of or prepared public result role rswk rules since subject syntactic the vom whether with
199
+ 00274*a address advantages and as assessment automatic card catalogues concludes content cr-rom development disadvantages document effective examines existing indexing library make methods more needs of opacs postcoordinated precoordinated presents regard relevance representation storage such that the to with
200
+ 00275*-aug a and avoiding between book college cologne demands from fur helpful high ii indexing is keyword librarianship mechanised mechanized methods milos more no nov numbers of or proved published quality ran reducing result searches semantic standardized successful than the title titles unsatisfied used vocabulary
201
+ 00276*ab als and engines informations- kornmunikationssystem math-net search web
202
+ 00277*als as d deskriptoren deskriptorterm deskriptorterme indexierungssparche natürlichsprachige nominalsyntagma nominalsyntagmas nominalsyntagmen nominalsyntagna nonimalsyntagma nutzbarmachung referentielle referentiellen sydo-lyon
203
+ 00278*- heimanwender
227
204
  00281*- usa
228
- 00282*- an developments meta-lib metadata new sub
229
- 00284*ab als concepto lenunaindexierung retrievals retrievaltechnik
230
- 00285*am citation im science social szientometrische szientometrischen von
231
- 00286*- ag an erste etc gaukelt km kobv kvk mueller udenscheid von vor
232
- 00287*als an audesc autindex ca deskribierungsmodul deskriptoren iai im label mehrsprachigen newscan von
233
- 00288*- classification egal handelt im ipc knowledge mehrsprachigkeit so um von
234
- 00289*- -statistik ab alta altavista am an google im northern retrievaloberflächen the vista web wide world
235
- 00290*- -mal ab alltheweb allthewebs als altavista an anderen andrei audiodateien betrieben bright brin broder compac components connected deutschsprachiger dritter economy enthaltenen entspricht giant gliedert google googol handelt handverlesene ibm im info- larry looksmart masseninedium mehrsprachigen mono- new rechercheure scc scooter sergej so speichert strongly tendrils um university us-softwareunternehmen vom von vorstrukturierte web werbepreise wide world www yahoo zweite
236
- 00291*als an anderen besonderer betrieben dfg erfassungssystern erstes hida im nachlässe so stäcker textverarbeitung7 um vom von vor
237
- 00292*als an im informations- naher retrieval von workflow
238
- 00293*- als anderen grundzügen irs koordinativer nikolaj phonetische phonologische precision recall retrieval s trubetzkoy von vor
239
- 00294*als an angloamerikanischen beschrieb besonderem faq hochwertigen im kornmunikationsmedium leicester librarians mangelt of pc per project the to ub university vom von zusammenträgt
240
- 00295*- als engines homonym- im known retrievaltest retrievaltests search searches synonym- vielfalt von web wide world
241
- 00296*- an bzw egal how im independents informetrischen know minimalismus natürlichsprachiger professional retrieval retrievalsoftware retrievalsystem retrievalsysteme um vom von web wide world
242
- 00297*als am factor gibt im impact publikations- von vor working
243
- 00298*an anderen aspectix bzw fachgebiets- im liefert precision recall retrieval textcorpus um unähnlich von www
244
- 00299*cd-roms im retrieval retrievalforschung
245
- 00300*am besonderem cases donnerte erste handelt iec iso maps multiple topic um use von xtm
246
- 00301*- a anderen b im klassen ordnungs- u unüberschaubare z
247
- 00302*an autonomy booleschem doccat ersteres g gruner handelt ibm im inc j probabilistisches retrieval retrievaltests so um vom von
248
- 00303*als collate digitalisiertem dokumentmanagement- im kollaborativen komfortable metadaten retrievalfunktionalitäten um vom von wissens- www
249
- 00305*consult content eutelis ic regulatorischen smartcardanwendungen telecom telekommunikation telekommunikations- telekommunikationsdiensten von
250
- 00306*als an größter im thernatik trägt urnstandes von vor
251
- 00308*- -außer am an anderen benutzernah bzw citation factor for gibt im immediacy impact informetrische informetrischen jcr periodikabestände scientific so soziogramme um von vor
252
- 00309*an dfg elib engines im konnten mwk niedersächsischen retrieval retrievalsystemen search textuellen volltexdatenbanken von
253
- 00310*- ab als aufgaben- deutschsprachigen erfahrene erfahrener im ko-selektion logfiles per performance- von web wechselt wide world
254
- 00311*alembert cacouacs d diderot encyclopédie von
255
- 00312*- allegro als american an anderem association atla ca desiderat englischsprachige englischsprachigen etliche im indexierer libraries of parergon provenienz rezenter rswk swid theological tübinger von vor zid
256
- 00313*- am auflagen- bzw handelt im ins kollationsangaben mag opac retrievalrelevant um urheber- usw verfasser- vom von vorakzessionsarbeiten
257
- 00314*based content gibt retrieval von
205
+ 00282*- developments meta-lib metadata new sub
206
+ 00284*ab als concepto lenunaindexierung
207
+ 00285*citation science social szientometrische szientometrischen
208
+ 00286*- ag erste etc gaukelt km kobv kvk mueller udenscheid vor
209
+ 00287*als audesc autindex ca deskribierungsmodul deskriptoren iai label mehrsprachigen newscan
210
+ 00288*- classification egal ipc knowledge mehrsprachigkeit so
211
+ 00289*- -statistik ab alta altavista google northern the vista web wide world
212
+ 00290*- -mal ab alltheweb allthewebs als altavista anderen andrei audiodateien betrieben bright brin broder compac components connected deutschsprachiger dritter economy enthaltenen giant gliedert google googol handverlesene ibm info- larry looksmart masseninedium mehrsprachigen mono- new rechercheure scc scooter sergej so speichert strongly tendrils university us-softwareunternehmen vom vorstrukturierte web werbepreise wide world www yahoo zweite
213
+ 00291*als anderen betrieben dfg erfassungssystern erstes hida nachlässe so stäcker textverarbeitung7 vom vor
214
+ 00292*als informations- workflow
215
+ 00293*- als anderen grundzügen irs koordinativer nikolaj phonetische phonologische precision recall s trubetzkoy vor
216
+ 00294*als angloamerikanischen beschrieb faq hochwertigen kornmunikationsmedium leicester librarians mangelt of pc per project the to ub university vom
217
+ 00295*- als engines homonym- known search searches synonym- web wide world
218
+ 00296*- bzw egal how independents informetrischen know minimalismus natürlichsprachiger professional vom web wide world
219
+ 00297*als factor impact publikations- vor working
220
+ 00298*anderen aspectix bzw fachgebiets- precision recall textcorpus unähnlich www
221
+ 00300*cases donnerte erste iec iso maps multiple topic use xtm
222
+ 00301*- a anderen b klassen ordnungs- u unüberschaubare z
223
+ 00302*autonomy booleschem doccat ersteres g gruner ibm inc j probabilistisches so vom
224
+ 00303*als annotieren collate digitalisiertem dokumentmanagement- kollaborativen komfortable metadaten vom wissens- www
225
+ 00305*consult content eutelis ic regulatorischen smartcardanwendungen telecom telekommunikation telekommunikations- telekommunikationsdiensten
226
+ 00306*als thernatik urnstandes vor
227
+ 00308*- -außer anderen bzw citation factor for immediacy impact informetrische informetrischen jcr periodikabestände scientific so soziogramme vor
228
+ 00309*dfg elib engines mwk niedersächsischen search textuellen volltexdatenbanken
229
+ 00310*- ab als aufgaben- deutschsprachigen erfahrene erfahrener ko-selektion logfiles per performance- web wide world
230
+ 00311*alembert cacouacs d diderot encyclopédie
231
+ 00312*- allegro als american anderem association atla ca desiderat englischsprachige englischsprachigen etliche indexierer libraries of parergon provenienz rezenter rswk swid theological tübinger vor zid
232
+ 00313*- auflagen- bzw ins kollationsangaben mag opac urheber- usw verfasser- vom vorakzessionsarbeiten
233
+ 00314*based content
258
234
  00315*globalisierung proceedings
259
235
  00316*fulcrum-evaluierung
260
- 00317*an autonomy booleschem doccat ersteres g gruner handelt ibm im inc j probabilistisches retrieval so um vom von
261
- 00318*an im ins web
262
- 00319*an anderem besonders daten- document dtd generalized html hypertext im language markup metasprache objektorientiertheit sgml von web wide world www
263
- 00320*-effizienz als am besondere deskriptorenfeldern eher entfällt im retrievaleffektivität retrievalverfahren so von vor
264
- 00321*biosphäre demarkationen gnn polanyi so von
265
- 00322*an englischsprachiger foris im solis
266
- 00323*forschungs- retrievalverfahren um von vor
267
- 00324*- ab alembert als am an d denis diderot encyclopedie encyclopédie enzyklopädistik im iso jorio le maps rond topic um- versprach vom von weiterzuentwickeln zotter
268
- 00325*als citation for im nahmen phanomen science scientific social ssci unsubstanzieller von
269
- 00326*- -technik anderen im metadaten opacs retrieval vom von webopacs
236
+ 00317*autonomy booleschem doccat ersteres g gruner ibm inc j probabilistisches so vom
237
+ 00318*ins web
238
+ 00319*anderem besonders daten- document dtd generalized html hypertext language markup metasprache objektorientiertheit sgml web wide world www
239
+ 00320*-effizienz als deskriptorenfeldern eher so vor
240
+ 00321*biosphäre demarkationen gnn polanyi so
241
+ 00322*englischsprachiger foris solis
242
+ 00323*forschungs- vor
243
+ 00324*- ab alembert als d denis diderot encyclopedie encyclopédie enzyklopädistik iso jorio le maps rond topic um- versprach vom weiterzuentwickeln zotter
244
+ 00325*als citation for nahmen phanomen science scientific social ssci unsubstanzieller
245
+ 00326*- -technik anderen metadaten opacs vom webopacs
270
246
  00327*erl-5 webspirs-5
271
247
  00328*and bibliographic bibliography cataloguing classification conference control ifla indexing iv on section
272
- 00329*an multiple multipler von
273
- 00330*- a ab alltheweb als altavista alto am an anderen ans art atomz auskunftei auskunfteien berners-lee besonderes besonders brin britannica britney cern chtml compact deja domane e-mails encyclopedia ersten exotika factory fanden fido- flash freefind fünfte gb gibt gluonenkraft google googles größte hotbot html hypertext im imode index- infoseek inktomi ins its julius katalogisierer kepnt konnte krabbelprogrammen krabbler krabbler-pcs krabblern könnte- la larry legebatterie liefert look luis macromedia mag manche mantua meal mehreren meta-crawler monier mönatlich netzausforschung niemand northern palo petabyte placement plexiglas rubriziert s sailer search sergey so spears speichert steuert stöbert t-online terabyte threads tim trenker uberblick um unauffindbar url-adreßdatenbank usancen verbitten vom von vor wapinhalte web webbrain webtop wide world xipolis yahoo zollund zuläßt zweiter zügen à ärger übersuchmaschinen
274
- 00331*- idx im retrievaltest retrievaltests stich- von
248
+ 00329*multiple multipler
249
+ 00330*- a ab alltheweb als altavista alto anderen ans art atomz auskunftei auskunfteien beiträgen berners-lee besonders brin britannica britney cern chtml compact deja domane e-mails encyclopedia ersten exotika factory fanden fido- flash freefind fünfte gb gluonenkraft google googles hotbot html hypertext imode index- infoseek inktomi ins its julius katalogisierer kepnt krabbelprogrammen krabbler krabbler-pcs krabblern könnte- la larry legebatterie look luis macromedia mag manche mantua meal mehreren meta-crawler monier mönatlich netzausforschung northern palo petabyte placement plexiglas quelltext rubriziert s sailer search sergey so spears speichert stöbert t-online terabyte threads tim trenker uberblick unauffindbar url-adreßdatenbank usancen verbitten vom vor wapinhalte web webbrain webtop wide world xipolis yahoo zollund zuläßt zweiter zügen à übersuchmaschinen
250
+ 00331*- idx stich-