── Attaching core tidyverse packages ─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── tidyverse 2.0.0 ──
✔ dplyr 1.1.4 ✔ readr 2.1.5
✔ forcats 1.0.0 ✔ stringr 1.5.1
✔ ggplot2 3.5.2 ✔ tibble 3.2.1
✔ lubridate 1.9.4 ✔ tidyr 1.3.1
✔ purrr 1.0.4 ── Conflicts ───────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── tidyverse_conflicts() ──
✖ dplyr::filter() masks stats::filter()
✖ dplyr::lag() masks stats::lag()
ℹ Use the ]8;;http://conflicted.r-lib.org/conflicted package]8;; to force all conflicts to become errorsRegistered S3 methods overwritten by 'htmltools':
method from
print.html tools:rstudio
print.shiny.tag tools:rstudio
print.shiny.tag.list tools:rstudio
here() starts at /Users/jiemakel/tyo/hpbd-analysis
Attaching package: ‘arrow’
The following object is masked from ‘package:lubridate’:
duration
The following object is masked from ‘package:utils’:
timestamp
Registered S3 methods overwritten by 'dbplyr':
method from
print.tbl_lazy
print.tbl_sql
New names:Warning: One or more parsing issues, call `problems()` on your data frame for details, e.g.:
dat <- vroom(...)
problems(dat)Rows: 2966 Columns: 10── Column specification ───────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
Delimiter: ","
chr (10): Pica3...1, Pica+...2, Inhalt, Inhalt Nicht-RDA, wiederholbar...5, Pica3...6, Pica+...7, Inhalt Unterfeld, Inhalt Nicht-RDA Unterfeld, wiederholbar...10
ℹ Use `spec()` to retrieve the full column specification for this data.
ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.Warning: One or more parsing issues, call `problems()` on your data frame for details, e.g.:
dat <- vroom(...)
problems(dat)Rows: 3470 Columns: 3── Column specification ───────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
Delimiter: ","
chr (3): PICA3, PICA name, PICA+
ℹ Use `spec()` to retrieve the full column specification for this data.
ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.Rows: 206 Columns: 3── Column specification ───────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
Delimiter: ","
chr (3): PICA3, PICA Name, PICA+
ℹ Use `spec()` to retrieve the full column specification for this data.
ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.Warning: Default behavior of `pull()` on Arrow data is changing. Current behavior of returning an R vector is deprecated, and in a future release, it will return an Arrow `ChunkedArray`. To control this:
ℹ Specify `as_vector = TRUE` (the current default) or `FALSE` (what it will change to) in `pull()`
ℹ Or, set `options(arrow.pull_as_vector)` globally
9,492,104 records in total.
field_code_usage_stats <- d2 |>
group_by(field_code) |>
summarize(records = n_distinct(record_number), n = n(), .groups = "drop") |>
mutate(r_p=records/n_records) |>
mutate(vals_per_rec = n / records) |>
collect() |>
left_join(
d2 |>
count(record_number, field_code) |>
filter(n > 1L) |>
ungroup() |>
count(field_code, name = "recs_with_mult_vals") |>
collect()
) |>
arrange(field_code) |>
replace_na(list(recs_with_mult_vals = 0L)) |>
left_join(pica_fields |> filter(is.na(subfield_code)) |> distinct(PICA3, field_code, field_description))
DuckDB progress: 0%
Joining with `by = join_by(field_code)`Joining with `by = join_by(field_code)`
In total, 108 distinct PICA fields are used.
Legend for the table below:
records
: how many records have at least one of this
fieldr_p
: the above as a percentage of all HPBD recordsn
: the total number of appearances of this fieldvals_per_rec
: calculated from the above, the mean
number of appearances of this field per recordrecs_with_mult_vals
: the number of records that have
more than one repetition of this fieldfield_code_usage_stats |>
relocate(field_description, .after=field_code) |>
relocate(r_p, .after=records) |>
mutate(field_code = glue('<a name="{field_code}" href="https://swbtools.bsz-bw.de/cgi-bin/k10plushelp.pl?cmd=kat&val={PICA3}">{field_code}</a>')) |>
select(-PICA3) |>
gt() |>
fmt_number(where(is.numeric), decimals = 0) |>
fmt_percent(r_p, decimals = 2, drop_trailing_zeros = TRUE) |>
fmt_number(vals_per_rec, decimals = 2, drop_trailing_zeros = TRUE) |>
data_color(columns=r_p, palette="viridis") |>
data_color(columns=vals_per_rec, palette="viridis", method="quantile", quantiles=10) |>
fmt_passthrough(field_code, escape = FALSE)
Warning: Skewed data means we can only allocate 10 unique colours not the 10 requested
field_code | field_description | records | r_p | n | vals_per_rec | recs_with_mult_vals |
---|---|---|---|---|---|---|
001A | Source and date of creation | 9,492,104 | 100% | 9,492,104 | 1 | 0 |
001B | Source and date of the last transaction | 9,492,104 | 100% | 18,984,208 | 2 | 9,492,104 |
001D | Source and date of owner | 9,492,104 | 100% | 9,492,104 | 1 | 0 |
001U | Characterset | 9,492,104 | 100% | 9,492,104 | 1 | 0 |
001X | Owner main record | 9,492,104 | 100% | 9,492,104 | 1 | 0 |
002@ | Bibliographic type and status | 9,492,059 | 100% | 9,492,067 | 1 | 8 |
003@ | Record Control Number (PPN) | 9,492,104 | 100% | 9,492,104 | 1 | 0 |
003G | NA | 99,705 | 1.05% | 231,690 | 2.32 | 99,705 |
003O | Control Number of the linked record in remote database (s.a.WorldCat) | 3,707,939 | 39.06% | 6,857,729 | 1.85 | 1,578,022 |
004A | ISBN, binding, price | 24,372 | 0.26% | 30,032 | 1.23 | 5,504 |
004D | Erroneous ISBN | 183 | 0% | 323 | 1.77 | 80 |
005A | ISSN, binding, price | 4,228 | 0.04% | 4,743 | 1.12 | 391 |
005B | Erroneous ISSN | 44 | 0% | 46 | 1.05 | 2 |
006A | 006A LC Number | 100,405 | 1.06% | 100,405 | 1 | 0 |
006V | MCN nummer | 26,115 | 0.28% | 39,823 | 1.52 | 3,035 |
006X | Identnummern weiterer Fremddatenlieferanten | 9,492,018 | 100% | 23,682,168 | 2.49 | 9,492,018 |
006Y | Identnummern (allgemein) | 7,185,368 | 75.7% | 18,571,051 | 2.58 | 4,864,443 |
007C | CODEN | 107 | 0% | 113 | 1.06 | 5 |
007D | Supplier production number | 23,140 | 0.24% | 49,078 | 2.12 | 22,518 |
007P | Fingerprint | 1,924,229 | 20.27% | 3,133,273 | 1.63 | 697,478 |
007S | Bibliografische Zitate (Alte Drucke) | 1,364,552 | 14.38% | 2,314,779 | 1.7 | 395,847 |
007T | NA | 35,187 | 0.37% | 41,814 | 1.19 | 4,481 |
007Y | Sonstige Standardnummern | 940,312 | 9.91% | 2,829,600 | 3.01 | 939,521 |
009@ | Data for ILL | 9,492,095 | 100% | 9,492,095 | 1 | 0 |
009A | Location original | 10 | 0% | 23 | 2.3 | 6 |
009B | Location master microforms | 9,319,573 | 98.18% | 92,455,341 | 9.92 | 9,281,297 |
009P | URL | 2 | 0% | 2 | 1 | 0 |
010@ | Language designation | 8,982,072 | 94.63% | 9,726,155 | 1.08 | 652,222 |
011@ | PublicationDate | 9,439,287 | 99.44% | 17,138,667 | 1.82 | 7,393,362 |
013H | Veröffentlichungsart und Inhalt | 187,807 | 1.98% | 187,807 | 1 | 0 |
017H | URL für sonstige Angaben zur Ressource | 4,738,612 | 49.92% | 13,133,772 | 2.77 | 4,710,743 |
019@ | Country code | 7,192,799 | 75.78% | 7,348,211 | 1.02 | 150,823 |
021A | Title and statement of responsibility area | 9,183,886 | 96.75% | 15,086,923 | 1.64 | 4,533,143 |
021B | Title on the second or intermediate level of a multi-level description | 817 | 0.01% | 1,910 | 2.34 | 761 |
021C | Dependent title | 538 | 0.01% | 588 | 1.09 | 46 |
021G | Paralleltitel, paralleler Titelzusatz, parallele Verantwortlichkeitsangabe | 43,898 | 0.46% | 48,040 | 1.09 | 2,680 |
021M | Weitere Titel etc. bei Zusammenstellungen | 8,088 | 0.09% | 9,452 | 1.17 | 988 |
022A | Uniform heading | 661,887 | 6.97% | 680,089 | 1.03 | 15,603 |
022S | Formal main title (manuscripts) | 63,710 | 0.67% | 66,183 | 1.04 | 2,470 |
025@ | Filing title | 281,051 | 2.96% | 334,998 | 1.19 | 53,947 |
026@ | Key-title | 3,469 | 0.04% | 3,523 | 1.02 | 51 |
026C | Abbreviated key-title | 914 | 0.01% | 1,085 | 1.19 | 81 |
027A | Secondary title entry | 2,073,319 | 21.84% | 3,148,718 | 1.52 | 613,221 |
028A | Primary author | 6,572,162 | 69.24% | 22,003,202 | 3.35 | 6,443,206 |
028B | Coauthor/sender | 403,397 | 4.25% | 1,490,319 | 3.69 | 403,149 |
028C | Secondary author/receiver | 3,067,285 | 32.31% | 16,428,883 | 5.36 | 3,045,455 |
028D | NA | 8,303 | 0.09% | 266,619 | 32.11 | 8,298 |
028E | Interpret | 2,665 | 0.03% | 56,091 | 21.05 | 2,663 |
028G | Sonstige Person/Familie | 527,361 | 5.56% | 3,481,046 | 6.6 | 523,434 |
028L | NA | 95,195 | 1% | 403,413 | 4.24 | 95,195 |
028N | NA | 189 | 0% | 1,068 | 5.65 | 188 |
028Z | Abweichende Namen in Nicht-RDA-Sätzen, Importdaten | 589,031 | 6.21% | 1,517,468 | 2.58 | 541,025 |
029A | Körperschaft als 1. geistiger Schöpfer | 441,649 | 4.65% | 946,398 | 2.14 | 355,164 |
029E | Körperschaft als Interpret | 3 | 0% | 6 | 2 | 3 |
029F | Corporate Author | 2,933,015 | 30.9% | 8,298,614 | 2.83 | 2,281,744 |
029G | Sonstige Körperschaft | 190,385 | 2.01% | 749,211 | 3.94 | 185,589 |
029K | NA | 43,089 | 0.45% | 47,298 | 1.1 | 3,825 |
030F | Meeting Name | 328 | 0% | 925 | 2.82 | 290 |
031@ | Numbering area (serials) | 63,727 | 0.67% | 63,727 | 1 | 0 |
031A | Numbering area (articles) | 133,776 | 1.41% | 267,545 | 2 | 133,769 |
032@ | Edition area | 861,486 | 9.08% | 890,758 | 1.03 | 25,424 |
033A | First publisher | 8,920,750 | 93.98% | 16,479,694 | 1.85 | 7,089,767 |
033B | 2nd and following publisher | 2,005 | 0.02% | 7,539 | 3.76 | 1,945 |
033D | STCN printer | 5,346,607 | 56.33% | 16,935,138 | 3.17 | 5,343,823 |
033H | Verbreitungsort in normierter Form | 1,993 | 0.02% | 2,494 | 1.25 | 357 |
033J | PPN printer STCN | 490,263 | 5.16% | 3,220,058 | 6.57 | 488,640 |
034D | Pagination, volumes | 8,030,550 | 84.6% | 8,039,408 | 1 | 4,453 |
034I | Dimensions (height, depth, thickness) | 5,673,978 | 59.78% | 5,674,852 | 1 | 259 |
034K | Accompanying material | 10,961 | 0.12% | 10,961 | 1 | 0 |
034M | Illustration statement | 1,367,883 | 14.41% | 1,367,942 | 1 | 25 |
035E | Musical presentation statement | 107,639 | 1.13% | 111,392 | 1.03 | 2,222 |
035F | Map projection | 152 | 0% | 152 | 1 | 0 |
035G | Co-ordinates | 5,847 | 0.06% | 17,982 | 3.08 | 5,836 |
036C | Link multi-volume publication (text) | 434,798 | 4.58% | 1,283,621 | 2.95 | 429,243 |
036D | Link to multi-volume publication | 434,604 | 4.58% | 1,301,726 | 3 | 434,604 |
036E | Extra link serial publication | 479,956 | 5.06% | 898,371 | 1.87 | 403,722 |
036F | Link serial publication | 95,535 | 1.01% | 219,457 | 2.3 | 94,054 |
037A | General note | 5,113,682 | 53.87% | 12,737,630 | 2.49 | 3,045,789 |
037C | Note bibliography/index | 244,271 | 2.57% | 254,579 | 1.04 | 10,236 |
037G | Note on reproduction | 3,251 | 0.03% | 3,251 | 1 | 0 |
039B | Note relation to greater part | 755,667 | 7.96% | 1,848,975 | 2.45 | 754,694 |
039C | Note relation to smaller part | 36,752 | 0.39% | 258,243 | 7.03 | 36,749 |
039D | Note horizontal relation | 368,437 | 3.88% | 1,666,740 | 4.52 | 361,185 |
039E | Note chronological relation | 43,189 | 0.45% | 164,687 | 3.81 | 42,969 |
039P | Link to description in other language | 2,087 | 0.02% | 4,298 | 2.06 | 2,055 |
039Q | Link to original document without expansion | 1,698 | 0.02% | 3,543 | 2.09 | 1,664 |
039S | Link to the same title in several databases (PiCarta International) | 499 | 0.01% | 2,339 | 4.69 | 482 |
044L | Geographical descriptor (GOO) | 298,549 | 3.15% | 1,014,210 | 3.4 | 241,866 |
044N | Form descriptor (GOO) | 1,731,858 | 18.25% | 6,228,243 | 3.6 | 1,282,617 |
045A | LC classification | 201 | 0% | 201 | 1 | 0 |
045C | NLM classification | 14,407 | 0.15% | 15,301 | 1.06 | 841 |
045F | Dewey classification | 36,643 | 0.39% | 54,519 | 1.49 | 12,541 |
045X | NUGI (Nederlandse Uniforme Genre Indeling) | 386 | 0% | 776 | 2.01 | 386 |
046D | Frühere/frühester Haupttitel (nur für fortlaufende und integrierende Ressourcen) | 1,827,145 | 19.25% | 2,918,181 | 1.6 | 605,695 |
046F | Note for target group | 3,603 | 0.04% | 3,613 | 1 | 9 |
046G | Titelangaben | 323,677 | 3.41% | 349,325 | 1.08 | 15,834 |
046H | Anmerkung zur Veröffentlichungsangabe und zum Copyright-Datum | 171,716 | 1.81% | 172,426 | 1 | 545 |
046L | Angaben über Sprache und Schrift der Expression | 69,042 | 0.73% | 69,423 | 1.01 | 350 |
046M | Angaben zu enthaltenen unselbstständigen Werken | 161,382 | 1.7% | 304,051 | 1.88 | 88,873 |
046P | Terms governing use and reproduction Note (temporarily tag) | 40,019 | 0.42% | 43,473 | 1.09 | 2,378 |
046Q | NA | 9,146 | 0.1% | 19,122 | 2.09 | 9,143 |
046T | NA | 104,700 | 1.1% | 115,764 | 1.11 | 8,140 |
046W | Kommentarfeld | 162,507 | 1.71% | 162,507 | 1 | 0 |
046X | Bestandsschutzmaßnahmen und (Langzeit-)Archivierung | 154,039 | 1.62% | 641,017 | 4.16 | 153,985 |
047A | Message on general level | 8,662,216 | 91.26% | 41,816,334 | 4.83 | 8,416,813 |
047C | Note volume of a multi-volume publication | 512,643 | 5.4% | 517,065 | 1.01 | 4,404 |
047I | Note summary/subject | 283,022 | 2.98% | 300,643 | 1.06 | 9,492 |
048H | Systemvoraussetzungen für elektronische Ressourcen | 27,866 | 0.29% | 28,067 | 1.01 | 142 |
collections <- d2 |>
filter(field_code=="009@") |>
select(record_number,collection=value)
records_per_collection <- collections |>
count(collection, name="n_records") |>
arrange(desc(n_records)) |>
collect()
field_code_usage_stats_by_collection <- d2 |>
inner_join(collections) |>
group_by(collection, field_code) |>
summarize(records = n_distinct(record_number), n = n(), .groups = "drop") |>
mutate(vals_per_rec = n / records) |>
collect() |>
inner_join(records_per_collection) |>
mutate(r_p=records/n_records) |>
left_join(
d2 |>
inner_join(collections) |>
count(collection, record_number, field_code) |>
filter(n > 1L) |>
ungroup() |>
count(collection, field_code, name = "recs_with_mult_vals") |>
collect()
) |>
arrange(desc(n_records), collection, field_code) |>
select(-n_records) |>
replace_na(list(recs_with_mult_vals = 0L)) |>
left_join(pica_fields |> filter(is.na(subfield_code)) |> distinct(PICA3, field_code, field_description))
Joining with `by = join_by(record_number)`
Joining with `by = join_by(collection)`Joining with `by = join_by(record_number)`
Joining with `by = join_by(collection, field_code)`Joining with `by = join_by(field_code)`
records_per_collection |>
gt() |>
fmt_number(where(is.numeric), decimals = 0)
collection | n_records |
---|---|
DE-601 | 1,832,593 |
DE-604 | 1,584,102 |
IT-ICCU | 1,408,342 |
FR-751131015 | 937,449 |
FR-341725201 | 572,235 |
US-CtY-BR | 291,137 |
DE-603 | 270,091 |
NL-0100030000.STCN | 210,718 |
GB-StEdNL | 198,865 |
SpMaBN | 197,250 |
CZ-PrNK | 196,183 |
GB-UkOxU | 181,468 |
NL-HaKB | 137,446 |
US-icn | 112,148 |
GB-StGlU | 109,733 |
DE-12 | 105,439 |
NL-UtRU | 102,708 |
BE-KBR00 | 93,098 |
DK-810010 | 74,965 |
SwSKB | 69,221 |
UK-LAMBETHANA | 59,298 |
GB-UkLU | 57,663 |
GB-Uk | 55,255 |
GB-UkLW | 51,639 |
CH-000003-X | 45,606 |
US-mdbj | 41,052 |
UkWE | 35,323 |
BUWr-PlWaBN-PlSzKP-PlGdAN | 34,944 |
RuSpRNB | 28,502 |
LI-ViUB | 26,847 |
GB-WlAbNL | 26,801 |
BE-AnVE | 26,044 |
GB-UkCyUK | 25,718 |
SpMaUC | 25,698 |
EE-TUR | 20,904 |
NO-0030100 | 19,428 |
FI-H | 19,402 |
PlWaU | 19,298 |
SI-50001 | 18,837 |
PL-BJ | 15,428 |
UkLUK | 13,683 |
IT-RT | 13,578 |
GR-GENN | 13,024 |
FR-693836101 | 12,988 |
HuBpOSK | 11,789 |
UK-bLmt | 11,114 |
EE-TLUAR | 9,693 |
HU-SzSEK | 9,373 |
HR-ZaNSK | 8,209 |
ukwml | 7,300 |
VcBA | 5,580 |
PLOLW | 5,560 |
PL-BUWr | 5,404 |
NL-0100030000.PB | 5,051 |
GB-UkCyCl | 3,975 |
StStU | 3,520 |
GB-UkLU.SOAS | 2,839 |
pltoc | 2,358 |
LiViLNB | 2,037 |
GR-LASK | 1,841 |
UK-KeNA | 1,824 |
PlWaBN | 1,311 |
GB-StEdNL-INC | 558 |
GB-UkLU-S | 319 |
SK-MaSNL | 280 |
Biblioteka Ossolineum Wroclaw | 5 |
GB-WlAbNL | 4 |
field_code_usage_stats_by_collection |>
relocate(field_description, .after=field_code) |>
relocate(r_p, .after=records) |>
mutate(field_code = glue('<a name="{field_code}" href="https://swbtools.bsz-bw.de/cgi-bin/k10plushelp.pl?cmd=kat&val={PICA3}">{field_code}</a>')) |>
select(-PICA3) |>
pivot_wider(id_cols=c(field_code, field_description), values_from=r_p, names_from=collection) |>
gt() |>
fmt_percent(where(is.numeric), decimals = 2, drop_trailing_zeros = TRUE) |>
data_color(columns=-c(field_code,field_description), palette="viridis") |>
fmt_passthrough(field_code, escape=FALSE)
field_code | field_description | DE-601 | DE-604 | IT-ICCU | FR-751131015 | FR-341725201 | US-CtY-BR | DE-603 | NL-0100030000.STCN | GB-StEdNL | SpMaBN | CZ-PrNK | GB-UkOxU | NL-HaKB | US-icn | GB-StGlU | DE-12 | NL-UtRU | BE-KBR00 | DK-810010 | SwSKB | UK-LAMBETHANA | GB-UkLU | GB-Uk | GB-UkLW | CH-000003-X | US-mdbj | UkWE | BUWr-PlWaBN-PlSzKP-PlGdAN | RuSpRNB | LI-ViUB | GB-WlAbNL | BE-AnVE | GB-UkCyUK | SpMaUC | EE-TUR | NO-0030100 | FI-H | PlWaU | SI-50001 | PL-BJ | UkLUK | IT-RT | GR-GENN | FR-693836101 | HuBpOSK | UK-bLmt | EE-TLUAR | HU-SzSEK | HR-ZaNSK | ukwml | VcBA | PLOLW | PL-BUWr | NL-0100030000.PB | GB-UkCyCl | StStU | GB-UkLU.SOAS | pltoc | LiViLNB | GR-LASK | UK-KeNA | PlWaBN | GB-StEdNL-INC | GB-UkLU-S | SK-MaSNL | Biblioteka Ossolineum Wroclaw | GB-WlAbNL |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
001A | Source and date of creation | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% |
001B | Source and date of the last transaction | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% |
001D | Source and date of owner | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% |
001U | Characterset | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% |
001X | Owner main record | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% |
002@ | Bibliographic type and status | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 99.98% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 87.5% | 100% | 50% |
003@ | Record Control Number (PPN) | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% |
003G | NA | 2.64% | 3.01% | NA | 0.03% | 0.2% | 0.18% | NA | NA | 0.01% | NA | NA | 0.29% | 0.11% | NA | NA | 0% | 0.15% | NA | 0.02% | NA | NA | 0.02% | 0.65% | 0% | NA | 0.15% | NA | 0.54% | NA | NA | NA | NA | NA | NA | 0.03% | NA | NA | NA | NA | 0.05% | NA | 0.02% | 0.03% | 1.46% | NA | NA | NA | NA | 0.04% | NA | 0.39% | 0.02% | 0.04% | NA | NA | NA | NA | NA | NA | 0.11% | NA | 0.69% | 0.18% | NA | NA | NA | NA |
003O | Control Number of the linked record in remote database (s.a.WorldCat) | 70.33% | 96.81% | NA | NA | NA | 98.1% | 77.43% | 0% | 4.9% | NA | NA | 0% | 99.54% | 99.93% | 3.13% | NA | 99.84% | NA | NA | NA | 0% | NA | NA | NA | NA | 19.73% | NA | NA | NA | NA | 51.2% | NA | NA | NA | NA | NA | NA | NA | NA | NA | 15.29% | NA | 0.92% | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | 66.82% | NA | NA | 0.16% | NA | NA | 65.23% | NA | NA | NA | 25% |
004A | ISBN, binding, price | 0.02% | 1.33% | 0% | 0.06% | 0.23% | 0.05% | 0.18% | NA | 0% | NA | NA | 0.02% | 0% | 0.03% | 0.01% | NA | 0% | 0.05% | NA | NA | 0.03% | 0.01% | NA | 0.01% | 0.02% | NA | NA | NA | NA | NA | 0.1% | NA | NA | NA | NA | 0.21% | NA | NA | NA | NA | 0.07% | NA | 0.04% | 0.08% | NA | NA | NA | 0.47% | 0.01% | NA | NA | NA | NA | NA | NA | 0.37% | 0.04% | NA | NA | NA | 0.16% | NA | NA | NA | NA | NA | NA |
004D | Erroneous ISBN | 0% | 0% | NA | NA | 0% | 0% | 0.03% | NA | NA | NA | NA | 0% | 0% | 0% | 0% | NA | NA | 0% | NA | NA | 0% | 0% | NA | NA | NA | 0% | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | 0.04% | NA | 0.03% | NA | NA | NA | NA | 0.02% | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | 0.05% | NA | NA | NA | NA | NA | NA |
005A | ISSN, binding, price | 0.03% | 0.02% | NA | 0.21% | NA | 0% | 0.36% | NA | 0.01% | NA | NA | 0.03% | 0.01% | 0.02% | 0.03% | NA | 0.09% | 0.01% | 0.05% | NA | NA | 0.05% | NA | NA | 0.01% | 0.03% | 0.11% | NA | NA | 0.21% | NA | NA | NA | 0.03% | NA | 0.02% | NA | 0.02% | NA | NA | 0.07% | NA | 0.02% | NA | NA | NA | 0.12% | 0.09% | NA | NA | NA | 0.23% | NA | 0.04% | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA |
005B | Erroneous ISSN | 0% | 0% | NA | NA | NA | NA | 0% | NA | 0% | NA | NA | 0% | NA | NA | NA | NA | 0% | NA | NA | NA | NA | 0% | NA | NA | NA | NA | 0% | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA |
006A | 006A LC Number | 0.17% | 0.01% | NA | NA | NA | 13.13% | 0.04% | NA | 0.38% | NA | NA | 4.78% | 0.43% | 17.46% | 2.43% | NA | 0% | NA | NA | NA | 0.01% | 10.35% | NA | 7.99% | 0.11% | 24.2% | NA | NA | NA | 0% | 11.42% | NA | NA | NA | NA | NA | NA | NA | NA | NA | 16.74% | NA | 0.14% | NA | NA | NA | 0.01% | NA | NA | NA | 0.02% | NA | NA | 0.06% | NA | NA | 20.29% | NA | NA | 0.38% | 18.53% | NA | 4.84% | 26.96% | NA | NA | 25% |
006V | MCN nummer | 1.43% | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA |
006X | Identnummern weiterer Fremddatenlieferanten | 100% | 100% | 100% | 100% | 100% | 100% | 99.97% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 99.98% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% |
006Y | Identnummern (allgemein) | 96.78% | 100% | NA | 100% | 100% | 100% | 100% | 62.42% | 89.46% | 0% | 100% | 100% | 6.15% | 100% | 6.12% | 100% | 98.91% | 0.7% | 100% | 100% | 99.68% | 100% | 44.75% | 100% | 1.53% | 99.97% | NA | 100% | 100% | NA | 99.65% | NA | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 99.92% | 68.18% | 100% | 2.52% | 2.88% | 100% | 0.41% | 100% | 100% | 100% | 1.7% | 100% | 99.89% | 100% | 100% | 100% | 100% | 100% | 0.04% | 100% | 8.04% | 99.4% | 100% | 7.35% | 100% | 81.43% | 100% | 100% |
007C | CODEN | 0% | 0% | NA | NA | NA | 0% | NA | NA | 0% | NA | NA | 0% | NA | NA | 0% | NA | 0.02% | NA | NA | NA | NA | NA | NA | NA | NA | 0% | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | 0.02% | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA |
007D | Supplier production number | 0.28% | 0.41% | 0% | 0% | 0% | 0% | 1.86% | NA | 0% | NA | NA | 1.32% | NA | 0.76% | 1% | NA | 0% | NA | NA | NA | NA | 3.25% | NA | NA | 0.06% | 0.01% | NA | NA | NA | NA | 0% | NA | NA | NA | NA | NA | NA | NA | NA | NA | 0.02% | NA | NA | NA | NA | NA | NA | 2.27% | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA |
007P | Fingerprint | 18.79% | 1.91% | 84.75% | NA | NA | 0% | 10.19% | 99.69% | NA | NA | 0.41% | 0.03% | 28.27% | 0% | NA | NA | 1.8% | 2.51% | NA | NA | NA | NA | NA | NA | NA | 0.01% | NA | NA | 0.02% | 26.85% | NA | 99.92% | NA | 2.45% | NA | NA | NA | 22.89% | NA | 98.83% | NA | 40.07% | NA | 33.19% | NA | NA | NA | NA | NA | NA | 0.7% | 63.15% | 99.26% | NA | NA | NA | NA | 100% | NA | NA | 0.33% | NA | 0.18% | NA | NA | NA | NA |
007S | Bibliografische Zitate (Alte Drucke) | 17.29% | NA | 1.83% | 3.32% | 7.66% | 20.03% | 14.16% | 0% | 40.86% | 21.52% | 40.3% | 47% | 21.04% | 26.34% | 12.24% | 100% | 27.64% | 3.34% | 34.77% | 0% | 64.88% | 67.18% | 55.25% | 13.76% | 40.63% | 17.97% | 34.63% | 20.21% | 39.81% | 0.09% | 75% | 36.62% | 100% | 12.85% | 6.97% | NA | 57.34% | 52.22% | 4.94% | 97.93% | 34.86% | 10.54% | 9.81% | 46.64% | 100% | 12.01% | 1.21% | 10.86% | 34.85% | NA | 94.48% | 85.54% | 89.77% | 53.67% | 100% | 0.06% | 3.77% | 99.92% | 86.55% | 12.11% | 2.85% | 99.77% | 98.57% | 24.45% | 13.57% | 60% | 50% |
007Y | Sonstige Standardnummern | 0.62% | 48.39% | NA | 0.54% | 0.19% | 0.28% | 6.28% | NA | 0.03% | 0% | NA | 0.26% | 2.9% | 0.84% | 0.16% | 100% | 0.01% | NA | NA | 1.85% | NA | 0.07% | NA | 0% | NA | 0.4% | NA | NA | NA | NA | 0.12% | NA | NA | NA | 0.03% | 1.65% | 99.99% | NA | NA | NA | 3.4% | NA | 0.08% | 0.06% | NA | NA | NA | NA | NA | NA | 100% | NA | NA | 2.55% | NA | NA | 0.04% | NA | NA | 0.76% | NA | NA | NA | NA | NA | NA | NA |
009@ | Data for ILL | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% |
009A | Location original | 0% | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA |
009B | Location master microforms | 99.99% | 98.36% | 99.6% | 100% | 100% | 100% | 96.84% | 98.8% | 100% | 98.08% | 100% | 100% | 100% | 97.04% | NA | 94.15% | 99.07% | 100% | 100% | 98.48% | 100% | 100% | 99.55% | 100% | 97.17% | 100% | 99.98% | 100% | 92.39% | 100% | 100% | 99.97% | 99.94% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 99.44% | 100% | 99.99% | 100% | 100% | 100% | 99.98% | 100% | 100% | 100% | 100% | 99.88% | 100% | 100% | 99.86% | 100% | 81.89% | 100% | 99.89% | 100% | NA | 100% | 99.29% | 100% | 100% |
010@ | Language designation | 72.24% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 99.81% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 98.38% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 99.98% | 100% | 100% | 100% | 100% | 93.86% | 100% | 100% | 100% | 100% | 99.95% | 100% | 100% | 100% | 65% | 100% | 100% |
011@ | PublicationDate | 99.49% | 99.99% | 99.92% | 99.98% | 100% | 99.97% | 100% | 100% | 99.6% | 99.6% | 100% | 99.93% | 100% | 99.99% | 99.94% | 99.96% | 99.13% | 99.68% | 99.89% | 99.72% | 57.22% | 99.99% | 100% | 100% | 100% | 99.94% | 98.11% | 100% | 99.89% | 99.24% | 99.95% | 99.71% | 99.96% | 99.99% | 100% | 99.95% | 100% | 99.67% | 100% | 99.55% | 99.69% | 100% | 99.92% | 99.78% | 93.5% | 5.68% | 99.12% | 98.3% | 99.57% | 99.86% | 100% | 98.47% | 99.15% | 100% | 100% | 91.79% | 98.27% | 99.96% | 100% | 99.57% | 99.67% | 99.77% | 100% | 100% | 95.71% | 100% | 75% |
013H | Veröffentlichungsart und Inhalt | 1.95% | 6.26% | NA | NA | NA | 2.1% | 0.03% | NA | 4.05% | NA | NA | 11.62% | 0.24% | 4.87% | 5.49% | NA | 0.01% | 2.11% | NA | NA | 0.03% | 0.91% | NA | NA | 5.22% | 0.1% | NA | NA | 0.14% | NA | 0.18% | 0.33% | NA | 0.01% | 0.01% | 0.88% | NA | 0.42% | NA | 0.01% | 0.58% | NA | 0.09% | NA | NA | NA | 0.28% | 2.68% | NA | NA | NA | 0.29% | 0.07% | 0.91% | NA | NA | NA | NA | NA | 0.11% | NA | NA | 0.18% | NA | NA | NA | NA |
017H | URL für sonstige Angaben zur Ressource | 9.07% | 100% | 100% | 100% | 0.22% | 1.54% | 6.94% | 56.06% | 2.78% | 18.64% | 83.61% | 5.93% | 11.77% | 5.17% | 0.17% | 100% | 2.25% | 0.44% | 0.08% | 0.6% | 0.04% | 49.13% | NA | 0.01% | 100% | 0.06% | 0.05% | NA | NA | 2.09% | 0.04% | 81.98% | NA | 8.11% | 100% | 10.66% | NA | 12.05% | NA | 0.93% | NA | NA | 1.07% | 100% | 34.2% | 0.2% | 100% | 2.37% | NA | NA | 0.07% | 17.5% | 1.94% | NA | NA | 0.17% | 0.11% | 0.13% | NA | 11.3% | 0.11% | 6.03% | 3.94% | NA | NA | 100% | NA |
019@ | Country code | 57.42% | 5.5% | 100% | 100% | 100% | 99.95% | 99.97% | 100% | 100% | 99.81% | 100% | 100% | 100% | 100% | 100% | 99.96% | 100% | 100% | 100% | 100% | 96.11% | 99% | 100% | 100% | 100% | 100% | 98.11% | 100% | 100% | 100% | 99.94% | 99.71% | 100% | 100% | 99.3% | 11.01% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 99.96% | 98.52% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 99.64% | 100% | 75% |
021A | Title and statement of responsibility area | 86.13% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 53.08% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 89.31% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 92.64% | 100% | 100% | 100% | 100% | 100% | 100% | 96.94% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 90.72% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% |
021B | Title on the second or intermediate level of a multi-level description | 0.04% | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA |
021C | Dependent title | 0.03% | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA |
021G | Paralleltitel, paralleler Titelzusatz, parallele Verantwortlichkeitsangabe | 0.75% | 0.67% | NA | 0.06% | 0.69% | 0.38% | 0.04% | 0.66% | 0.23% | NA | NA | 1.35% | 0.79% | 0.49% | 0.31% | NA | 1.33% | 0.7% | 0.13% | 0.14% | 0.42% | 0.54% | 0% | 0.07% | 1.53% | 0.49% | NA | 0.04% | 0.67% | NA | 0.71% | NA | NA | 0.73% | 1.86% | 0.61% | 0.02% | 1.43% | 0.25% | 2.98% | 0.8% | 1.36% | 2.39% | 2.88% | NA | 0.41% | 0.97% | 0.87% | 0.4% | 1.7% | 0.79% | 1.58% | 1.48% | 0.73% | 0.05% | 0.09% | NA | 0.04% | 1.77% | 7.5% | 0.05% | 2.06% | 0.54% | 0.94% | NA | NA | NA |
021M | Weitere Titel etc. bei Zusammenstellungen | 0.44% | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA |
022A | Uniform heading | 0.85% | 3.57% | 1.89% | 24.55% | 3.21% | 13.65% | 4.23% | 9.16% | 18.53% | 9.25% | 1.52% | 26.34% | 3.25% | 14.98% | 12.45% | 13.39% | 1.55% | NA | 0.2% | 2.59% | 17.85% | 12.61% | 3.4% | 1.72% | 4.83% | 14.6% | 18.28% | 0.7% | 0.4% | 0.99% | 16.88% | 1.7% | 19.52% | 5.75% | 0.11% | 5.41% | 66.43% | 18.72% | NA | 20% | 21.01% | 10.42% | 12.16% | 19.95% | NA | 4.35% | 0.2% | 3.79% | 0.86% | 9.99% | 6.06% | 35.72% | 41.69% | 0.61% | 31.12% | 24.74% | 12.61% | 0.55% | 0.59% | 4.94% | 0.99% | 5.34% | 64.16% | 7.21% | 18.21% | NA | NA |
022S | Formal main title (manuscripts) | 1.58% | 1.26% | NA | 0.03% | 0.62% | 0.02% | 0.04% | NA | 0.15% | 1.06% | NA | 0.02% | 0.06% | 0% | 0.47% | NA | NA | NA | NA | NA | 0.92% | 1.13% | 3.42% | 0.01% | NA | NA | 4.22% | NA | NA | 0.01% | 1.1% | NA | 7.43% | 0.25% | NA | NA | NA | NA | NA | NA | 1.75% | NA | NA | 0.99% | NA | 0.24% | NA | NA | 0.01% | 1.63% | NA | NA | NA | NA | 4.05% | NA | 0.21% | NA | NA | NA | NA | NA | NA | 0.94% | NA | NA | NA |
025@ | Filing title | 15.34% | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA |
026@ | Key-title | 0.01% | NA | NA | 0.21% | NA | 0.01% | NA | 0% | 0.01% | NA | NA | 0.01% | 0.01% | 0.01% | 0.04% | NA | 0.01% | NA | NA | NA | 0.56% | 1.13% | NA | NA | NA | 0.03% | NA | NA | NA | 0.2% | NA | NA | NA | 0.03% | NA | NA | NA | 0.02% | NA | NA | 1.16% | NA | 0.01% | 0.01% | NA | NA | 0.01% | NA | NA | NA | NA | 0.23% | NA | 0.04% | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA |
026C | Abbreviated key-title | 0.01% | 0% | NA | 0.04% | NA | 0% | 0.03% | NA | 0.01% | 0% | NA | 0.01% | 0.01% | 0.01% | 0.01% | NA | 0% | NA | 0.03% | NA | NA | 0% | NA | NA | 0.01% | 0.02% | NA | NA | NA | 0.15% | NA | NA | NA | 0.02% | NA | NA | NA | 0.01% | NA | NA | NA | NA | 0.01% | NA | NA | 1.11% | NA | NA | NA | NA | NA | 0.2% | NA | 0.06% | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA |
027A | Secondary title entry | 14.93% | 25.12% | 19.81% | 7.26% | 21.17% | 23.44% | 41.32% | 27.49% | 12.56% | 24.11% | 43.5% | 62.24% | 29.19% | 29.38% | 15.98% | 99.84% | 31.49% | 1.02% | 5.31% | 3.2% | 20.63% | 26% | 34.25% | 7.59% | 24.15% | 21.54% | 26.97% | 14.59% | 22.67% | 29.69% | 21.39% | 37.94% | 4.95% | 8.37% | 43.14% | 16.75% | 2.45% | 41.46% | NA | 77.27% | 44.63% | 2.39% | 7.56% | 30.95% | NA | 55.43% | 44.94% | 2.22% | 2.66% | 19.49% | 16.09% | 61.96% | 64.84% | 29.3% | 8.53% | 37.84% | 40.79% | 15.61% | 26.02% | 7.33% | 20.34% | 85.35% | 71.86% | 11.91% | 18.21% | 60% | NA |
028A | Primary author | 75.53% | 73.82% | 59.52% | 50.35% | 80.11% | 74.37% | 74.18% | 55.09% | 73.18% | 73.18% | 78.44% | 78.02% | 55.79% | 77.57% | 81.7% | 80.25% | 74.76% | 61.39% | 78.09% | 44.12% | 71.14% | 67.27% | 76% | 91.2% | NA | 86.04% | 82.71% | 71.7% | 47.47% | 77.99% | 77.49% | 57.74% | 87.71% | 89.33% | 79.12% | 80.22% | 52.64% | 82.51% | 82.84% | 87.96% | NA | 90.26% | 70.06% | 79.77% | 80.43% | 87.32% | 70.17% | 79.85% | 66.39% | 64.6% | 85.57% | 80.83% | 83.12% | 72.5% | 69.43% | 81.65% | 81.51% | 56.7% | 56.36% | 84.36% | 64.58% | 64.53% | 82.08% | 85.58% | 74.64% | NA | NA |
028B | Coauthor/sender | 7.79% | 8.38% | 2.91% | 1.89% | 5.38% | 0.02% | 4.43% | NA | 0.06% | 1.83% | 4.02% | 0.15% | 1.15% | 0.43% | 0.1% | 6.02% | 0.81% | 0.02% | NA | 1.07% | 0.02% | 0.05% | NA | 0.04% | NA | 0.43% | 0.27% | 1.91% | 2.74% | 3.03% | 0.31% | 3.74% | NA | NA | 0.12% | 0.01% | NA | 0.04% | 0.58% | 0.01% | NA | 0.6% | 0.56% | 1.15% | NA | 0.01% | 0.55% | NA | 0.04% | 0.01% | NA | NA | NA | 1.47% | 0.08% | NA | 0.04% | NA | 0.49% | 5.98% | NA | 1.68% | NA | NA | 3.57% | NA | NA |
028C | Secondary author/receiver | 39.38% | 24.53% | 20.99% | 23.98% | 33.43% | 33.4% | 33.25% | 16.64% | 23.02% | 50.48% | 76.77% | 69.99% | 21.35% | 42.2% | 21.99% | 38.15% | 36.92% | 19.6% | 12.36% | 14.56% | 32.88% | 31.26% | 39.53% | 31.94% | 76.99% | 39.92% | 53.4% | 85.76% | 43.22% | 26.89% | 28.03% | 19.39% | 95.13% | 88.22% | 40.93% | 18.89% | 91.67% | 47.31% | NA | 85.97% | 56.83% | 42.38% | 41.29% | 66.32% | 27.33% | 29.07% | 50.3% | 78.06% | 56.47% | 51.41% | 1.52% | 72.9% | 92.25% | 13.62% | 87.55% | 33.18% | 39.59% | 89.78% | 25.28% | 16.95% | 38.49% | 86.42% | 94.98% | 22.88% | 85% | 80% | 25% |
028E | Interpret | 0.15% | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA |
028G | Sonstige Person/Familie | 14.07% | 0% | NA | 2.93% | 6.05% | 5.88% | 0.02% | NA | 2.87% | NA | NA | 44.73% | 0.01% | 6.84% | 0.01% | NA | 15.48% | NA | NA | NA | 27.14% | 25.96% | NA | 0.08% | 0.14% | 9.15% | NA | NA | 3.4% | NA | 3.75% | NA | NA | NA | 22.53% | NA | NA | 0.05% | NA | 1.79% | 53.34% | 19.69% | 5.51% | 61.46% | NA | 12.66% | 0.56% | 39.37% | 1.38% | 88.89% | 0.34% | 62.99% | 46.21% | NA | 27.65% | NA | NA | NA | 0.05% | 0.27% | NA | NA | 58.96% | NA | NA | 20% | NA |
028N | NA | 0.01% | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA |
028Z | Abweichende Namen in Nicht-RDA-Sätzen, Importdaten | 30.7% | NA | NA | NA | NA | NA | NA | 0.13% | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | 27.77% | NA | NA | NA | NA | NA | NA | NA | NA | 24.17% | NA | NA | NA | NA | NA | NA | NA | NA | NA | 0.14% | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA |
029A | Körperschaft als 1. geistiger Schöpfer | 0.61% | 0.53% | 7.55% | 16.1% | 2.22% | 9.37% | 1.65% | NA | 11.69% | 8.92% | 0.14% | 5.57% | 0.49% | 6.4% | 3% | 1.56% | 0.03% | 15.18% | NA | 0% | 10.1% | 16.85% | 2.36% | 3.57% | NA | 3.09% | 4.84% | 4.63% | 0.46% | 1.33% | 9.32% | 13.82% | 3.92% | 4.27% | NA | 3.3% | 25.27% | 1.96% | NA | 1.56% | 0.04% | 2.17% | 1.09% | 4.48% | NA | 4.57% | 0.01% | 0.12% | 0.01% | 11.37% | 1.67% | 1.38% | 1.59% | 0.77% | 14.94% | 7.59% | 5.18% | NA | 0.64% | 0.11% | 1.86% | 20.14% | 3.94% | 2.51% | NA | NA | NA |
029E | Körperschaft als Interpret | 0% | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA |
029F | Corporate Author | 5.4% | 20.16% | 72.55% | 7.19% | 38.87% | 10.34% | 12.86% | 82.31% | 11.36% | 50.62% | 93.97% | 88.28% | 58.8% | 18.95% | 2.67% | 3.37% | 3.99% | 2.79% | 0.12% | 25.41% | 29.16% | 15.65% | 40.36% | 59.27% | 38.14% | 25.79% | 98.67% | 96.93% | 60.5% | 6.03% | 4.09% | 1.92% | 98.97% | 97.34% | 67.14% | 2.04% | 0.13% | 36.82% | NA | 95.44% | 9.38% | 99.98% | 18.37% | 64.77% | 95.6% | 1.39% | 47.6% | 5.53% | 66.83% | 98.88% | 70.39% | 65.88% | 95.58% | 77.15% | 99.4% | 3.49% | 8.49% | 97.88% | 80.51% | 1.58% | 5.98% | 97.64% | 99.28% | 0.94% | 18.93% | 60% | NA |
029G | Sonstige Körperschaft | 0.3% | NA | 0.07% | 0.22% | 0.81% | 0.82% | 7.09% | 13.31% | 0.5% | NA | 29.67% | 2.25% | 2.89% | 5.27% | 0% | NA | 15.6% | NA | NA | NA | 3.09% | 5.35% | NA | 0.1% | 0.03% | 1.95% | 10.75% | NA | 1.11% | 20.86% | 0.15% | NA | NA | NA | 0.62% | NA | NA | NA | NA | NA | 44.98% | 32.49% | NA | 44.02% | NA | 0.56% | 2.34% | 6.76% | 0.12% | 0.01% | 0.36% | NA | 94.08% | NA | 9.26% | NA | NA | NA | NA | NA | NA | NA | 38.71% | NA | 2.14% | NA | NA |
029K | NA | 2.35% | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | 0% | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA |
030F | Meeting Name | 0.02% | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA |
031@ | Numbering area (serials) | 0.89% | 0.85% | 0% | 0.88% | NA | 1.08% | 5.9% | NA | 0.44% | NA | NA | 0.77% | 0.21% | 0.75% | 0.3% | NA | 0.64% | 0.16% | 0.14% | 0% | 0.37% | 0.12% | NA | NA | NA | 1.24% | NA | NA | NA | 0.7% | 0.26% | NA | NA | 0.05% | NA | NA | NA | 0.38% | NA | NA | 0.92% | NA | 0.08% | 0.01% | NA | NA | 0.25% | 1.38% | 0.21% | 0.79% | NA | 6.24% | NA | 1.37% | NA | NA | 0.04% | NA | NA | NA | 0.22% | NA | NA | NA | NA | 100% | NA |
031A | Numbering area (articles) | 7.3% | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA |
032@ | Edition area | 10.74% | 11.76% | 8.24% | 1.34% | 6.76% | 11.78% | 14.02% | 9.84% | 9.66% | 10.16% | 11.02% | 12.82% | 8.65% | 10.48% | 11.62% | NA | 13.61% | 3.75% | 7.38% | 0.44% | 5.35% | 12.73% | NA | 13.83% | 0.39% | 16.5% | 11.56% | 3.2% | 7.86% | 13.41% | 22.42% | 19.69% | 5.28% | 19.21% | 12.13% | 9.21% | 0.25% | 17.56% | NA | 19.3% | NA | 6.25% | 7.3% | 8.3% | NA | 7.62% | 13.59% | 9.23% | 5.66% | 6.49% | 0.16% | 13.87% | 11.58% | 6.43% | NA | 18.72% | 12.36% | 0.55% | 9.08% | 8.91% | 11.51% | 16.09% | 0.18% | 17.55% | 5.71% | NA | NA |
033A | First publisher | 90.79% | 100% | 87.34% | 99.83% | 100% | 99.39% | 89.91% | 100% | 99.96% | 100% | 62.98% | 99.75% | 100% | 95.83% | 98.57% | 0% | 99.98% | 97.73% | 99.99% | 99.96% | 100% | 99.26% | 100% | 99.95% | 100% | 98.14% | 99.94% | 100% | 83.05% | 99.95% | 99.86% | 99.75% | 100% | 99.99% | 100% | 100% | 99.97% | 100% | 100% | 100% | 99.93% | 100% | 99.92% | 99.93% | 100% | 99.96% | 99.99% | 99.66% | 96.37% | 100% | 100% | 100% | 100% | 99.98% | 100% | 99.91% | 99.58% | 100% | 100% | 100% | 99.95% | 100% | 99.46% | 99.37% | 98.93% | 100% | 100% |
033B | 2nd and following publisher | 0.11% | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA |
033D | STCN printer | 70.44% | 73.45% | NA | 44.88% | 56.43% | 72.7% | 62% | 86.09% | 85.22% | 76.44% | 42.32% | 76.64% | 80.06% | 71.42% | 83.94% | 0% | 81.64% | 74.32% | 50.07% | 80.73% | 88.55% | 82.19% | 87.78% | 74.29% | 53.67% | 74.73% | NA | 64.55% | 60.66% | 75.7% | 91.23% | NA | 73.12% | 65.94% | 70.69% | 49.79% | 65.2% | 52.15% | 64.37% | 41.78% | 83.99% | 43.5% | 58.05% | 42.45% | 69.09% | NA | 64.72% | 68.27% | 65.66% | 29.29% | 80.45% | 42.5% | 58.18% | 88.32% | 77.11% | 99.83% | 72.63% | 87.96% | 75.9% | 42.1% | 84.1% | 37.76% | 65.05% | 67.71% | 55% | 60% | 25% |
033H | Verbreitungsort in normierter Form | 0.11% | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA |
033J | PPN printer STCN | 7.57% | 8.48% | NA | 8.7% | 7.46% | 6.56% | NA | 2.46% | 1.55% | NA | NA | 2.04% | 3.5% | 7.41% | 3.79% | NA | 3.37% | 9.74% | NA | NA | 1.66% | 3.71% | 30.57% | NA | 2.33% | 9.31% | NA | NA | NA | NA | 1.13% | NA | NA | NA | NA | 8.84% | NA | 1.89% | NA | 4.34% | 5.86% | NA | 6.79% | 5.52% | NA | 3.93% | NA | NA | NA | 0.68% | NA | 5.81% | 3.85% | NA | NA | 7.16% | NA | 0.47% | NA | 10.16% | 7.46% | NA | 25.27% | NA | NA | NA | NA |
034D | Pagination, volumes | 68.99% | 72.59% | 98.76% | 95.03% | 91.75% | 98.57% | 78.08% | 98.77% | 83.38% | 99.98% | 100% | 99.56% | 52.65% | 97.13% | 80.46% | 99.96% | 100% | 77.2% | 98.75% | 85.35% | 93.75% | 97.28% | 28.97% | 99.97% | 99.93% | 97.68% | 99.67% | NA | 81.39% | 99.35% | 99.45% | 99.96% | 52.31% | 99.94% | 99.94% | 98.17% | 99.87% | 98.85% | NA | 99.62% | 99.23% | 99.99% | 98.97% | 95.93% | 99.7% | 99.84% | 97.84% | 84.98% | 78.21% | 99.93% | 99.91% | 92.82% | 99.59% | 68.98% | 100% | 98.44% | 99.86% | 99.96% | 92.15% | 27.92% | 98.08% | 99.77% | 99.82% | 99.69% | 98.93% | NA | 75% |
034I | Dimensions (height, depth, thickness) | 55.48% | 18.65% | 78.07% | 11.66% | 94.87% | 95.86% | 21.45% | 100% | 94.72% | 99.77% | 99.89% | 96.45% | 100% | 91.37% | 84.93% | 99.73% | 100% | 89.36% | 2.32% | 88.84% | 56.29% | 69.78% | 98.53% | 99.12% | NA | 95.72% | 99.21% | 100% | 58.72% | 45.5% | 98.03% | NA | 47.47% | 99.51% | 97.23% | 11.26% | 99.73% | 99.98% | 99.8% | 99.88% | 96.46% | 99.93% | 92.77% | 98.17% | 99.83% | 97.06% | 76.81% | 89.59% | 81.76% | 99.53% | 99.87% | 99.93% | 99.96% | 99.64% | 87.7% | 73.61% | 55.44% | 99.96% | 84.54% | 27.16% | 95.83% | 100% | 99.82% | 83.39% | 94.29% | 100% | 100% |
034K | Accompanying material | 0.14% | 0.19% | 0.09% | 0.01% | 0.19% | 0.07% | 0.2% | NA | 0.03% | 0.03% | 0.01% | 0.06% | 0.1% | 0.09% | 0.46% | 0% | 0.16% | 0.53% | NA | NA | 0.01% | 0.03% | NA | 0.07% | NA | 0.15% | 0.07% | NA | NA | 0.01% | 0.01% | NA | NA | 0.03% | 0.03% | 0.22% | 1.28% | 0.11% | NA | NA | 0.33% | 0.17% | 0.14% | 0.08% | NA | 0.01% | 0.18% | 0.55% | 0.1% | NA | NA | 0.04% | NA | 0.24% | 0.38% | NA | 0.6% | NA | 0.2% | NA | 0.05% | NA | NA | 0.31% | 0.71% | NA | NA |
034M | Illustration statement | 13.65% | 17.65% | 14.94% | 1.24% | 16.91% | 21.76% | 20.54% | NA | 8.57% | 6.07% | 11.88% | 24.2% | 17.8% | 22.18% | 13.18% | 69.94% | 16.81% | 19.99% | 7.87% | 0.09% | 7.44% | 17.02% | 5.71% | 34.27% | NA | 33.59% | 27.83% | NA | 4.09% | 43.89% | 21.86% | NA | 2.43% | 9.9% | 7.16% | 13.8% | 1.05% | 20.85% | NA | 19.18% | 36.68% | 13.12% | 20.91% | 24.72% | 67.53% | 14.54% | 21.61% | 4.4% | 4.81% | 11.85% | 1.15% | 20.27% | 15.54% | 10.75% | 13.18% | 0.34% | 35.51% | 1.27% | 69.61% | 8.26% | 34.7% | 15.33% | 16.13% | 38.24% | 10.71% | NA | NA |
035E | Musical presentation statement | 0.8% | 4% | 0.11% | 0% | 0% | 2.09% | 0.72% | NA | 4.13% | 0% | 0.35% | 2.62% | 0.11% | 1.25% | 0.08% | NA | 0% | 1.61% | NA | NA | 0.01% | 0.31% | NA | NA | 4.27% | 0.01% | NA | NA | NA | 3.24% | 0.01% | NA | NA | NA | NA | 0.18% | NA | 0.5% | NA | NA | 0.05% | NA | 0.01% | NA | NA | NA | 0.25% | NA | NA | 0.01% | NA | 0.02% | NA | NA | NA | NA | NA | NA | NA | 0.05% | NA | NA | 0.18% | 0.63% | NA | NA | NA |
035F | Map projection | 0% | NA | NA | NA | NA | 0% | NA | NA | 0% | NA | 0% | 0% | 0% | 0.07% | NA | NA | NA | 0.01% | NA | NA | NA | NA | NA | NA | 0.01% | NA | NA | NA | NA | NA | 0% | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA |
035G | Co-ordinates | 0.04% | NA | 0% | NA | NA | 0.57% | NA | NA | NA | NA | 0.33% | 0.01% | 0.05% | 0.09% | 0.01% | NA | 0% | 0.68% | NA | NA | NA | 0% | NA | NA | 4.04% | 0% | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | 0.11% | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA |
036C | Link multi-volume publication (text) | 22.2% | NA | NA | 0.24% | 0.04% | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | 4.62% | NA | 10.59% | NA | NA | NA | NA | NA | NA | NA | NA | 33.45% | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | 25.34% | NA | NA | NA | NA | NA | NA | 6.07% | NA | NA | NA | NA | 1.37% | NA | NA | NA | NA | 14.87% | NA | NA | NA | NA | NA | NA | NA | NA |
036D | Link to multi-volume publication | 22.17% | NA | NA | 0.25% | 0.04% | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | 4.62% | NA | 10.59% | NA | NA | NA | NA | NA | NA | NA | NA | 34.16% | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | 25.42% | NA | NA | NA | NA | NA | NA | 6.68% | NA | NA | NA | NA | 1.6% | NA | NA | NA | NA | 14.87% | NA | NA | NA | NA | NA | NA | NA | NA |
036E | Extra link serial publication | 1.97% | 7.06% | 18.41% | 0.17% | 1.61% | 2.4% | 4.68% | 1.48% | 1.08% | 0.44% | NA | 3.22% | 0.82% | 2.29% | 1.82% | NA | 3.74% | 0.12% | 0.96% | 0.62% | 0.4% | 3.14% | NA | 0.44% | 4.16% | 9.78% | 6.5% | 0.8% | 3.61% | 1.91% | 3.49% | NA | 0.01% | 0.36% | 3.98% | 1.54% | 0.03% | 7.89% | 0.28% | 2.67% | 3.11% | 0.18% | 1.7% | 0.64% | NA | 0.09% | 1.7% | 2.42% | 1.16% | 3.23% | NA | 6.28% | 1.3% | 6.81% | 0.1% | 1.73% | 14.9% | NA | 0.29% | 2.17% | 2.47% | 15.64% | NA | 4.08% | NA | NA | NA |
036F | Link serial publication | 1.3% | 3.79% | 0.46% | 0.07% | NA | NA | 1.53% | NA | NA | NA | NA | NA | NA | NA | NA | NA | 0% | 0.01% | NA | 0% | NA | NA | NA | NA | NA | 0% | NA | NA | NA | NA | 0% | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | 0.56% | NA | NA | NA | NA | NA | 0.55% | NA | NA | NA | NA | 5.31% | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA |
037A | General note | 47.07% | 24.57% | 89.01% | 25.98% | 48.1% | 75.89% | 32.75% | 99.89% | 53.57% | 74.97% | 0.26% | 91.07% | 67.5% | 99.71% | 84.05% | 93.31% | 60.64% | 55.3% | 25.61% | 89.66% | 64.11% | 100% | 64.16% | 84.37% | 77.36% | 68.71% | 99.85% | 35.84% | 40.24% | 97.72% | 88.77% | 99.99% | 41.43% | 32.61% | 53.24% | 23.83% | 91.6% | 42.55% | 31.98% | 90.39% | 86.65% | 96.33% | 47.13% | 68.25% | 49.65% | 74.86% | 64.37% | 65.64% | 28.81% | 100% | 72.8% | 84.12% | 90.9% | 56.64% | 64.78% | 51.45% | 52.31% | 53.1% | 42.91% | 36.28% | 90.84% | 88.71% | 100% | 45.14% | 30.71% | 100% | NA |
037C | Note bibliography/index | 6.09% | 1.72% | NA | 1.82% | 8.84% | 1.51% | 4.57% | NA | 0.03% | NA | 0.02% | 0.34% | 2.02% | 0.12% | 0.27% | NA | 0% | 0% | 3.84% | NA | NA | 0.11% | NA | 11.45% | NA | 0.06% | NA | NA | NA | NA | 0.01% | NA | NA | 0.01% | 5.84% | 0.97% | 25.81% | 2.01% | NA | NA | 0.39% | NA | 0.31% | 0.23% | NA | 0.04% | 3.27% | 0.04% | NA | NA | NA | 0.05% | NA | 19.09% | NA | NA | 0.28% | NA | NA | NA | 0.05% | NA | NA | NA | NA | NA | NA |
039B | Note relation to greater part | 8.55% | 28.33% | 0.89% | NA | NA | 0.48% | 33.94% | 10.39% | 0.2% | 0% | NA | 2.28% | 0.37% | 5.13% | 0.18% | NA | NA | 0.8% | NA | NA | 2.39% | 0.3% | NA | NA | 3.41% | 1.69% | NA | NA | 2.03% | NA | NA | NA | NA | 2.59% | 0.03% | 29.76% | NA | NA | NA | NA | 0.01% | NA | 0.02% | 0.05% | NA | NA | NA | NA | NA | NA | NA | NA | NA | 2.3% | NA | NA | NA | NA | 0.1% | NA | 0.05% | NA | NA | NA | NA | NA | NA |
039C | Note relation to smaller part | 0.26% | NA | 0.14% | 0.58% | 0.87% | NA | NA | NA | NA | 0% | NA | 0.02% | NA | 0.18% | NA | 13.35% | NA | NA | NA | NA | 0.01% | NA | NA | NA | 0.01% | NA | NA | NA | 12.49% | NA | NA | NA | NA | 0.83% | 0.11% | NA | NA | NA | NA | NA | NA | 9.13% | 0.01% | 1.86% | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | 0.18% | NA | NA | NA | NA |
039D | Note horizontal relation | 10.02% | 0.92% | 0.54% | 1.08% | 4.18% | 4.45% | 6.27% | 0% | 0.06% | 0.03% | 38.43% | 0.23% | 4.78% | 0.1% | 0.02% | NA | 2.22% | 0.02% | NA | 2.89% | 0.39% | 0.03% | NA | NA | 0.14% | 0.39% | NA | NA | 1.66% | 13.94% | 0.07% | 4.43% | NA | 0.07% | 3.13% | 0.67% | 0.37% | 3.41% | NA | 1.62% | 4.79% | 1.22% | 0.05% | 3.03% | NA | 0.04% | 2.34% | 0.82% | 2.35% | NA | NA | 0.59% | 33.83% | 6.47% | NA | NA | 0.07% | NA | 2.31% | 0.49% | 0.05% | NA | 0.18% | NA | NA | 20% | NA |
039E | Note chronological relation | 0.54% | 0.39% | 0.01% | 0.29% | 0.01% | 0.4% | 2.72% | 0.08% | 0.23% | 0% | NA | 0.38% | 0.07% | 0.28% | 0.18% | NA | 0.01% | 0.04% | NA | 0.04% | 0.04% | 0.28% | NA | 0% | 0.04% | 0.42% | NA | NA | 5.67% | 0.14% | 0.06% | NA | NA | 0.17% | 1.77% | 0.01% | NA | 0.12% | NA | NA | 0.53% | 21.58% | 0.08% | 17.81% | NA | 0.01% | 0.48% | 2.9% | 0.48% | NA | 91.7% | 2.25% | 0.2% | 2.12% | NA | NA | 0.04% | NA | 5.6% | NA | 0.22% | 3.36% | NA | NA | NA | 60% | NA |
039P | Link to description in other language | 0.11% | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA |
039Q | Link to original document without expansion | 0.09% | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA |
039S | Link to the same title in several databases (PiCarta International) | 0.03% | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA |
044N | Form descriptor (GOO) | 3.98% | 0.04% | NA | 12.97% | 16.45% | 75.77% | 4.3% | 98.51% | 41.45% | NA | NA | 90.17% | 58.64% | 85.75% | 45.66% | NA | 26.35% | NA | 41.42% | 86.87% | 72.52% | 83.92% | 44.34% | 47.46% | 90.81% | 71.63% | NA | 2.46% | 11.4% | NA | 81.53% | 99.91% | 9.44% | 34.69% | 58.87% | 24.18% | 97.15% | 22.32% | 87.73% | 0.41% | 91.42% | NA | 56.5% | 48.91% | 33.5% | 82.15% | 91.21% | 6.13% | 2.68% | 99.15% | 0.11% | 94.57% | 9.07% | 99.76% | 67.5% | 73.15% | NA | 100% | 21.31% | 97.5% | 97.09% | 71.7% | 92.29% | 78.06% | NA | 80% | 100% |
045A | LC classification | 0% | NA | NA | NA | NA | NA | NA | NA | 0% | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | 0.55% | NA | NA | NA | NA | NA | NA | NA | NA | NA | 26.02% | NA | NA | NA |
045F | Dewey classification | 0% | 0.31% | 0.09% | 0.21% | 0.99% | 0.9% | 0.78% | NA | 0.16% | 0% | NA | 0.46% | 1.21% | 3.37% | 0.22% | NA | 0.11% | NA | 0.01% | NA | NA | 5.15% | NA | NA | 0.23% | 4.7% | NA | NA | NA | NA | 0.39% | NA | NA | 0.05% | NA | 6.84% | NA | NA | NA | NA | 0.45% | NA | 0.61% | 0.44% | NA | NA | NA | NA | NA | NA | NA | NA | NA | 0.22% | NA | 1.99% | 100% | NA | NA | 2.93% | 87.66% | NA | NA | 1.25% | NA | NA | NA |
046D | Frühere/frühester Haupttitel (nur für fortlaufende und integrierende Ressourcen) | 24% | 25.13% | 19.8% | 7.26% | 19.03% | 17.63% | 40.93% | 0.22% | 9.79% | 7.75% | 1.5% | 18.24% | 0.12% | 22.43% | 10.65% | 99.84% | 31.09% | 1.02% | 5.31% | 3.19% | 8.18% | 22.57% | 34.25% | 5.49% | 0.23% | 17.8% | 5.16% | 1.32% | 17.99% | 27.13% | 12.25% | 34.57% | 4.95% | 8.21% | 42.95% | 16.29% | 2.45% | 19.95% | NA | 14.11% | 38.56% | 1.81% | 7.13% | 30.95% | NA | 5.74% | 44.9% | 2.18% | 2.61% | 11.53% | 0.86% | 27.99% | 22.58% | NA | 8.53% | 12.13% | 34.27% | 0.42% | 25.92% | 3.53% | 19.13% | 35.09% | 29.75% | 11.91% | 1.43% | 20% | NA |
046H | Anmerkung zur Veröffentlichungsangabe und zum Copyright-Datum | 0.01% | 0.4% | 7.5% | 0.4% | 3.6% | 0.43% | NA | 0% | 0.5% | 5.14% | 0.82% | 0.29% | 4.12% | 0.28% | 0.09% | NA | 0% | 0% | NA | 0.01% | 0.01% | 5.16% | NA | 1.47% | NA | 0.35% | 0.29% | NA | NA | 0.06% | 0.14% | NA | NA | 0.25% | 14.4% | 0.31% | NA | 3.32% | 1.49% | 0.85% | 1.11% | 14.85% | 0.05% | 2.66% | NA | 0.14% | 26.9% | 0.32% | 0.3% | NA | 0.63% | 15.54% | 3.15% | 2.04% | NA | 0.03% | 0.35% | NA | 0.25% | NA | NA | NA | NA | NA | 3.93% | 60% | NA |
046M | Angaben zu enthaltenen unselbstständigen Werken | 0.47% | 0.03% | NA | NA | 4.15% | 2.07% | 0.22% | NA | 0.31% | 0.01% | 0% | 36.65% | 2.82% | 2.61% | 4.07% | NA | 0.05% | NA | 0.01% | NA | 12.26% | 8.01% | NA | 2.73% | NA | 3.23% | NA | NA | 5.72% | 5.11% | 4.34% | 6.09% | NA | 0.71% | 15.21% | 0.02% | 0.02% | 8.53% | NA | 31.51% | 0.45% | NA | 2.96% | 0.02% | NA | 45.92% | 20.75% | 0.54% | 2.84% | NA | 15.13% | 17.91% | 21.93% | 1.45% | NA | 30.48% | 9.02% | 0.13% | 0.15% | 2.77% | 32.62% | 7.09% | 0.9% | 7.52% | 51.43% | NA | NA |
046P | Terms governing use and reproduction Note (temporarily tag) | 1.3% | 0.16% | NA | 0.17% | NA | 0.98% | 0.97% | NA | 0.36% | NA | NA | 0.88% | 0.61% | 0.88% | 0.21% | NA | 0.66% | NA | 0% | NA | 0.11% | 0.15% | NA | NA | 0.09% | 0.51% | 0.15% | NA | NA | 0.68% | 0.16% | NA | NA | 0.01% | NA | NA | NA | 0.39% | NA | NA | 0.64% | NA | 0.25% | 0.03% | NA | NA | 1.35% | 0.49% | 0.05% | 0.49% | NA | 6.03% | NA | 0.59% | NA | 0.06% | 0.04% | NA | NA | NA | 0.38% | NA | NA | NA | NA | 100% | NA |
046T | NA | 0.17% | 2.74% | NA | NA | NA | 0.14% | 3.22% | NA | 0.14% | 0% | NA | 0.16% | 7.51% | 5.16% | 2% | NA | 2.05% | 1.19% | NA | NA | 0.12% | 0.04% | 30.37% | NA | NA | 0.12% | 7.61% | NA | NA | NA | 0.01% | NA | NA | 9.63% | 2.69% | NA | 1.63% | 12.76% | NA | 0.89% | 0.48% | NA | 0.01% | NA | NA | 0.03% | 1.86% | 0.01% | NA | NA | 0.13% | 17.59% | 1.85% | 2.59% | NA | 0.11% | NA | 0.13% | NA | NA | NA | NA | NA | NA | NA | 100% | NA |
046W | Kommentarfeld | 7.3% | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | 48.42% | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | 0.54% | 0.27% | NA | NA | NA | NA | NA | NA |
046X | Bestandsschutzmaßnahmen und (Langzeit-)Archivierung | 8.41% | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA |
047A | Message on general level | 54.8% | 100% | 99.9% | 100% | 100% | 100% | 99.97% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 99.98% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 99.44% | 100% | 100% | 100% | 100% | 100% | 99.98% | 100% | 100% | 100% | 100% | 99.88% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | 100% |
047C | Note volume of a multi-volume publication | 27.97% | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA |
047I | Note summary/subject | 0.51% | 0.08% | 0.64% | 1.24% | 4.18% | 3.05% | 35.47% | NA | 2.22% | 7.73% | 5.35% | 6.87% | 3.28% | 5.48% | 4.11% | NA | 4.14% | 1.3% | 2.88% | 8.91% | 10.64% | 3.88% | NA | 1.86% | 15.22% | 7.14% | 2.66% | 5.39% | 6.54% | 36.7% | 1.79% | NA | NA | 7.84% | 4.65% | 0.57% | 19.1% | 13.34% | NA | 2.02% | 8.16% | 1.93% | 2.5% | 11.96% | 3.03% | 1.82% | 7.96% | 2.6% | 8.88% | 0.75% | 3.6% | 6.69% | 3.07% | 2.06% | 5.84% | 4.2% | 15.71% | 0.13% | 3.44% | 2.44% | 1.04% | 4.58% | 12.19% | 5.33% | 0.36% | NA | NA |
046L | Angaben über Sprache und Schrift der Expression | NA | 0.65% | NA | NA | NA | 0.49% | 7.76% | NA | 0.18% | 2.58% | 0.14% | 4.33% | 0.24% | 2.61% | 2.32% | 0.41% | 0.03% | 0% | 0% | 0.12% | 1.45% | 2.09% | NA | 0.02% | NA | 0.63% | 3.6% | NA | NA | 10.62% | 3.24% | NA | NA | 1.6% | 0.09% | 0.02% | NA | 7.9% | NA | 7.91% | 10.63% | NA | 3.61% | NA | 3.74% | 0.08% | 3.87% | 0.15% | NA | 0.05% | 0.36% | 11.28% | 18.28% | NA | 3.52% | 5.03% | 3.91% | 23.54% | NA | 4.83% | 9.43% | 6.94% | 1.25% | 2.19% | 43.21% | NA | NA |
048H | Systemvoraussetzungen für elektronische Ressourcen | NA | 1.48% | 0% | NA | NA | 0% | 0.01% | NA | 0.03% | 0.01% | NA | 0% | 0.02% | 0.01% | 0.02% | NA | NA | NA | NA | NA | 0.05% | 0.11% | NA | NA | NA | 0.11% | NA | NA | NA | NA | 0.01% | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | 0.01% | NA | NA | NA | NA | 41.64% | 0.13% | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | 8.58% | 0.49% | NA | NA | NA | NA | NA | NA |
007T | NA | NA | NA | 2.49% | NA | NA | NA | 0.03% | NA | NA | NA | 0% | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | 0.04% | NA | NA | NA | NA | NA | NA | NA | 0.37% | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA |
028D | NA | NA | NA | 0.43% | NA | NA | NA | 0.12% | NA | NA | 0.11% | 0.24% | NA | NA | NA | NA | 1.06% | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | 0.14% | NA | NA | 0.18% | NA | NA | NA | NA | NA | NA | NA | 0.3% | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | 1.07% | NA | NA |
028L | NA | NA | NA | 0.03% | NA | NA | NA | 1.23% | NA | NA | 0% | 35.61% | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | 50.77% | NA | NA | 12.91% | NA | NA | NA | NA | NA | NA | NA | 0.61% | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | 0.07% | NA | NA | NA | NA | NA | NA | NA | 13.21% | NA | NA |
044L | Geographical descriptor (GOO) | NA | NA | 0.52% | NA | NA | NA | 15.72% | NA | NA | 57.89% | 47.27% | NA | NA | NA | NA | 0.61% | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | 79.39% | NA | NA | 16.24% | NA | NA | NA | NA | NA | NA | NA | 29.49% | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | 99.51% | NA | NA | NA | NA | NA | NA | NA | 100% | NA | NA |
045C | NLM classification | NA | NA | NA | NA | 1.03% | 1.97% | NA | NA | 0.03% | NA | NA | 0.86% | 0.26% | 0.49% | NA | NA | 0.01% | NA | NA | NA | NA | NA | NA | 0.04% | 0.06% | 0.4% | NA | NA | NA | NA | 0.01% | NA | NA | NA | NA | 0.13% | NA | NA | NA | NA | 0.17% | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | 0.2% | NA | NA | NA | NA | NA | NA | 0.11% | NA | NA | NA | NA | NA | NA |
045X | NUGI (Nederlandse Uniforme Genre Indeling) | NA | NA | NA | NA | 0.03% | 0.03% | NA | NA | 0% | NA | NA | 0.02% | NA | 0.04% | 0.01% | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | 0.1% | NA | NA | NA | NA | 0% | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | 0.04% | NA | NA | NA | 0.05% | NA | NA | NA | NA | NA | NA |
046F | Note for target group | NA | NA | NA | NA | NA | 0% | 1.27% | NA | 0% | NA | 0.08% | NA | NA | NA | 0% | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | 0.01% | 0.04% | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | 0.04% | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | 2.5% | 20% | NA |
009P | URL | NA | NA | NA | NA | NA | NA | 0% | NA | NA | 0% | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA |
037G | Note on reproduction | NA | NA | NA | NA | NA | NA | 0.99% | NA | NA | 0% | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | 2.04% | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | 0.88% | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA |
046G | Titelangaben | NA | NA | NA | NA | NA | NA | 0% | 99.69% | NA | NA | 0.41% | 0.01% | 28.27% | NA | NA | NA | 0.1% | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | 0.02% | 26.86% | NA | 99.92% | NA | NA | NA | NA | NA | 22.86% | NA | 98.46% | NA | 40.07% | NA | 33.19% | NA | NA | NA | NA | NA | NA | NA | 62.82% | 99.19% | NA | NA | NA | NA | 99.96% | NA | NA | NA | NA | NA | NA | NA | NA | NA |
046Q | NA | NA | NA | NA | NA | NA | NA | 2.21% | NA | NA | 0.24% | 0.01% | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | 5.23% | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | 1.29% | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | 19.44% | NA | NA | NA | NA | NA | NA | NA | 17.14% | NA | NA |
subfield_code_example_vals <- d2 |>
distinct(field_code, subfield_code, value) |>
group_by(field_code, subfield_code) |>
slice_sample(n = 7) |>
summarize(e_vals = str_flatten(value, collapse = "|"), .groups = "drop") |>
collect()
subfield_code_dist_vals <- d2 |>
distinct(field_code, subfield_code, value) |>
count(field_code, subfield_code, name = "dist_vals") |>
collect()
subfield_code_usage_stats <- d2 |>
group_by(field_code, subfield_code) |>
summarize(records = n_distinct(record_number), n = n(), .groups = "drop") |>
mutate(r_p = records / n_records) |>
mutate(vals_per_rec = n / records) |>
collect() |>
left_join(
d2 |>
count(record_number, field_code, subfield_code) |>
filter(n > 1L) |>
ungroup() |>
count(field_code, subfield_code, name = "recs_with_mult_vals") |>
collect()
) |>
replace_na(list(recs_with_mult_vals = 0)) |>
left_join(subfield_code_dist_vals, by = c("field_code", "subfield_code")) |>
left_join(subfield_code_example_vals, by = c("field_code", "subfield_code")) |>
left_join(pica_fields |> select(field_code, subfield_code, description=subfield_description)) |>
relocate(field_code, subfield_code, description, records, r_p, dist_vals, e_vals) |>
left_join(pica_fields |> distinct(PICA3, field_code, field_description)) |>
replace_na(list(field_description="NA", PICA3="NA")) |>
arrange(field_code, subfield_code)
Joining with `by = join_by(field_code, subfield_code)`Joining with `by = join_by(field_code, subfield_code)`Joining with `by = join_by(field_code)`Warning: Detected an unexpected many-to-many relationship between `x` and `y`.
rm(subfield_code_example_vals, subfield_code_dist_vals)
In total, 681 distinct PICA field+subfield combinations are used.
Legend for the table below:
records
: how many records have at least one of this
field+subfieldr_p
: the above as a percentage of all HPBD recordsdist_vals
: the number of different values appearing in
this field+subfielde_vals
: at most seven random sample values of this
field+subfieldn
: the total number of appearances of this
field+subfieldvals_per_rec
: calculated from the above, the mean
number of appearances of this field+subfield per recordrecs_with_mult_vals
: the number of records that have
more than one repetition of this field+subfieldsubfield_code_usage_stats |>
mutate(subfield_code = str_c('<a name="', field_code, "$", subfield_code, '"></a>', field_code, "$", subfield_code)) |>
mutate(field_code = str_c(field_code, '/', PICA3, ": ", field_description)) |>
select(-field_description, -PICA3) |>
gt(groupname_col = "field_code") |>
text_transform(locations = cells_row_groups(), fn = function(x) {
field_codes = str_extract(x, "/(.*?):", group=1)
descrs = str_replace(x, "/.*?:",":")
map2(descrs, field_codes, ~html(glue('<a href="https://swbtools.bsz-bw.de/cgi-bin/k10plushelp.pl?cmd=kat&val={.y}">{.x}</a>'))
)
}
) |>
fmt_number(where(is.numeric), decimals = 0) |>
fmt_percent(r_p, decimals = 2, drop_trailing_zeros = TRUE) |>
fmt_number(vals_per_rec, decimals = 2, drop_trailing_zeros = TRUE) |>
data_color(columns=r_p, palette="viridis") |>
data_color(columns=vals_per_rec, palette="viridis", method="quantile", quantiles=10) |>
fmt_passthrough(subfield_code, escape=F)
Warning: Skewed data means we can only allocate 8 unique colours not the 10 requested
subfield_code | description | records | r_p | dist_vals | e_vals | n | vals_per_rec | recs_with_mult_vals |
---|---|---|---|---|---|---|---|---|
001A: Source and date of creation | ||||||||
001A$0 | Source and date | 9,492,104 | 100% | 16,609 | 9831:25-08-95|9831:02-08-21|9831:02-12-07|9831:10-05-10|9831:26-01-79|9831:15-06-11|9831:07-07-89 | 9,492,104 | 1 | 0 |
001B: Source and date of the last transaction | ||||||||
001B$0 | Source and date | 9,492,104 | 100% | 19 | 1999:23-11-21|9831:17-08-22|1999:05-05-22|1999:29-11-21|9831:12-04-22|1999:19-11-21|9831:24-01-22 | 9,492,104 | 1 | 0 |
001B$t | Timestamp | 9,492,104 | 100% | 86,374 | 07:19:50.000|22:48:02.000|02:44:45.000|17:17:02.000|13:07:24.000|03:53:27.000|20:59:58.000 | 9,492,104 | 1 | 0 |
001D: Source and date of owner | ||||||||
001D$0 | Source and date | 9,492,104 | 100% | 21 | 9831:16-11-20|9831:18-05-20|9831:27-08-21|9831:12-04-22|9831:06-07-20|9831:11-04-22|9831:20-10-20 | 9,492,104 | 1 | 0 |
001U: Characterset | ||||||||
001U$0 | NA | 9,492,104 | 100% | 1 | utf8 | 9,492,104 | 1 | 0 |
001X: Owner main record | ||||||||
001X$0 | Owner | 9,492,104 | 100% | 1 | 0 | 9,492,104 | 1 | 0 |
002@: Bibliographic type and status | ||||||||
002@$0 | Bibliografische Gattung und Status | 9,492,059 | 100% | 92 | Hax|Aaus|Asus|Acn|Afy|Aak|Acus | 9,492,059 | 1 | 0 |
002@$b | NA | 8 | 0% | 2 | Retro Retro|Retro; VD18Nach; VD18Nach | 8 | 1 | 0 |
003@: Record Control Number (PPN) | ||||||||
003@$0 | Number | 9,492,104 | 100% | 9,492,104 | 101966148|103603301|02413595X|191447617|153628553|096410817|082351716 | 9,492,104 | 1 | 0 |
003G: NA | ||||||||
003G$0 | NA | 99,705 | 1.05% | 66,727 | vd16zv768|vd16h5728|vd16k800|vd16r753|vd16p2991|vd16a201|vd16w3330 | 115,845 | 1.16 | 14,300 |
003G$a | NA | 99,705 | 1.05% | 1 | cluster:vd16 | 115,845 | 1.16 | 14,300 |
003O: Control Number of the linked record in remote database (s.a.WorldCat) | ||||||||
003O$0 | Control Number | 3,707,939 | 39.06% | 3,763,111 | (OCoLC)ocm24054486|(OCoLC)10216772|(OCoLC)ocn213537177|16405174|551997174|(OCoLC)166091389|(OCoLC)ocm79016561 | 3,995,682 | 1.08 | 287,704 |
003O$a | Remote Source Id (s.a. OCoLC) | 1,574,715 | 16.59% | 275,999 | ocm54169414|ocm54213004|ocn145083547|ocm54158034|ocm15673951|ocm48035175|ocm07995457 | 1,574,716 | 1 | 1 |
003O$v | Datum | 1,287,331 | 13.56% | 3 | 2012-12|2012-12-31|2009-06-15 | 1,287,331 | 1 | 0 |
004A: ISBN, binding, price | ||||||||
004A$0 | ISBN (length 10) | 22,448 | 0.24% | 8,557 | 3-628-77126-9|3-598-51025-X|3-628-40831-8|3598511906|3-628-63773-2|3-628-55425-X|3-628-63263-3 | 22,656 | 1.01 | 172 |
004A$A | ISBN (length 13) | 4 | 0% | 4 | 9781140789291|0-524-09838-7|9783884800164|9783891314937 | 4 | 1 | 0 |
004A$c | Qualification on ISBN | 221 | 0% | 1 | Sekundärausgabe | 243 | 1.1 | 18 |
004A$f | Terms of availability/price | 7,085 | 0.07% | 382 | : 200F| : DM 55, (zusammen mit den anderen Werken des Autors)| : 64 F| (Vol.10)| : 450ptas| : DM 42, (zusammen mit den anderen Werken des Autors)| : One shilling per dozen | 7,129 | 1.01 | 35 |
004D: Erroneous ISBN | ||||||||
004D$0 | ISBN (length 10) | 179 | 0% | 128 | 359851610X|963- -734-1 57 -9|3-628-61616-5|3-628-61627-0|3-628-61619-X|3-598-50621-X|027036 | 209 | 1.17 | 18 |
004D$c | Qualification on ISBN | 37 | 0% | 1 | Sekundärausgabe | 52 | 1.41 | 9 |
004D$f | Terms of availability/price | 47 | 0% | 11 | : DM 20, (zusammen mit den anderen Werken des Autors)| (vol. 5)| : CtY-M| (3)| (Sekundärausgabe)| : CtY| : ár nélkül (fűzött) | 62 | 1.32 | 9 |
005A: ISSN, binding, price | ||||||||
005A$0 | ISSN | 4,228 | 0.04% | 2,757 | 1398-1102|0486-6053|2124-4499|2130-4122|2131-9863|1967-4856|1246-5488 | 4,586 | 1.08 | 314 |
005A$c | Qualification on ISSN | 1 | 0% | 1 | cancelled | 1 | 1 | 0 |
005A$f | Terms of availability/price | 151 | 0% | 125 | (autorisierte ISSN) Intelligenzblatt der Juristischen Literatur-Zeitung|(autorisierte ISSN) Abhandlungen und Materialien zum neuesten deutschen Staatsrechte und Reichsgeschichte des Jahres ... seit dem Absterben des letzten Churfürsten von Bayern Maximilian Josephs|(autorisierte ISSN) Kleine juristische Bibliothek oder ausführliche Nachrichten von neuen kleinern iuristischen vornehmlich akademischen Schriften|(autorisierte ISSN) Ephemeriden der Litteratur und des Theaters|(autorisierte ISSN) Fortgesetzte Betrachtungen über die neuesten historischen Schriften|(autorisierte ISSN) Pharmaceutisches Centralblatt|(autorisierte ISSN) C. L. Stengels Beiträge zur Kenntniss der Justizverfassung und der juristischen Literatur in den preussischen Staaten | 156 | 1.03 | 5 |
005B: Erroneous ISSN | ||||||||
005B$0 | ISSN | 31 | 0% | 16 | 0308-2636|1256-561X|0355-2464|0920-0212|0260-7085|0039-760|0724-7600 | 33 | 1.06 | 2 |
005B$f | Terms of availability/price | 2 | 0% | 2 | ffr 36.00|DM 2.00 | 2 | 1 | 0 |
005B$g | Binding | 11 | 0% | 11 | M 1.50 (jährl.)|sfr 12.90 (Einzelbd.)|EUR 1298.00 (Mikrofiche-Ausg., einschl. Öffentl. Anzeiger)|EUR 1498.00 (Mikrofiche-Ausg., einschl. Öffentl. Anzeiger)|: EUR 1039.00 (annual subscr., inst., print and electronic), EUR 944.00 (annual subscr., inst., print only or electronic only), EUR 238.00 (annual subscr., personal), sfr 1974.00 (annual subscr., inst., print and electronic), sfr 1794.00 (annual subscr., inst., print only or electronic only), EUR 348.00 (annual subscr., personal)|EUR 0.24 (Einzelnr.), EUR 9.00 (halbjährl., mit Öffentlichem Anzeiger)|EUR 1380.00 (Mikrofiche-Ausg., einschl. Öffentl. Anzeiger) | 11 | 1 | 0 |
006A: 006A LC Number | ||||||||
006A$0 | LC Number | 100,405 | 1.06% | 73,067 | 10009340|nuc87805323|nuc87847587|06045381|01000808|09002639|74692226 | 100,405 | 1 | 0 |
006V: MCN nummer | ||||||||
006V$0 | Number | 26,115 | 0.28% | 31,213 | VD16 M 1977|VD16 M 300|VD16 L 4610|VD16 Z 541|VD16 D 3031|VD16 S 7844|VD16 P 92 | 35,708 | 1.37 | 3,035 |
006V$p | Anmerkung | 2,500 | 0.03% | 1 | enth. Werk | 4,115 | 1.65 | 829 |
006V: VD16-Nummer | ||||||||
006V$0 | Number | 26,115 | 0.28% | 31,213 | VD16 M 1977|VD16 M 300|VD16 L 4610|VD16 Z 541|VD16 D 3031|VD16 S 7844|VD16 P 92 | 35,708 | 1.37 | 3,035 |
006V$p | Anmerkung | 2,500 | 0.03% | 1 | enth. Werk | 4,115 | 1.65 | 829 |
006X: Identnummern weiterer Fremddatenlieferanten | ||||||||
006X$0 | Nummer | 9,492,018 | 100% | 11,396,671 | Cty.01.1189383|DE-603.27799229X|IT-ICCU.NAPE055612|168223554|DE-604.VK.BV040880477|DE-604.VK.BV013797246|IT-ICCU.CSAE000715 | 11,841,084 | 1.25 | 2,342,360 |
006X$i | Einleitende Wendung | 9,492,018 | 100% | 6 | STH|STBB|OCoLC|ST16|CERL|ADW | 11,841,084 | 1.25 | 2,342,360 |
006Y: Identnummern (allgemein) | ||||||||
006Y$0 | Nummer | 7,185,368 | 75.7% | 18,332,770 | (CStRLIN)GBOC15506496-E|(NBYdb)360559|(GyGoGBV)DE\GBV\GVK\183441532|(DE-599)BVBBV010624947|(NL-HaKB)NL\NL-HaKB\STCN\842338101|(CStRLIN)DEGC15001788X-E|(OCoLC)815278024 | 18,571,051 | 2.58 | 4,864,443 |
007C: CODEN | ||||||||
007C$0 | CODEN | 107 | 0% | 73 | MATCC|BILAA|VMEZA|TIMNB|MAAAAW|JERNA|PTRSA | 113 | 1.06 | 5 |
007D: Supplier production number | ||||||||
007D$0 | Number | 23,108 | 0.24% | 9,830 | 2861|271|1532|949|1620|341|1590 | 24,854 | 1.08 | 1,316 |
007D$i | Einleitende Wendung | 19,514 | 0.21% | 986 | Other music no. (Decombe)|Other music no. (E. Troupenas)|Other music no. (Erard)|Plate no. (A. Meissonnier?)|Pl.-nr.|Plate no. (S.A. Steiner & Co.)|Other music no. (N. Simrock) | 20,995 | 1.08 | 1,124 |
007D$l | Label supplier | 3,011 | 0.03% | 4 | Other music no.|Other publisher no.|Plate no.|Matrix no. | 3,229 | 1.07 | 157 |
007P: Fingerprint | ||||||||
007P$0 | Number | 1,923,659 | 20.27% | 1,474,953 | o.l' tadi n.ne gole (3) 1788 (R)|Y-i- r.,& o-u- nade 3 1728R|n-ch ieer n-n. Erse 3 1721A|**i- 7.3. t.R. (9lu (3) 1715 (R)|c.e- a,a- r-e- mequ (3) 1700 (Q)|a-ad i-i- o-u- s-t: (C) 1602 (R)|z.ve s,,& ter. qu3. (3) 0000 (Q) | 1,956,987 | 1.02 | 21,826 |
007P$A | Quelle | 136,181 | 1.43% | 1,266 | FB Gotha; ThULB Jena; HAB Wolfenbüttel; HAAB Weimar; SBB-PK Berlin|LB Oldenburg; HAAB Weimar; ThULB Jena; SBB-PK Berlin; ULB Sachsen-Anhalt, SUB Göttingen|GWLB Hannover; UB Rostock|SBB-PK Berlin; GWLB Hannover; StB Braunschweig; LB Oldenburg|HAB Weimar; UB Kiel; UB Potsdam|UB Rostock; UB Greifswald|Bibl. der Franckeschen Stiftungen zu Halle; ULB Sachsen-Anhalt | 136,919 | 1.01 | 718 |
007P$S | Indikator | 697,478 | 7.35% | 1 | fei | 730,824 | 1.05 | 21,839 |
007P$p | Anmerkung | 280,867 | 2.96% | 164 | Bl. a6 fehlt|Ohne Widmung, Alternativer Fingerprint|[1] Bl. mit den Gratulationsgedichten am Ende des Werkes eingebunden, Alternativer Fingerprint|[2] Bl. Inhaltsverz. am Ende, Alternativer Fingerprint|Ex. unvollst., enth. nur Bog. A|%%- %-%% %%%% 3 1568R-Q--SBB-PK Berlin; FB Gotha; Bibl. der Franckeschen Stiftungen zu Halle|unvollst. Ex. | 308,543 | 1.1 | 16,744 |
007S: Bibliografische Zitate (Alte Drucke) | ||||||||
007S$ | NA | 3 | 0% | 3 | T 97025.|c S108223|S106941 | 3 | 1 | 0 |
007S$0 | Bibliografische Zitate | 1,364,551 | 14.38% | 1,720,691 | ESTC, t092649|Benzing: Die deutschen Verleger p. 478.|Aldis, H.G. Scotland, 1060|VD17 1:025543M|VD17 12:110081X|Mendham, C499|Goldsmiths'-Kress library of economic literature, no. 22309. | 2,233,175 | 1.64 | 355,530 |
007S$C | NA | 3 | 0% | 3 | no. 246.|no.600|2631 | 3 | 1 | 0 |
007S$R | NA | 2 | 0% | 2 | 10428|8452 | 2 | 1 | 0 |
007S$S | Indikator | 29,950 | 0.32% | 10 | B|abes|b||b|e|v|b|Panzer DA 2216; |b | 44,317 | 1.48 | 6,649 |
007S$p | Anmerkung | 6,067 | 0.06% | 1,916 | vermuteter Drucker: Leonhard Straub d.J.|Disp. V.|Mit der Signatur: Gv Kapsel 8 (24.1)|dort abweichender Umfang|Disp. 11|Pt. IV [3.]|Ausgabebezeichnung abweichend | 8,653 | 1.43 | 1,445 |
007S$u | NA | 27,910 | 0.29% | 18,667 | http://data.cerl.org/istc/ir00044000|http://edit16.iccu.sbn.it/scripts/iccu_ext.dll?fn=10&i=25357|https://gso.gbv.de/DB=1.28/CMD?ACT=SRCHA&IKT=8002&TRM=%2712%3A628114D%27|https://gso.gbv.de/DB=1.28/CMD?ACT=SRCHA&IKT=8002&TRM=%2712%3A111630U%27|http://data.cerl.org/istc/ia00636000|http://edit16.iccu.sbn.it/scripts/iccu_ext.dll?fn=10&i=48272|http://edit16.iccu.sbn.it/scripts/iccu_ext.dll?fn=10&i=62324 | 28,626 | 1.03 | 674 |
007T: NA | ||||||||
007T$0 | NA | 35,187 | 0.37% | 27,285 | us,& e,n- e:i- **** (3) 1669 (R)|5.** **5. **** **po (3) 1745 (Q)|umhi m.o- USE- coJO (3) 1729 (Q)|8529 i-in t.i- adsc (3) 1773 (R)|a-se s.s; s.t. IlSo (3) 1797 (A)|umam o.9. usos lusu (3) 1772 (R)|usis esue s.es u.nt (C) 1510 (A) | 41,814 | 1.19 | 4,481 |
007Y: Sonstige Standardnummern | ||||||||
007Y$0 | Nummer | 940,312 | 9.91% | 1,266,425 | VD18 12628239-001|VD18 14560186-001|urn:nbn:de:bvb:12-bsb10403050-0|57712386|urn:nbn:de:bvb:12-bsb10770123-9|urn:nbn:de:bvb:12-bsb10636914-2|VD16 R 2840 | 1,415,238 | 1.51 | 326,034 |
007Y$c | NA | 114,403 | 1.21% | 3 | EAN|British Library|Other Standard Identifier | 219,309 | 1.92 | 57,158 |
007Y$i | Einleitende Wendung | 825,095 | 8.69% | 57 | Ungültigk|Entfällt|clc|auf dem Blatt aufgetragene Nummer|United States, National Library of Medicine|German National Library|Unügltig | 1,195,053 | 1.45 | 268,817 |
009@: Data for ILL | ||||||||
009@$b | NA | 9,492,095 | 100% | 67 | SpMaBN|NL-0100030000.STCN|PL-BUWr|UK-LAMBETHANA|NL-0100030000.PB|GB-UkLU-S|DE-604 | 9,492,095 | 1 | 0 |
009A: Location original | ||||||||
009A$a | Shelf-mark | 5 | 0% | 5 | N 35634|ND VII 365a|DD95 A 110|DD92 A 33859|H: T 251.4° Helmst. (4) | 5 | 1 | 0 |
009A$b | Country | 6 | 0% | 3 | XA-FR|de|XA-DE | 6 | 1 | 0 |
009A$c | Library | 10 | 0% | 9 | Bibliothèque nationale et universitaire de Strasbourg (M.105.198 )|HAAB Weimar|<12>Exlibris: Ex Bibliotheca Canoniae ad B. V. Mariam Assumptam in Gars Ord. Can. Reg. S. P. Augustini ab anno 1769. in alium ordinem redacta|Exlibris im Buchdeckel des Sammelbandes: [Görtz-Wrisberg auf Wrisberg-Holzen]. - Hs. Notiz: GW 16211|Staats- u. Universitätsbibliothek Hamburg|Hs. Zugangsnummer: 109956 [Karl Wilhelm Ludwig Heyse]|Hs. Zugangsnummer: 109928 [Karl Wilhelm Ludwig Heyse] | 10 | 1 | 0 |
009A$d | Department | 2 | 0% | 1 | DD18 | 2 | 1 | 0 |
009B: Location master microforms | ||||||||
009B$a | Shelf-mark | 6,128,648 | 64.57% | 8,367,294 | 19 A 2994|28521/A|ee.4.8|-Mag- XTh 2171 / Bd 1 (DE-603)647987198|Kc I 10|F-21161 (61)|F.128.575,2 | 9,790,151 | 1.6 | 1,627,655 |
009B$b | Country | 6,457,503 | 68.03% | 224 | I.II|FR|one set, I-V, vellum|title?|JO|I-Bam|Borkowski | 10,972,210 | 1.7 | 1,847,389 |
009B$c | Library | 9,318,529 | 98.17% | 23,247 | Paris Mazarine (2, 1 quires N-T only)|Bibl. di Fisica - Univ. di Parma|RENNES1-BU Droit éco. gestion|Pécs Univ Gg (I-III, I imperfect)|Lund UB (imperfect; fragment?)|The Hague MMW I 335|Bibl. parrocchiale Grazia Deledda | 19,897,677 | 2.14 | 2,982,615 |
009B$f | NA | 5,100,905 | 53.74% | 254,838 | Cheb 17/151/adl.8|5 H 000133|65 E 007734/adl.1|NA0059, Rari 9.42/6|Cheb 49/038|65 C 001285/T.1,2|34 D 000057 | 11,790,359 | 2.31 | 1,596,296 |
009B$m | NA | 123,510 | 1.3% | 276 | DE-34-31|DE-26-002|DE-4-381|DE-2080|DE-F229|(Estampa 25)|Micro N | 470,991 | 3.81 | 70,591 |
009B$x | NA | 4,546,324 | 47.9% | 2,332,263 | Fa-1092(22).11|Osann, Emil|Recueil factice: Thèses de droit. - 499, No. 16|Previous shelfmark: C 3.123 (Schola Musicae, Schools Quadrangle, Bodleian Library, Oxford). (Continuo) |Diss. I-Exerc. V in 1 Bd|Queen's College Library stamp (round) on first free endpaper recto|Ancienne cote : T-1088 | 13,090,342 | 2.88 | 2,320,271 |
009B$y | NA | 2,765,808 | 29.14% | 1,097,480 | D1278-776|543 Helmst. Dr. (1)|QuN 299.25 (15)|Schulenb. H 2° 10|Copy No. 22108408|D0454-474|RMS 1K | 25,817,988 | 9.33 | 2,066,798 |
009B$z | NA | 478,399 | 5.04% | 39,150 | 1777 - 1798; 1800|8.1826/27 - 9.1827/28; 11.1829/30 - 12.1830/31; 14.1832/33; 20.1838/39|1.1794 - 14.1800; 17.1802|1.1728/29|3.1848|1.1758(1760) - 3.1761(1770) = Nr. 1-193|3.1813 | 625,623 | 1.31 | 75,910 |
009P: URL | ||||||||
009P$y | Comment | 2 | 0% | 2 | http://www.mdz-nbn-resolving.de/urn/resolver.pl?urn=urn:nbn:de:bvb:12-bsb10032562-2=3 Volltext|GMG/163 V.1 N.4 | 2 | 1 | 0 |
010@: Language designation | ||||||||
010@$0 | NA | 1 | 0% | 16 | 852|-60|-4|174|043|757|593 | 16 | 16 | 1 |
010@$2 | NA | 1 | 0% | 2 | m-b|n | 2 | 2 | 1 |
010@$a | Language of the publication | 8,982,071 | 94.63% | 649 | gtr|Mis|slv|yr |eb|tli|p-- | 9,439,011 | 1.05 | 409,850 |
010@$b | Interlanguage | 162 | 0% | 12 | eng|fre|ita|gre|spa|ger|lat | 166 | 1.02 | 3 |
010@$c | Language of the original | 277,153 | 2.92% | 336 | fle|fin|tal|dt|cor|ben|bul | 286,592 | 1.03 | 8,414 |
010@$d | Language of the summary | 333 | 0% | 22 | und|gre|chi|por|ita|pol|123 | 352 | 1.06 | 18 |
010@$l | NA | 8 | 0% | 4 | und|at|lat|eng | 8 | 1 | 0 |
010@$p | NA | 1 | 0% | 5 | t|esl|ied|Hoh|Avo | 5 | 5 | 1 |
010@$q | NA | 1 | 0% | 1 | und | 1 | 1 | 0 |
010@$t | NA | 1 | 0% | 1 | lat | 1 | 1 | 0 |
010@$w | NA | 1 | 0% | 1 | 8 | 1 | 1 | 0 |
011@: PublicationDate | ||||||||
011@$a | Date of publication | 9,439,226 | 99.44% | 884 | 171u|17XX|1277|24 J|1666|1817|264u | 9,439,226 | 1 | 0 |
011@$b | Date of closing | 254,213 | 2.68% | 982 | 0916|1683|0036|0620|0301|1904|1011 | 254,213 | 1 | 0 |
011@$c | Normierte Datumsangabe (Beginn) (tt.mm.jjjj) | 5,494 | 0.06% | 3,882 | 27.02.1479|08.08.1824|04.09.1484|31.10.1492|20.11.1725|14.01.1819|07.12.1797 | 5,494 | 1 | 0 |
011@$d | Normierte Datumsangabe (Ende (tt.mm.jjjj) | 2,866 | 0.03% | 1,815 | 30.12.1819|04.11.1797|28.09.1825|06.07.1819|31.05.1818|25.02.1788|03.12.1797 | 2,866 | 1 | 0 |
011@$e | Date of the first edition | 11,966 | 0.13% | 666 | [1722?]|1976|1930|1600|2004|[1628]|1816 | 11,966 | 1 | 0 |
011@$h | NA | 1 | 0% | 1 | Österreichische Gruppe der Gesellschaft für deutsche Erziehungs- und Schulgeschichte | 1 | 1 | 0 |
011@$j | NA | 2 | 0% | 2 | 1566|1717 | 2 | 1 | 0 |
011@$n | Date in original | 7,307,640 | 76.99% | 309,854 | 11 diciembre, 1498|1766-1782]|[ca, 1823]|1653 [erschienen] 1658|[post 1 XII 1734]|par Iean Lesnier & Isaac Desbordes 1636|M.D.C.XLIX. | 7,424,899 | 1.02 | 115,739 |
013H: Veröffentlichungsart und Inhalt | ||||||||
013H$a | Veröffentlichungsart und Inhalt | 187,807 | 1.98% | 3 | vide|kart|muno | 187,807 | 1 | 0 |
017H: URL für sonstige Angaben zur Ressource | ||||||||
017H$a | NA | 20 | 0% | 20 | https://search.proquest.com/docview/2240917998|http://purl.ox.ac.uk/uuid/14faf8abc69543aeba9e66a5f88c06b6|http://etoncollege.com/userfiles/files/ParikianCollectionBooklet.pdf|http://oi.uchicago.edu/research/pubs/catalog/misc/paintings1.html|http://id.sbn.it/bid/MILE032148|http://id.sbn.it/bid/MILE043304|http://purl.ox.ac.uk/uuid/ec9a5354d8324d10b8c68ba475bdd485 | 20 | 1 | 0 |
017H$q | Elektronischer Dateiformattyp (MIME-Typ) | 145,150 | 1.53% | 29 | 7134 #Full-text Teylers Museum#jpeg|jpeg|h|image/jpeg =Q image/tiff|image/jpg|image/jpeg|Making of the modern world | 242,897 | 1.67 | 49,709 |
017H$u | URL | 4,738,320 | 49.92% | 5,402,347 | http://www.gbv.de/du/services/gLink/vd17/32:626914P_001,800,600|http://id.sbn.it/bid/TO0E020887|http://bvbd2.bib-bvb.de/opt-cgi/order/bestand.pl?ID=BV006126519|http://catalogue.bnf.fr/ark:/12148/cb32702280c|http://catalogue.bnf.fr/ark:/12148/cb33833721d|http://catalogue.bnf.fr/ark:/12148/cb36466055v|http://id.sbn.it/bid/NAPE025800 | 6,038,849 | 1.27 | 962,152 |
017H$y | Text für die Anzeige | 1,104,112 | 11.63% | 713,862 | Volltext // 2012 digitalisiert von: Bayerische Staatsbibliothek, München. Exemplar mit der Signatur: München, Bayerische Staatsbibliothek -- Catech. 577|Volltext // 2009 digitalisiert von: Bayerische Staatsbibliothek, München. Exemplar der Bayerischen Staatsbibliothek mit der Signatur: Math.p. 445 i|Volltext // 2011 digitalisiert von: Bayerische Staatsbibliothek, München. Exemplar mit der Signatur: München, Bayerische Staatsbibliothek -- 4 Diss. 1111#Beibd.9|Volltext // 2012 digitalisiert von: Bayerische Staatsbibliothek, München. Exemplar mit der Signatur: München, Bayerische Staatsbibliothek -- 4 Anthr. 17|Volltext // 2012 digitalisiert von: Bayerische Staatsbibliothek, München. Exemplar mit der Signatur: München, Bayerische Staatsbibliothek -- 4 Diss. 3734,18|Volltext // 2009 digitalisiert von: Bayerische Staatsbibliothek, München. Exemplar der Bayerischen Staatsbibliothek mit der Signatur: Germ.g. 397 s|Volltext // 2010 digitalisiert von: Bayerische Staatsbibliothek, München. Exemplar der Bayerischen Staatsbibliothek mit der Signatur: L.eleg.m. 2735 | 1,516,051 | 1.37 | 294,911 |
017H$z | Allgemeine Bemerkungen | 4,321,454 | 45.53% | 206,647 | Illustration. This link is related to item no.: 473798727|Illustration. This link is related to item no.: 534603483|Full-text Google Books. This link is related to item no.: 1162769483|KUL-G 2-023321/A (3# f. A1 recto): fingerprint b1. Free electronic access|Illustration. This link is related to item no.: 487806581|Illustration. This link is related to item no.: 460394312|Illustration. This link is related to item no.: 488134005 | 5,335,955 | 1.23 | 720,807 |
019@: Country code | ||||||||
019@$a | Country code of the first publisher | 7,192,799 | 75.78% | 271 | XC-MR|XA-NO|XA-ES|us|cl|XD-HN|XA-CSHH | 7,258,862 | 1.01 | 63,551 |
019@$b | Country code of the second and next publisher | 2,257 | 0.02% | 4 | ZZ|XD-AN|XD-PR|XA-RU | 2,257 | 1 | 0 |
019@$c | NA | 87,084 | 0.92% | 3 | ZZ|XD-US|XD-DO | 87,087 | 1 | 3 |
019@$g | NA | 1 | 0% | 1 | ZZ | 1 | 1 | 0 |
019@$h | NA | 2 | 0% | 1 | ZZ | 2 | 1 | 0 |
019@$l | NA | 1 | 0% | 1 | XE-NC | 1 | 1 | 0 |
019@$r | NA | 1 | 0% | 1 | ZZ | 1 | 1 | 0 |
021A: Title and statement of responsibility area | ||||||||
021A$ | NA | 3 | 0% | 3 | directed to Colonell Hampden, Colonell Goodwin, and read in both houses of Parliament, May 18, 1643 : relating how his Majesty hath sent 12 or 1400 of his forces, under the command of the Earle of Cleveland, the Lord Shandoffe, the Lord Crayford, and Sir John Byron, into those parts, who amongst many o' ther cruelties fired a countrey towne called Swanborne, in seven places, murdered diverse, and amongst the rest one woman big with child was cut in pieces by them.|Fra Gio: Francesco Abela vicecancelliere della sacra ed eminentissima religione gierosolimitana..|by William Allen. | 3 | 1 | 0 |
021A$/ | NA | 1 | 0% | 1 | c By R.G., a clerk of the Court of common-pleas. | 1 | 1 | 0 |
021A$1 | NA | 3 | 0% | 3 | . De diev. 2. De l'immortalité de l'Ame. 3. Du siege de l'Ame au corps humain.|840dik évi országgyülésen alkotott törvényczikkelyek|. darab | 3 | 1 | 0 |
021A$7 | NA | 793 | 0.01% | 360 | 63000000X|151819491|248492748|526004266|594207738|212792490|314059490 | 793 | 1 | 0 |
021A$8 | Expansion | 1 | 0% | 1 | или СЛУЖЕБНИКЪ Содержай в себѣ по чину с[вя]тыѧ Восточныѧ Церкве, ЛIТУРГIИ. | 1 | 1 | 0 |
021A$A | NA | 3 | 0% | 3 | uctore Martino Delrio.|lderano Vescouo di Frascati della S.R.C. Cardinal Cybo..| Iohanne VVegelino .... | 3 | 1 | 0 |
021A$B | NA | 9 | 0% | 9 | y Archibald McLean ....|y James Grant, L.L.D. lecturer at St Leonard's Shoreditch, and vicar of Kempston, in the County of Bedford..|y Hugh Blair ... In two volumes..|y a gentleman of the Academy of Glasgow..|Con xv. canzoni del medesimo. E la vita di esso Dante scritta da Giouanni Boccaccio ... .|y William Bates, D.D..|extraicts d'un vieil exemplaire escrit a la main, passez sont quatre cens ans ... ]. | 9 | 1 | 0 |
021A$C | NA | 7 | 0% | 7 | By William Maitland, F. R. S.|Antea In Concionibus Quadragesimalibus Slavonico Idiomate Dictis Nunc Latinum Translatis Per P. Adalbertum Gazda, Ord. Min. S. P. Francisci Ref. Prov. SS. Salvatoris Praedicatorem actualem adumbrata, & proposita, ac cum indultu, & facultate Almae Superioritatis Typis edita.|ad Germaniæ medicos, Laurentio Frisio authore.|In Certa Capita Redegit Joannes Adámi Professor Statisticae Emeritus|By William Prynne Esquire, a bencher of Lincolns Inne.|Избрана ѡ[т] б[о]ж[е]ственныхъ писанϊй еѵ[ан](г)[е]лскихъ проповедϊй, и ап[о](с)[то]лскихъ ученϊй, и пр(о)роческихъ реченϊй, и ѿ правилъ С[вя]тыхъ ѡ[те]цъ и вселенскихъ учителей...|By N. Bailey [Greek]. | 7 | 1 | 0 |
021A$H | NA | 2 | 0% | 1 | enrico ... Cardinale Caetano ... Camerlengo.. | 2 | 1 | 0 |
021A$I | NA | 2 | 0% | 2 | n a letter to a member of the ensuing General Assembly..|n quo, praeter cetera, voces Anglicanae quotquot Gothis debentur. | 2 | 1 | 0 |
021A$N | NA | 1 | 0% | 1 | Liber I | 1 | 1 | 0 |
021A$P | NA | 10 | 0% | 9 | ar le pere Le Moyne ...|ar Ali-Gier-Ber, Alfaki, ou Docteur en théoloqie, principal du Collége d'Andrinople, associé à l'Academie des Sciences, Belles-Lettres & Arts de Samarcand.|er Gulielmum Paradinum uirum eruditionis multae, atque iudicii non uulgaris.|ar M. C.-M. Léon de Saint-Marcel. Deuxième partie..|ar Jean-François Laharpe..|ar un Propriétaire foncier..|ar l'Auteur du Cri des familles.. | 10 | 1 | 0 |
021A$R | NA | 1 | 0% | 1 | obert Brough ; illustrated with linocuts by John R. Smith. | 1 | 1 | 0 |
021A$T | Feldzuordnung | 20,652 | 0.22% | 29 | 12|05|14|01(2|04|08|02 | 41,304 | 2 | 20,650 |
021A$U | Schriftcode | 20,650 | 0.22% | 17 | Thai|Latn|Armn|Arab|rHebr|Cyrl|Hant | 41,302 | 2 | 20,650 |
021A$V | NA | 2 | 0% | 2 | by a loyal lover of peace and truth; but a hearty condemner of sedition and schism.|rbanus Papa VIII.. | 2 | 1 | 0 |
021A$[ | NA | 1 | 0% | 1 | by Daniel Featley]. | 1 | 1 | 0 |
021A$a | Main title | 9,177,819 | 96.69% | 6,916,832 | Благоговейныя размышления о жизни и страданиях Христа Спасителя.|Brevis ac compendiaria responsio, ad collectos certos quosdam ex Erasmo Albero, per Stanislaum Hosium titulo Varmiensem episcopum, articulos, de doctrina Joannis a Lasco: atque huc in Poloniam transmissos, simulque et ad libellum ipsius nuper editum De oppresso verius quam expresso verbo Dei. Per ipsummet Joannem a Lasco [Texte imprimé]|Animadversions on Mr. Day's sermon on infant baptism : with some remarks on the mode of baptism, and power of ordination : in several letters to a friend|Formae orandi Christianae, enarratio Simonis Portii ; eiusdem In Euangelium Diui Ioannis scholion.|Joach. Georgii Darjes..|Oraison funebre sur le sujet de la mort victorieuse de Louys XIII dit le Iuste, roy de France et de Nauarre|Matthey ... über die Gehirnwassersucht | 9,198,470 | 1 | 20,650 |
021A$d | Subtitle | 2,159,768 | 22.75% | 1,744,527 | Or, Englands remembrancer ... In the most gratefull commemoration of al the miraculous parliamentarie mercies ... 1641. and 1642 .|cum notis selectissimis variorum, Servii, Donati, Pontani, Farnabii, etc, et indice locupletissimo rerum ac verborum, opera et studio Cornelii Schrevelii.| : avec des figures en taille douce, des plans, des cartes geographiques &c.|Traduction nouvelle, avec une pratique & une prière à la fin de chaque chapitre, l'ordinaire de la messe, en latin et en français ; les vêpres du dimanche et complies|Ein Schauspiel in 2 Aufzügen mit Gesängen zur Aufführung auf Gesellschaftstheatern durch Kinder|translated from the Greek, with copious notes, in which the Pythagoric and Platonic dogmas respecting numbers and ideas are unfolded from antient sources. To which is added, a dissertation on nullities and diverging series...|Darinnen begriffen werden die Reisen der H. Jungfrawen Marien/ Josephs/ vnd sonderlich vnsers Herrn Iesv Christi, von seiner heiligen Menschwerdung vnd Geburt an/ biß Er gen Himmel gefahren. Daneben Berge/ Länder vn[d] Thal beschrieben werden/ an welchem Ort er seine Miracul vnnd Wunderwerck gethan ... : Item Bericht von der Stadt Hierusalem ... ; Aus der Schrifft/ vnd andern glaubwirdigen Scribenten Büchern gezogen/ lustig zu lesen, vnd in deutsche Reimen verfasset | 2,162,008 | 1 | 2,240 |
021A$e | In RDA-Sätzen nicht zugelassen | 5,217 | 0.05% | 4,276 | Состоящаго из двенадцати уездов, а именно: Могилевскаго, Чаусовскаго, Старобыховскаго, Оршанскаго, Бабиновецкаго, Копысскаго, Сеннинскаго, Мстиславскаго, Чириковскаго, Климовицкаго, Рогачевскаго и Белицкаго : [Утвержден: 10 генваря 1778. С: Петербург]|Драмма|Данныи от россиискои стороны [В Гиляни в месте Ряще, февраля 13 дня, в лето господне 1729 году]|Ныне вновь пересмотренный, порядочнее расположенный, во многих местах дополненный и не только новыми статьями, но и целыми даже главами вдвое против прежняго умноженный; с присовокуплением разных новейших открытий, касающихся до сея книги и почерпнутых как из российских, так и из иностранных сочинений. : В пользу любителей экономии.|С наставлением, как можно простому народу лечиться от угрызения бешеной собаки и от уязвления змеи, : С показанием на таблице гридировальными фигурами, чем, когда и как змея уязвляет, где яд у нее бывает и проч.|[Об издании Полного описания деяний е. в. государя имп. Петра Великого]|Изо ста пятидесяти одной главы состоящее, из которых каждая вместо надписи и содержания из священнаго писания взятым свидетельством означена, и с реестром самых нужнейших российских слов, которой российскому юношеству вместо словаря на пяти языках служить может. | 5,274 | 1.01 | 57 |
021A$f | Parallel title | 6,736 | 0.07% | 6,429 | D.|Diui Ioannis Chrysostomi in omnes Pauli apostoli epistolas accuratissima, vere atque aurea, & diuina interpretatio|Opus sex dierum, seu, mundi opificium Georgii Pisidae diaconi ... poema : eiusdem senarij de vanitate vitae|Neue und vollkommene Königliche Französische Grammatica : mit einem neu eingerichteten Syntaxi...|Atti, e decreti del Concilio diocesano di Pistoja dell'anno 1786.|Von denen Eilff Tausend Jungfrauen : MODERANTE... M. IO. GOTTFR. LEONE... IN AVGVSTO PROPTER SALAM ATHENAEO... SOLENNIORI ERVDITORVM SCRVTINIO EXASCIANDVM|Taxt, hvorefter Brevene til Udlandet skulle betales : Bekiendtgiort fra Generalpostdirektionen den 12te December 1812 | 7,104 | 1.05 | 252 |
021A$h | 1st statement of responsibility | 3,620,760 | 38.14% | 2,431,692 | zum Dr. beschickt durch David Kellnern|monsignor Adeodato Turchi ... Volume XIV e VII delle Edite.|[REISCH., Gregorius]|praeside M. Jo. Philippo Treunero ... referet, relata solvet, soluta ad demonstrationem existentiae Dei transferet Arnoldus Richertz|dimensa, delineata, ad vivum expressa, in hoc denique planum proiecta â Iacobo de la Fontaine|Jean des Roches [aut]; Andries Cornelis Lens [ill.]; Nicolas Delaunay [ill.]|Henr. Joseph. Rega | 3,627,820 | 1 | 7,060 |
021A$j | 2nd and following statement of responsibility | 1 | 0% | 1 | hereto are joined the two Summes of Sir Ralph de Hengham, commonly called Hengham magna and Hengham parva ... notes, both on Fortescue and Hengham ... | 1 | 1 | 0 |
021A$l | Volume number | 1,983 | 0.02% | 180 | Enth. außerdem: 5|Enth. außerdem: P. 2|Enth.: 4.5|Enth. außerdem: Anhang 3|Enth.: Tomus Secundus|Enth. außerdem: 9|Enth. außerdem: Angeb,1 | 1,983 | 1 | 0 |
021A$m | NA | 2 | 0% | 2 | composé par Andreas Romberg. oeuv. 19|Nouveaus entretiens sur les sciences secretes, touchant la nouvelle philosophie | 2 | 1 | 0 |
021A$u | NA | 1 | 0% | 1 | ersiae ... tum dissoluun- | 1 | 1 | 0 |
021A$x | Filing field | 815 | 0.01% | 56 | 490|70|310|8|730|180|80 | 815 | 1 | 0 |
021B: Title on the second or intermediate level of a multi-level description | ||||||||
021B$a | Title beginning with @-sign | 756 | 0.01% | 725 | @Antiquitatis Honos. Pan in astris, ex Aegypto, Judas Maccabeus, ex Palaestina, Latona et Ceres, ex Graecia|@Oracula metrica Iovis, Apollinis, Hecates, Serapidis, et aliorum deorum ac vatum tam virorum quam feminarum, a Iohanne Opsopoeo coll. Item Astrampsychi Oneirocriticon [Oneirocriticon ^<griech.; ^lat.>], à Ios. Scaligero digestum & castigatum. Graece et Lat.|@De probabilitate critica, exegetica, historica|@Fragmentum historiae plantarum Gesnerianae|@Von Balsam öle , Wundtrecken, pflaster unnd unguentum zu machen|@Mvlti integri loci sacrae doctrinae veteris et novi Testamenti, ex Habbraica et Graeca lingua in Latinum [et] Germanicum sermonem summa cum fide [et] diligentia translati. His adivncta svnt quaedam pia cantica ex Latino Sermone in Germanicum fideliter conuersa. Viel Heiliger Lehren des Alten vnd Newen Testaments, Aus der Hebraischen vnd Griechischen Sprache mit besonderm fleis in Lateinisch vnd Deutsch gebracht. So sind auch sonsten etzliche Gottselige Lieder vnd Gesenge, mit fleis aus dem Latein verdeudscht, hinzu gethan. Cum Gratia [et] Priuilegio D. Augusti Pr. Electoris Saxoniæ, [et]c. I.f. Auff gnedigsten befehl des Durchlauchtigsten, Hochgebornen Fürsten vnd Herrn, Herrn Augusti, Hertzogen zu Sachssen, Des Heiligen Römischen Reichs Ertzmarschalhs vnd Churfürsten, Landgrafen in Düringen,|@Porza̜dek na Seymie Walnym elekcyey mie̜dzy Warszawa̜ a Wola̜ przez opisanie artykuły do samego tylko aktu elekcyey należa̜ce, uchwalony y postanowiony roku pańskiego M.DC.LXIX. dnia 2. miesia̜ca Maia. | 756 | 1 | 0 |
021B$d | Subtitle | 34 | 0% | 31 | seu Graecam linguam non esse pronunciandam secundum accentus: Dissertatio paradoxa|sive de summi pontificis, et generalis concilii potestate|Ita adornatus ut simuliis qui, Lauterbachiano isto compendio non utuntur utilis esse possit ...|Comment.|Darin alle die außerlesensten und üblichsten Gesänge, M. Luth. u. anderer gottseliger Männer, welche gewöhnlich in unsern christ- lutherischen Kirchen gesungen werden, enthalten.|in welchem nicht allein dasjenige/ was bey dem Auffdingen/ Loßsprechen und Meister-werden nach denen Articuls-Briefen unterschiedener Oerter ... in ihren Innungen u. Zünfften observiret worden/ sondern auch diejenigen lächerlichen und bißweilen bedencklichen Actus wie auch Examina bey dem Gesellen-machen/ ordentlich durch Fragen und Antwort vorstellen und ... ausführen wollen|Ou Pièces choisies des anciens | 34 | 1 | 0 |
021B$f | Paralleltitle | 7 | 0% | 7 | Dialogorum liber secundus|Ein Lustgarde edder arstedie der Seelen.|Gnomologicum Graecolatinum|De inventione tomi quatuor|De insomnio, sive vita Luciani|Dialogorum liber primus|Exposition universelle | 7 | 1 | 0 |
021B$h | Statement of responsibility | 250 | 0% | 230 | Authore Severino Eugaleno Doccumano|... Herard|Henricus Groenewegen|Karl Kirchner ^von Reichwitz|Philippus Ludovicus Hannekenius|Joannes Jacobus Rau|Joannes Franciscus Picus Mirandulanus Concordiaeque | 250 | 1 | 0 |
021B$l | Volume number | 815 | 0.01% | 183 | Pars prima|Enth. außerdem: [Bd 1],2|Enth. außerdem: Vol. 3|Enth.: 16|Enth.: Angeb,2|Enth. außerdem: [2]|Enth.: 2-5 | 815 | 1 | 0 |
021B$y | NA | 48 | 0% | 41 | Trad. en vers|Deme beygefüget etliche orientalische Alphabeten, griech. u. lateinische Abbreviaturen ... Abdruck einiger Schrifft-Proben, samt 4 Taf. ... Nebst d. gebräuchlichen Deposition-Büchlein in nieder- u. ober-sächs. Sprache ...|Zuerst aufgeführt auf d. Kgl. Theater zu Dresden am 11.Nov. 1816|Liber posthumus|Dissertatio|Mit wolgegründten Experimenten gezieret und den gemeinen Soldaten, Ritter unnd Knechten zum Nutzen an Tag gegeben. Sammt angehengtem rähtlichen gutachten, die jetzt schwebende und unter den Soldaten mehrentheils grassirende Sucht betreffendt|Recordationem annuam muneris magnifici a ... C. J. Trewio Academiae Altorfiae dati ... | 48 | 1 | 0 |
021C: Dependent title | ||||||||
021C$a | Title beginning with @-sign | 537 | 0.01% | 446 | Literarisches Beiblatt|Zwey͏̈ter Theil. Die fürnehmste und bekantiste Stätte und Plätze in der Provinc Picardiæ Wie auch den andern Eingang von gemelten Königreich, auch deßen Regirung und fürnehmbste Ämbtern fürstellend|Suite des Mémoires de mathématique et de physique tiréz des registres de l'Académie Royale des Sciences|Zum Gebrauch der Fürstenthümer, Graf- und Herrschaften Calenbergischen Theils|Notenblätter|Chambres Civiles|Jahrbücher der Theologie | 555 | 1.03 | 18 |
021C$d | Subtitle | 19 | 0% | 19 | darin hiesige Gerichts-Tage, Verlassungen; Predigten, Music und Passion in allen 5 Haupt- und Neben-Kirchen wie auch Dom, Zucht- und Spinn-Hause, St. Georg, und St. Pauli auf dem Hamburger Berg etc. nebst der Fluth und Ebbe ordentlich verzeichnet ; samt der Vieh-Accise-Taxa Ausrechnung|vom Jahre|Continens Praeter Antiquas Ipsius Ptol. recentiores etiam Tabulas, quae Universae terrae faciem nostro aevo cognitam exhibent ; Una cum ipsarum Tabularum uberrimis expositionibus, quibus singulae Orbis Provinciae, Regiones, Imperia, Regna, Ducatus, & alia Dominia describuntur ; Cum Privilegio|Enthaelt Italien und seine Inseln, Spanien und Portugal und Belgien mit den Inseln zwischen Großbritannien und Frankreich]|ein Beitrag zur Teutschen Staatskanzlei|Landtag ..|Enthaelt Deutschland und die Schweiz | 19 | 1 | 0 |
021C$f | Paralleltitle | 1 | 0% | 1 | Von neuen Aufsätzen, Anfragen, Anzeigen, Preißaufgaben und Preißschriften | 1 | 1 | 0 |
021C$h | Filing field | 6 | 0% | 6 | Herausgegeben von Johann Friedrich Christoph Gräffe, Dr. der Theologie und Philosophie, und Pastor an der St. Nicolai Kirche in Göttingen|unter Aufsicht des Herrn Hofrath Heyne|Zweite Kammer|angefangen und fortgesetzt von Matthias Joseph Franzmadhes|hrsg. von C. F. Reichardt|A Hieronymo Porro Pat. Incisas. Auctore Io. Antonio Magino | 6 | 1 | 0 |
021C$l | Reihenbezeichnung und/oder Zählung der Unterreihe in Vorlageform | 7 | 0% | 7 | Abtheilung 4|Abtheilung 5|Abtheilung 1|Abtheilung 2|Abtheilung 3|1. Abtheilung|Série 1 | 7 | 1 | 0 |
021G: Paralleltitel, paralleler Titelzusatz, parallele Verantwortlichkeitsangabe | ||||||||
021G$T | Feldzuordnung | 354 | 0% | 11 | 00|04|03|13|05|14|1 | 559 | 1.58 | 179 |
021G$U | Schriftcode | 354 | 0% | 8 | Arab|Cyrl|Hebr|(4Hebr|r|Latn|Grek | 559 | 1.58 | 179 |
021G$a | Paralleltitel | 43,898 | 0.46% | 36,446 | Pyndari Olympia, Pythia, Nemea, Isthmia|oder, Von der Göttlichen Gnaden-Zeit ...|histoire naturelle de la cochenille, justifiée par des documens authentiques|Dionysii Longini de sublimitate libellus, cum praefatione de vita & scriptis Longini, notis, indicibus, & variis lectionibus.|Manuale logarithmico-trigonometricum|Der Dritten Abtheilung zweyte Fortsetzung. Schriften aus dem siebzehnten Jahrhundet von 1631 - 1650|Carte geographique representant le CERCLE d'AUTRICHE | 45,477 | 1.04 | 1,342 |
021G$d | Paralleler Titelzusatz | 1,430 | 0.02% | 1,351 | ad MStos codices nunc primum recognita et castigata|Composed by way of a reply to a late ... pamphlet, entituled, The youngling elder, &c. written by John Goodwin, ...|Collection des mémoires relatifs à l'histoire de France, depuis l'avènement de Henri IV, jusqu'à la paix de Paris, conclue en 1763 ; avec des notices sur chaque auteur et des observations sur chaque ouvrage, seconde série, tome XLIV, XXIIe livraison|accedit interpretatio Latina, exempla Oxoniense de anno 1718 emendavit ; vitam Aesopi Latinitate donatam adiecit|cum notis & animadversionibus doctissimorum, praesertim verò, Roberti Stephani, Josephi Scaligeri, Isaaci Casavboni. Variae item lectiones ex antiquissimis exemplaribus, & celeberrimis bibliothecis, desumptae.|in which the English words, with many of the English phrases, Are explained by those which synonymise or correspond with them in the Welsh language ; Compiled from the best Sources and Materials|quorum indicem secunda pagina continet.... | 1,444 | 1.01 | 14 |
021G$e | In RDA-Sätzen nicht zugelassen | 1 | 0% | 1 | Graece et latine : Ad codicum fidem emend. integravit Latina eiusque Aemilii Porti translationem refiuxit et suam annotationem subjecit Fridericus Creuzer. Initia ... commentarii : Eiusdem Procli institutio theologica et Nicolai Methonensis refutatio. | 1 | 1 | 0 |
021M: Weitere Titel etc. bei Zusammenstellungen | ||||||||
021M$a | Weiterer Titel | 8,088 | 0.09% | 8,093 | M. T. Ciceronis oratio contra. C. Crispu[m] Sallustium.|||Accesit Continuatio ab initio Caroli V. usq[ue] ad Annum Christi 1668. Opera & studio Aegidii Strauchii ... Cum Indice gemino|... précédé de l'état de la France à la mort de Louis XIV ..|C. Plinii Secundi Nouocomensis Panægyricus Neruæ Imperatori dictus.|Acceßit Novum Speculum Logices minime vulgaris|Accedunt CL. Ptolemæi Liber De Apparentiis Fixarum, Nunc Primum Græce Editus Addita Versione, Et Philippi Labbei S.J. Elogium Galeni Chronologicum.|Item Zeitung Auß Kiel/ Lindaw/ Ulm/ Prag/ Magdeburg/ Brandenburg/ Ambsterdam/ Verona ... | 8,655 | 1.07 | 328 |
021M$d | Titelzusatz zum Haupttitel oder zum Paralleltitel | 203 | 0% | 202 | Wie es nemlich sitzet/ und was es vor Gewalt hat/ [et]c.|[16. Octob. Anno 1622.]|Graecis Elegiacis comprehensae|in qua Cum Tempus Astronomicum ... Luminarium coelestium, & eorundem Eclipsibus ; tum diversae diversorum in omnibus Epochis annorum quantitates & formae dilucide explicantur ...|Conclusum & renovatum in Senatu, Dienstags den 6. Januar 1750|Zu desto besseren Gebrauch in diese bequeme Form gebracht|Zusamt deren Verschiednen Namen/ Grentzen/ Städten/ Gewächsen/ Thieren/ Sitten/ Trachten/ Regierung und Gottesdienst | 210 | 1.03 | 3 |
021M$f | Paralleltitel | 14 | 0% | 18 | Sampt hinzugethanem Stammen der Türckischen Keyser|Les hevres de relasche d'un soldat, voyageant ...|De anomalis uerbis. De formatione temporu[m] ex libro Chalcondylæ. Quartus Gazaæ de constructione. De Encleticis. Sententiæ monostichi ex variis poetis. Cato. De tribubus Atheniensium. Et Symoriis|Hymni xxxii.|Ex Ctesia & Agatharchide excerptæ historiæ|Eivsdem De Lavdibvs Vrbis Romae.|Ex Heraclide de rebus publicis Commentarium. Polemonis Physionomia. Adamantii Physionomia. Melampodis ex Palpitationibus diuinatio. De Neuis | 18 | 1.29 | 2 |
021M$h | Verantwortlichkeitsangabe | 525 | 0.01% | 526 | [Michault, Jean-Bernard]|Ant. Contio auctore|Eodem Guilielmo Cantero interprete|Par Messire Jean D'Ibelin Comte de Japhe & d'Ascalon, S. de Rames & de Baruth|Par M. I. du Tillet, Euesque de Meaux, freres|Per D. Ioan. Oldendorpium|Restauratore & Autore Daniele Cramero D. ... | 569 | 1.08 | 22 |
022A: Uniform heading | ||||||||
022A$ | NA | 1 | 0% | 1 | f 1665. | 1 | 1 | 0 |
022A$0 | NA | 1 | 0% | 1 | (DE-603)396438431 | 1 | 1 | 0 |
022A$1 | NA | 1 | 0% | 1 | Turkish & Armenian | 1 | 1 | 0 |
022A$6 | Indicator | 4 | 0% | 1 | 880-01 | 4 | 1 | 0 |
022A$9 | PPN | 25 | 0% | 18 | 63663|88598|67350|99190|96390|96213|84499 | 25 | 1 | 0 |
022A$A | NA | 14,908 | 0.16% | 1 | GBV | 14,908 | 1 | 0 |
022A$T | NA | 649 | 0.01% | 8 | 14|05|02|03|06|04|01(2 | 1,298 | 2 | 649 |
022A$U | NA | 649 | 0.01% | 11 | Hani|HebrHebr|r|ArabHebr|Arab|Latn|Grek | 1,298 | 2 | 649 |
022A$a | Title | 661,887 | 6.97% | 374,311 | Bible. New Testament. Latin. Bode. 1753.|[Factum. Echard, François. 1655?]|Dialogus creaturarum moralisatus. Nederlands.|Chronicles of the Canongate., French|Ordonnance (1777 juin 13)|[Acte royal. 1648-11-21]|[Factum. Eglise catholique. Diocèse, Lyon. Chapitre. 1716?] | 662,534 | 1 | 647 |
022A$j | NA | 3 | 0% | 3 | (15th ed.)|(3rd ed.)|(1st ed.) | 3 | 1 | 0 |
022A$r | NA | 9 | 0% | 7 | c-Moll|F-Dur|f-Moll|G-Dur|C-Dur|D-Dur|Es-Dur | 9 | 1 | 0 |
022A$v | NA | 1 | 0% | 1 | English | 1 | 1 | 0 |
022A$w | NA | 5 | 0% | 2 | n4|n1 | 5 | 1 | 0 |
022A$y | NA | 1 | 0% | 1 | 1721 | 1 | 1 | 0 |
022S: Formal main title (manuscripts) | ||||||||
022S$a | Uniform title | 63,710 | 0.67% | 5,117 | Official Documents. 1659.08.30|Triumphus Veritatis Caelestis|Textes choisis (français). 1635|Collections. 1672|Works. English. 1824|Works. Latin. 1526|Obras selecta | 63,714 | 1 | 1 |
022S$r | In RDA-Sätzen nicht zugelassen | 2,469 | 0.03% | 152 | 1720.07.03, dt.|niederländ|1716|ital., dt.|griech., franz.|1745.12.25|russ. | 2,469 | 1 | 0 |
025@: Filing title | ||||||||
025@$A | In RDA-Sätzen nicht zugelassen | 94,990 | 1% | 3 | GBV|SBB-PK Berlin|-GBV | 94,990 | 1 | 0 |
025@$a | Main title | 240,008 | 2.53% | 193,791 | Fabulæ Æsopiæ|Suite des Memoires sur l'Empire du Grand Mogol|Ordinis iuridici Prodecanus Georgius Christianus Gebauerus D. honores quinque candidatis ... rite collatos publice indicat|@Beytrag zu der Kunst des Schlössers, oder Versuch über die hieroglyphische Kunstschlösserwerke, welche besonders dazu angewandt werden, um die Wirkung der besten gewöhnlichen Schlösser abzuändern|Michael-Angelus Buonarotus florentinus pinxit in Vaticano|Lectiones Opticae, Annis MDCLXIX, MDCLXX & MDCLXXI. In Scholis publicis habitae|De Therapia Sani Corporis, Seu Non-Naturali | 240,008 | 1 | 0 |
026@: Key-title | ||||||||
026@$a | Title | 3,469 | 0.04% | 3,272 | Journal judiciaire du département du Calvados|Courrier du Calvados|Gazette constitutionnelle|Gazette de Lyon|The @compleat linguist. Or, an universal grammar of all the considerable tongues in being. In a shorter, clearer, and more instructive method than is extant. Collected from the most approved hands : With a preface to every grammar, relating to each tongue ... /|Virginia evangelical and literary magazine|Vivant rex et regina : To be continued annually. The royal engagement pocket atlas ... | 3,508 | 1.01 | 36 |
026@$c | Period | 15 | 0% | 10 | By a member of the House of Commons.|Compiled and digested by N. Tindal ... ; from materials collected by T. Jekyl ...; J. Ousely ...; and particularly by W. Holman ...|by J. de la Crose.|by a society of gentlemen.|By a society of gentlemen.|[by Abel Roper ; and William Turner].|Done by several hands. | 15 | 1 | 0 |
026C: Abbreviated key-title | ||||||||
026C$a | Kurztitel nach DIN 1502 | 914 | 0.01% | 780 | Mercure 19e siècle|Gaz. gaz. j. polit.|Boll. Sci. Med|Weerlicht|K. Sven. vetensk. akad. handl.|Verh. Holl. Mij. Wet. Haarlem|Gött. Anz. gelehrten Sachen | 1,078 | 1.18 | 81 |
026C$b | NA | 6 | 0% | 7 | Norway|STOCKHOLM|Germany|GB|PARIS|East Germany|USA | 7 | 1.17 | 1 |
027A: Abweichender Titel (Sucheinstieg) | ||||||||
027A$ | NA | 1 | 0% | 1 | Table allieur des reports by T.A. 1588. | 1 | 1 | 0 |
027A$3 | NA | 3 | 0% | 3 | Volume 2: Memoires de l'estat de France|Hungary and Transilvania.|Hymni | 3 | 1 | 0 |
027A$5 | NA | 1 | 0% | 1 | Liber III, 6 | 1 | 1 | 0 |
027A$6 | NA | 12 | 0% | 12 | 880-10|880-20|880-31|880-19|880-33|880-11|880-16 | 14 | 1.17 | 1 |
027A$9 | NA | 70 | 0% | 23 | 98071|65783|97034|65781|58168|14123|99640 | 73 | 1.04 | 2 |
027A$B | NA | 1 | 0% | 1 | ible. Job Paraphrases. | 1 | 1 | 0 |
027A$T | Feldzuordnung | 4,780 | 0.05% | 49 | 14|02|03(2|19|41|01|15 | 13,275 | 2.78 | 4,779 |
027A$U | Schriftcode | 4,779 | 0.05% | 15 | Hebr046D |Hant|ArabHebr|Cyrl|Latn|Hani|Arab | 13,274 | 2.78 | 4,779 |
027A$a | Title | 2,073,308 | 21.84% | 1,915,248 | L'eremo sacro del R.P.D. Gio. Battista Pilo C.R. Paulus Amato inc. Pan.|In quatuor libros sententiarum commentaria.|Uebersetzungsbibliothek der griechischen und römischen Klassiker / 4|Zwote Periode bis auf die Kirchenversammlung zu Chalcedon|Gründliche Abfertigung deß unwarhafftigen kurtzen Gegenberichts M. Cyriaci Spangenbergii ...|Lettre à mademoiselle de V. étant à la campagne|hochwürdigste hochedelgeborene befreiten Klosters Oberaltaich Benediktinerordens Herbstmonats Meßopfer hochfeierlich begingen glucketisster glücklichster gepriesen | 3,107,611 | 1.5 | 604,570 |
027A$b | Subtitle | 10,137 | 0.11% | 6,802 | Derselben Institut, Constitutionen, Gelübde, Regierungsart, Lehre, Aufführung etc. betreffend|... [Verf.: William Winstanley] ; London 1684|und bey Christlicher Volckreicher Leichenbestattung Des ... Henrich Eilhardten/ Bey der ... Reichsstadt Northausen ... Bürgermeisters und Scholarchen/ Welcher ... am ... 29. des Herbstmonats ... zum Engel-Chor befördert ...|In duo Volumina divisi|door Engelbertus Kaempfer|Misit Herodes Rex manus, ut quosdam affligeret de Ecclesia, &c. Factus in Festo S. Petri ad Vincula. ; Ex Ms. Codice Abbatiae Longipontis.|Jn einer Serenata | 11,217 | 1.11 | 862 |
027A$c | NA | 4 | 0% | 4 | Երկասիրեալ Տեառն Հ.Մինասայ Վ. Բժշկեան Տրապիզոնզւոյ,Առաջնորդի ի Տաիրիա Յաշակերտութենէ Մխիթարայ Մեծի Աբբայի:|աշխատասիրութեամբ Հայր Մկրտիչ Աւգերեանց: Տպագրեալ հրամանաւ Արհիապատիւ Տեառն Տեառն Ստեփաննոսի Վարդապետի Ագոնց՝ Ընդհանրական Աբբայի եւ Արքեպիսկոպոսի:|ի Լատին Բարբառ Աշխատասիրութեամբ Հ.Մկրտիչ Աթոռակալ Վարդապետի Մխիթարեան Աւգերեանց: Տպագրեալ հրամանաւ Արհիապատիւ Տն.Տն. Սուքիասայ Վարդապետի Սոմալեան՝ ընդհանրական Աբբայի եւ Արքեպիսկոպոսի: Արդեամբք եւ ծախիւք Պարոն Աղեքսանդրի Ռաֆայէլի Ղարամեան:|by C.H. Lloyd. | 4 | 1 | 0 |
027A$e | NA | 6 | 0% | 6 | Traduction ; Préface|Selections|Antraštė šiuolaikine rašyba: Наставления любомудрия нравоучительного|Antraštė šiuolaikine rašyba: Евангелие учительное.|Antraštė šiuolaikine rašyba: Диалогизм духовный|Auteur | 8 | 1.33 | 2 |
027A$i | NA | 21 | 0% | 191 | IncludesArticolo di una lettera del signor d. Alessandro Volta al signor dottore Giuseppe Priestley|Container of (expression):Fastes de la nation française et des puissances alliées, English|contains (expression) :Ekphrasis, Latin|Container of (expression):Fastes de la nation française et des puissances alliées, French|IncludesDissertazione del sig. Senebier bibliotecario della Rep. di Ginevra sul flogisto considerato come cagione dello sviluppamento, della vita, e della distruzione di tutti gli esseri ne' tre Regni della Natura|IncludesDescrizione del nuovo Arcipelago settentrionale scoperto di fresco da' Russi ne' mari di Kamtschatka e Anadir. Del signor Von Staehlin |IncludesDissertazione del signor Hamilton ... sopra la natura dell'evaporazione, e varj fenomeni dell'Aria, dell'Acqua, e de' liquori bollenti al sig. Carlo Dodgson | 192 | 9.14 | 8 |
027A$v | NA | 2,845 | 0.03% | 1,872 | 26-27 LO1E016334|34 NAPE000234|2 SBLE001037|234 RAV0137347|2 RAVE000749|9 LO1E002635|13 UBOE03205 | 2,880 | 1.01 | 34 |
027A$w | NA | 2 | 0% | 159 | LO1E049260|LO1E049240|LO1E049204|LO1E049289|LO1E049218|LO1E049317|LO1E049357 | 159 | 79.5 | 1 |
027A$y | NA | 5 | 0% | 2 | LAT Characteres ethici, sive Descriptiones morum Græce|1760-1820 (George III) | 5 | 1 | 0 |
027A: Secondary title entry | ||||||||
027A$ | NA | 1 | 0% | 1 | Table allieur des reports by T.A. 1588. | 1 | 1 | 0 |
027A$3 | NA | 3 | 0% | 3 | Volume 2: Memoires de l'estat de France|Hungary and Transilvania.|Hymni | 3 | 1 | 0 |
027A$5 | NA | 1 | 0% | 1 | Liber III, 6 | 1 | 1 | 0 |
027A$6 | NA | 12 | 0% | 12 | 880-10|880-20|880-31|880-19|880-33|880-11|880-16 | 14 | 1.17 | 1 |
027A$9 | NA | 70 | 0% | 23 | 98071|65783|97034|65781|58168|14123|99640 | 73 | 1.04 | 2 |
027A$B | NA | 1 | 0% | 1 | ible. Job Paraphrases. | 1 | 1 | 0 |
027A$T | Feldzuordnung | 4,780 | 0.05% | 49 | 14|02|03(2|19|41|01|15 | 13,275 | 2.78 | 4,779 |
027A$U | Schriftcode | 4,779 | 0.05% | 15 | Hebr046D |Hant|ArabHebr|Cyrl|Latn|Hani|Arab | 13,274 | 2.78 | 4,779 |
027A$a | Title | 2,073,308 | 21.84% | 1,915,248 | L'eremo sacro del R.P.D. Gio. Battista Pilo C.R. Paulus Amato inc. Pan.|In quatuor libros sententiarum commentaria.|Uebersetzungsbibliothek der griechischen und römischen Klassiker / 4|Zwote Periode bis auf die Kirchenversammlung zu Chalcedon|Gründliche Abfertigung deß unwarhafftigen kurtzen Gegenberichts M. Cyriaci Spangenbergii ...|Lettre à mademoiselle de V. étant à la campagne|hochwürdigste hochedelgeborene befreiten Klosters Oberaltaich Benediktinerordens Herbstmonats Meßopfer hochfeierlich begingen glucketisster glücklichster gepriesen | 3,107,611 | 1.5 | 604,570 |
027A$b | Subtitle | 10,137 | 0.11% | 6,802 | Derselben Institut, Constitutionen, Gelübde, Regierungsart, Lehre, Aufführung etc. betreffend|... [Verf.: William Winstanley] ; London 1684|und bey Christlicher Volckreicher Leichenbestattung Des ... Henrich Eilhardten/ Bey der ... Reichsstadt Northausen ... Bürgermeisters und Scholarchen/ Welcher ... am ... 29. des Herbstmonats ... zum Engel-Chor befördert ...|In duo Volumina divisi|door Engelbertus Kaempfer|Misit Herodes Rex manus, ut quosdam affligeret de Ecclesia, &c. Factus in Festo S. Petri ad Vincula. ; Ex Ms. Codice Abbatiae Longipontis.|Jn einer Serenata | 11,217 | 1.11 | 862 |
027A$c | NA | 4 | 0% | 4 | Երկասիրեալ Տեառն Հ.Մինասայ Վ. Բժշկեան Տրապիզոնզւոյ,Առաջնորդի ի Տաիրիա Յաշակերտութենէ Մխիթարայ Մեծի Աբբայի:|աշխատասիրութեամբ Հայր Մկրտիչ Աւգերեանց: Տպագրեալ հրամանաւ Արհիապատիւ Տեառն Տեառն Ստեփաննոսի Վարդապետի Ագոնց՝ Ընդհանրական Աբբայի եւ Արքեպիսկոպոսի:|ի Լատին Բարբառ Աշխատասիրութեամբ Հ.Մկրտիչ Աթոռակալ Վարդապետի Մխիթարեան Աւգերեանց: Տպագրեալ հրամանաւ Արհիապատիւ Տն.Տն. Սուքիասայ Վարդապետի Սոմալեան՝ ընդհանրական Աբբայի եւ Արքեպիսկոպոսի: Արդեամբք եւ ծախիւք Պարոն Աղեքսանդրի Ռաֆայէլի Ղարամեան:|by C.H. Lloyd. | 4 | 1 | 0 |
027A$e | NA | 6 | 0% | 6 | Traduction ; Préface|Selections|Antraštė šiuolaikine rašyba: Наставления любомудрия нравоучительного|Antraštė šiuolaikine rašyba: Евангелие учительное.|Antraštė šiuolaikine rašyba: Диалогизм духовный|Auteur | 8 | 1.33 | 2 |
027A$i | NA | 21 | 0% | 191 | IncludesArticolo di una lettera del signor d. Alessandro Volta al signor dottore Giuseppe Priestley|Container of (expression):Fastes de la nation française et des puissances alliées, English|contains (expression) :Ekphrasis, Latin|Container of (expression):Fastes de la nation française et des puissances alliées, French|IncludesDissertazione del sig. Senebier bibliotecario della Rep. di Ginevra sul flogisto considerato come cagione dello sviluppamento, della vita, e della distruzione di tutti gli esseri ne' tre Regni della Natura|IncludesDescrizione del nuovo Arcipelago settentrionale scoperto di fresco da' Russi ne' mari di Kamtschatka e Anadir. Del signor Von Staehlin |IncludesDissertazione del signor Hamilton ... sopra la natura dell'evaporazione, e varj fenomeni dell'Aria, dell'Acqua, e de' liquori bollenti al sig. Carlo Dodgson | 192 | 9.14 | 8 |
027A$v | NA | 2,845 | 0.03% | 1,872 | 26-27 LO1E016334|34 NAPE000234|2 SBLE001037|234 RAV0137347|2 RAVE000749|9 LO1E002635|13 UBOE03205 | 2,880 | 1.01 | 34 |
027A$w | NA | 2 | 0% | 159 | LO1E049260|LO1E049240|LO1E049204|LO1E049289|LO1E049218|LO1E049317|LO1E049357 | 159 | 79.5 | 1 |
027A$y | NA | 5 | 0% | 2 | LAT Characteres ethici, sive Descriptiones morum Græce|1760-1820 (George III) | 5 | 1 | 0 |
028A: Primary author | ||||||||
028A$ | NA | 1 | 0% | 1 | I. | 1 | 1 | 0 |
028A$1 | NA | 7,560 | 0.08% | 2,534 | 001UM1E012934|001MUS0002235|001MILE007558|001MUS0286552|001MUS0286706|001MUS0323088|001MUS0040809 | 43,033 | 5.69 | 7,559 |
028A$2 | NA | 7,559 | 0.08% | 1 | unimarc | 8,745 | 1.16 | 699 |
028A$4 | Beziehungskennzeichnung (Code) | 1,046,180 | 11.02% | 183 | oth, mutmaßl. Verf|pra|ant|oth, Verfasser$aut|aut, Praeses|aut, Übersetzer|oth, Präs.: | 1,072,854 | 1.03 | 9,233 |
028A$5 | First name as access point | 1 | 0% | 1 | VUB. | 1 | 1 | 0 |
028A$6 | NA | 9 | 0% | 1 | 880-01 | 9 | 1 | 0 |
028A$7 | Vorläufiger Link | 184,217 | 1.94% | 41,106 | DE-603136426298|DE-603136408907|DE-603086824155|DE-603155337343|DE-603087100819|PALV026046|CFIV160603 | 205,068 | 1.11 | 4,867 |
028A$9 | PPN | 39,902 | 0.42% | 13,060 | 34165|23567|45509|68477|1177|31432|13618 | 39,902 | 1 | 0 |
028A$B | Code | 2,406,199 | 25.35% | 968 | Auteur, Notes|Ballo semiserio in tre atti|Ballo serio-pantomimo|lbt|Präses, *oth|*tyg|Farsa In Prosa E Musica | 2,413,179 | 1 | 6,934 |
028A$D | NA | 4 | 0% | 4 | 1726-1799|1694-1778|1703-1783|1578-1650 | 4 | 1 | 0 |
028A$P | Persönlicher Name | 541,023 | 5.7% | 58,099 | קלונימוס בן קלונימוס בן מאיר|Pedro Afonso|Fourni|Lescallier|Syumboku|Fèvre du Grandvaux|Conti, Louis François de Bourbon |
557,209 | 1.03 | 14,933 |
028A$T | Feldzuordnung | 9,198 | 0.1% | 16 | 00|23|01(2|10|09|08|11 | 18,411 | 2 | 9,197 |
028A$U | Schriftcode | 9,197 | 0.1% | 15 | Hebr|Latn|Hani|Cyrl|HebrHebr|r|z | 18,410 | 2 | 9,197 |
028A$a | Access point (family name) | 5,993,874 | 63.15% | 269,154 | Keiser van Bulderen|Buxtorffius|Slevogt|Skalski|Rüff|Hoegh-Guldberg|Maiuri | 6,196,555 | 1.03 | 121,242 |
028A$b | NA | 11 | 0% | 6 | Воинская комиссия|Законы и постановления|禮部 (Ministère des Rites)|קהילת אשכנזי אמשטרדם|Βουλή των Ελλήνων|ועד כללי |
11 | 1 | 0 |
028A$c | Prefix | 138,212 | 1.46% | 228 | an-|vom und zum|Comte|al|do|Comte de|der | 138,212 | 1 | 0 |
028A$d | First name | 5,915,568 | 62.32% | 172,104 | Jaime Gilberto de|Johannes Adelbert Gottfried|Eustaquio|George A. B.|R.-Constant|Joséph|Eduard Maria, Fürst | 6,045,809 | 1.02 | 119,466 |
028A$e | Addition to the first name | 2 | 0% | 2 | rr.|Weiland, C. F. | 2 | 1 | 0 |
028A$f | Addition to the name | 1 | 0% | 1 | Veneroni, Giovanni | 1 | 1 | 0 |
028A$h | Years | 4,281,227 | 45.1% | 100,077 | 1584-1624|ок. 1752-1804| sec.XVI.| 18/s-19/s|d. 1808?| 1781-1862|ca. gest. 1330 | 4,352,801 | 1.02 | 62,233 |
028A$i | Solution of pseudonym | 86,464 | 0.91% | 4 | Includes:|Part of set:|Part of:|Subset of: | 87,291 | 1.01 | 321 |
028A$l | Permanent addition | 469,876 | 4.95% | 38,260 | Bernardszoon|of Montluçon|duca di Pescolanciano|of Chepstow|Professor of Philosophy in the University of Padua|pseud. van Theodorus Mensinck|Lundin yliopiston luonnon- ja kansanoikeuden professori | 478,334 | 1.02 | 7,838 |
028A$n | Zählung | 56,469 | 0.59% | 435 | known also as Bolongaro-Crevenna| ; 18| 1. meta sec. 19| ; 11| ; 15|I. Leszczyński|Staten | 57,769 | 1.02 | 1,203 |
028A$p | Weitere identifizierende Angaben | 155,122 | 1.63% | 11,282 | Aleksandr Mihajlovič,, (Александр Михайлович)|Edward Erastus|Jacqueline Marie Angelique|John Beer|John Hay|Jan Antonides van der|Александр Игнатьевич | 160,624 | 1.04 | 5,230 |
028A$q | NA | 1 | 0% | 1 | Thomas | 1 | 1 | 0 |
028A$u | NA | 1 | 0% | 1 | Universität | 1 | 1 | 0 |
028A$v | Datum der Generierung | 5,369 | 0.06% | 672 | A1 T6 N2|A1 T3 N3|1-6|122|2-5|166-168|4 | 5,548 | 1.03 | 132 |
028A$w | NA | 96,513 | 1.02% | 26,444 | TO0E032431|BVEE032946|TO0E081318|UMCE001916|CFIE053419|BVEE076267|UBO4084908 | 103,417 | 1.07 | 5,779 |
028B: Coauthor/sender | ||||||||
028B$4 | NA | 70,114 | 0.74% | 58 | cwt|aut, traductor, anotador|cmp|aut, Herausgeber|trl|ctg|edt | 77,795 | 1.11 | 7,505 |
028B$7 | NA | 9,336 | 0.1% | 5,663 | DE-603149798512|DE-603152526226|DE-603086901729|DE-603179148346|DE-603149890605|DE-603155563734|DE-603245799729 | 9,956 | 1.07 | 618 |
028B$9 | PPN | 78 | 0% | 81 | 17678|57240|65029|46881|18237|18026|62517 | 96 | 1.23 | 18 |
028B$B | Code | 278,983 | 2.94% | 211 | *aut, Éditeur scientifique, Traduction, Commentaires|*edt, *aut, *edt|koostaja ja kommenteerija, *cwt, *aut, *aut|*aut, *100|Beiträger|author|author of introduction, etc | 303,065 | 1.09 | 22,690 |
028B$P | NA | 24,905 | 0.26% | 6,071 | Iunilius|Dindimus|Jan Vilém|Artaud|Vigile de Thapse|Antoine, герц. лотаринг.|Aaron | 27,925 | 1.12 | 2,613 |
028B$T | NA | 545 | 0.01% | 13 | 07|08|02|05|07(2|06|13 | 1,445 | 2.65 | 494 |
028B$U | NA | 545 | 0.01% | 7 | Hant|HebrHebr|Latn|Arab|Hebr|Hani|Cyrl | 1,445 | 2.65 | 494 |
028B$a | Access point (family name) | 380,920 | 4.01% | 64,527 | Poccar|Villaviciosa|Quierner|Greif|Miglietta|Frideborn|Heydenreich | 413,360 | 1.09 | 28,818 |
028B$c | Prefix | 9,806 | 0.1% | 75 | `a|des|'s|vande|von und zu der|de le|d' | 10,153 | 1.04 | 286 |
028B$d | First name | 379,241 | 4% | 34,609 | Christoph Johann Wilhelm von|Arnold Hermann Ludwig|Ioannis Christianus|J. van|Lorenzo de|Joseph de Barral, Mis de|August Jakob | 411,322 | 1.08 | 28,470 |
028B$h | Years | 192,836 | 2.03% | 26,816 | 1752-1815|1530-1587| 1809-1886|1670-1716|1540-1581;|1664-1748| ca. 1700-1773 | 209,589 | 1.09 | 15,092 |
028B$l | Permanent addition | 18,528 | 0.2% | 4,028 | fils d'un professeur de mathématiques de l'École royale d'artillerie de Metz| musicista|Le P. ; O.P.|Card|il Retore|marchand ;|moine de Corbie | 20,186 | 1.09 | 1,433 |
028B$n | NA | 2,289 | 0.02% | 70 | VII. Albrecht|Superioris|Ier|III.|XV, Alessandro Ludovisio pape sous le nom de| ; 15| ; 22 | 2,481 | 1.08 | 186 |
028B$p | NA | 1,107 | 0.01% | 905 | Jean Baptiste Geneviève Marcellin|Karl Ivanovič|Johann Christian|Joseph-François|André|Nikolaj Mihajlovič,, (Николай Михайлович)|Christophe August | 1,501 | 1.36 | 316 |
028C: Person/Familie als 2. und weiterer geistiger Schöpfer, sonstige Personen/Familien, die mit dem Werk in Verbindung stehen, Mitwirkende, Hersteller, Verlage, Vertriebe | ||||||||
028C$ | NA | 3 | 0% | 2 | I.|Baron Santry | 3 | 1 | 0 |
028C$1 | NA | 14 | 0% | 31 | 001MUS0034883|001MUS0002625|001MUS0011512|001MUS0011511|001MUS0011517|001MUS0011520|001MUS0023103 | 133 | 9.5 | 14 |
028C$2 | NA | 1,250 | 0.01% | 3 | unimarc|Early works to 1800|Periodicals | 1,557 | 1.25 | 176 |
028C$3 | NA | 3,719 | 0.04% | 4,100 | BHI BH FOA 692|BHI BH FLL Res.820|BH FG 1923|BHI BH MED 11029|BHI BH FLL Res.313|BHI BH DER 65151|BHI BH FLL Res.941 | 4,555 | 1.22 | 601 |
028C$4 | Beziehungskennzeichnung (Code) | 359,214 | 3.78% | 511 | oth, Widmungsempfäger|dedikacija|ct|Drucker|wpr, Verfasser von Zusatztexten|oth, Textverf|rspt | 778,382 | 2.17 | 161,876 |
028C$6 | NA | 10 | 0% | 3 | 880-03|880-05|880-04 | 10 | 1 | 0 |
028C$7 | Vorläufiger Link | 82,662 | 0.87% | 35,719 | DE-603150187149|DE-603138258023|DE-603087066718|DE-603087887533|DE-603308347021|DE-603086854429|DE-603160645123 | 134,439 | 1.63 | 27,351 |
028C$9 | PPN | 176 | 0% | 175 | 67498|70918|6861|67426|68087|64710|8460 | 284 | 1.61 | 59 |
028C$B | Code | 1,930,372 | 20.34% | 3,648 | fl. 1731-1739, publisher|*edt, *aui, *cwt|ed, Valencia|*pbl, *pbl|*aui, *aft|traductor, compilador|Koment | 2,753,107 | 1.43 | 486,970 |
028C$P | Persönlicher Name | 363,397 | 3.83% | 55,543 | Roussille de Chamseru|Gail|Bourcey|Le Veau|Tant-mieux|Béchet jeune|Seelé | 439,558 | 1.21 | 46,760 |
028C$T | Feldzuordnung | 6,230 | 0.07% | 36 | 13|20|09|02|10)2|11)2|03 | 20,816 | 3.34 | 6,185 |
028C$U | Schriftcode | 6,230 | 0.07% | 14 | Hebr|HebrHebr|Hant|Grek|Arab|Latn028C |r | 20,816 | 3.34 | 6,185 |
028C$a | Access point (family name) | 2,836,724 | 29.89% | 236,357 | Graeuwen|WEGE.|Optatien|Cnaustinus|Susta|Dardonville|Sersale | 4,417,366 | 1.56 | 888,225 |
028C$b | NA | 11 | 0% | 5 | I.|XXVI.|XII.|II.|IV. | 11 | 1 | 0 |
028C$c | Prefix | 60,906 | 0.64% | 166 | aus dem|van den|dal|of|in de|Le Français de|dall' | 67,186 | 1.1 | 5,173 |
028C$d | First name | 2,800,845 | 29.51% | 126,728 | Johannes Eccard|Giorgio Gregorio|Adriaen : van der|Thoma Erasmi|Robert Blackall|Magnus Gabrielsson|Francisco Felipe | 4,295,908 | 1.53 | 858,098 |
028C$e | Addition to the first name | 24 | 0% | 17 | vert. red.|rr, Jacobus.|סדר.|מק״ק בערלין,|Heirs of.|rr, François,|printer. |
32 | 1.33 | 7 |
028C$g | NA | 18 | 0% | 2 | PV:|PP: | 42 | 2.33 | 11 |
028C$h | Years | 1,843,341 | 19.42% | 107,301 | 1520-m. ca. 1551|flor. 1625-1660|1454-1512|ca. 1695-1746|1010-1057|-fl. 1643|um 1620 | 2,672,703 | 1.45 | 490,557 |
028C$i | Solution of pseudonym | 9 | 0% | 10 | Contains work:|includes work:|Contains expression:|Container of work:|contains work:|contains work :|contains expression : | 18 | 2 | 4 |
028C$l | Permanent addition | 458,331 | 4.83% | 32,318 | ha-Darshan, mi-Franḳforṭ|Benediktus Gotthelf|1543-1615|Docteur ès Droits|afterwards Ali Bey|Theod: zoon, Wilh: en Abrah: kleinzoon|da Vicenza | 561,645 | 1.23 | 62,053 |
028C$n | Zählung | 141,781 | 1.49% | 623 | II., censor|J. F.|VIIII.|XII.|I. Švédský|X Gustave|VII. Porfyrogennétos | 152,850 | 1.08 | 8,387 |
028C$p | Weitere identifizierende Angaben | 74,466 | 0.78% | 8,989 | John Sympson|Robert Boreman|Ernst Friedrich|Jean Nicolas Sébastien|Paul-François de|J.E.N.|Karl Avgust Rejngard Feliks,, (Карл Август Рейнгард Феликс) | 91,277 | 1.23 | 9,041 |
028C$t | NA | 2 | 0% | 2 | Gondolier; or, A night in Venice, Author of.|Friendly rivals, Author of. | 2 | 1 | 0 |
028C$u | NA | 1 | 0% | 1 | ancrace | 1 | 1 | 0 |
028C$v | Datum der Generierung | 777 | 0.01% | 151 | 142|4|41|160-169|37|15|133 | 797 | 1.03 | 16 |
028C$w | NA | 14,672 | 0.15% | 6,097 | CFIE049045|VIAE001988|UFIE000560|TO0E028417|SBLE008546|LO1E046214|TO0E110153 | 15,385 | 1.05 | 433 |
028C: Secondary author/receiver | ||||||||
028C$ | NA | 3 | 0% | 2 | I.|Baron Santry | 3 | 1 | 0 |
028C$1 | NA | 14 | 0% | 31 | 001MUS0034883|001MUS0002625|001MUS0011512|001MUS0011511|001MUS0011517|001MUS0011520|001MUS0023103 | 133 | 9.5 | 14 |
028C$2 | NA | 1,250 | 0.01% | 3 | unimarc|Early works to 1800|Periodicals | 1,557 | 1.25 | 176 |
028C$3 | NA | 3,719 | 0.04% | 4,100 | BHI BH FOA 692|BHI BH FLL Res.820|BH FG 1923|BHI BH MED 11029|BHI BH FLL Res.313|BHI BH DER 65151|BHI BH FLL Res.941 | 4,555 | 1.22 | 601 |
028C$4 | Beziehungskennzeichnung (Code) | 359,214 | 3.78% | 511 | oth, Widmungsempfäger|dedikacija|ct|Drucker|wpr, Verfasser von Zusatztexten|oth, Textverf|rspt | 778,382 | 2.17 | 161,876 |
028C$6 | NA | 10 | 0% | 3 | 880-03|880-05|880-04 | 10 | 1 | 0 |
028C$7 | Vorläufiger Link | 82,662 | 0.87% | 35,719 | DE-603150187149|DE-603138258023|DE-603087066718|DE-603087887533|DE-603308347021|DE-603086854429|DE-603160645123 | 134,439 | 1.63 | 27,351 |
028C$9 | PPN | 176 | 0% | 175 | 67498|70918|6861|67426|68087|64710|8460 | 284 | 1.61 | 59 |
028C$B | Code | 1,930,372 | 20.34% | 3,648 | fl. 1731-1739, publisher|*edt, *aui, *cwt|ed, Valencia|*pbl, *pbl|*aui, *aft|traductor, compilador|Koment | 2,753,107 | 1.43 | 486,970 |
028C$P | Persönlicher Name | 363,397 | 3.83% | 55,543 | Roussille de Chamseru|Gail|Bourcey|Le Veau|Tant-mieux|Béchet jeune|Seelé | 439,558 | 1.21 | 46,760 |
028C$T | Feldzuordnung | 6,230 | 0.07% | 36 | 13|20|09|02|10)2|11)2|03 | 20,816 | 3.34 | 6,185 |
028C$U | Schriftcode | 6,230 | 0.07% | 14 | Hebr|HebrHebr|Hant|Grek|Arab|Latn028C |r | 20,816 | 3.34 | 6,185 |
028C$a | Access point (family name) | 2,836,724 | 29.89% | 236,357 | Graeuwen|WEGE.|Optatien|Cnaustinus|Susta|Dardonville|Sersale | 4,417,366 | 1.56 | 888,225 |
028C$b | NA | 11 | 0% | 5 | I.|XXVI.|XII.|II.|IV. | 11 | 1 | 0 |
028C$c | Prefix | 60,906 | 0.64% | 166 | aus dem|van den|dal|of|in de|Le Français de|dall' | 67,186 | 1.1 | 5,173 |
028C$d | First name | 2,800,845 | 29.51% | 126,728 | Johannes Eccard|Giorgio Gregorio|Adriaen : van der|Thoma Erasmi|Robert Blackall|Magnus Gabrielsson|Francisco Felipe | 4,295,908 | 1.53 | 858,098 |
028C$e | Addition to the first name | 24 | 0% | 17 | vert. red.|rr, Jacobus.|סדר.|מק״ק בערלין,|Heirs of.|rr, François,|printer. |
32 | 1.33 | 7 |
028C$g | NA | 18 | 0% | 2 | PV:|PP: | 42 | 2.33 | 11 |
028C$h | Years | 1,843,341 | 19.42% | 107,301 | 1520-m. ca. 1551|flor. 1625-1660|1454-1512|ca. 1695-1746|1010-1057|-fl. 1643|um 1620 | 2,672,703 | 1.45 | 490,557 |
028C$i | Solution of pseudonym | 9 | 0% | 10 | Contains work:|includes work:|Contains expression:|Container of work:|contains work:|contains work :|contains expression : | 18 | 2 | 4 |
028C$l | Permanent addition | 458,331 | 4.83% | 32,318 | ha-Darshan, mi-Franḳforṭ|Benediktus Gotthelf|1543-1615|Docteur ès Droits|afterwards Ali Bey|Theod: zoon, Wilh: en Abrah: kleinzoon|da Vicenza | 561,645 | 1.23 | 62,053 |
028C$n | Zählung | 141,781 | 1.49% | 623 | II., censor|J. F.|VIIII.|XII.|I. Švédský|X Gustave|VII. Porfyrogennétos | 152,850 | 1.08 | 8,387 |
028C$p | Weitere identifizierende Angaben | 74,466 | 0.78% | 8,989 | John Sympson|Robert Boreman|Ernst Friedrich|Jean Nicolas Sébastien|Paul-François de|J.E.N.|Karl Avgust Rejngard Feliks,, (Карл Август Рейнгард Феликс) | 91,277 | 1.23 | 9,041 |
028C$t | NA | 2 | 0% | 2 | Gondolier; or, A night in Venice, Author of.|Friendly rivals, Author of. | 2 | 1 | 0 |
028C$u | NA | 1 | 0% | 1 | ancrace | 1 | 1 | 0 |
028C$v | Datum der Generierung | 777 | 0.01% | 151 | 142|4|41|160-169|37|15|133 | 797 | 1.03 | 16 |
028C$w | NA | 14,672 | 0.15% | 6,097 | CFIE049045|VIAE001988|UFIE000560|TO0E028417|SBLE008546|LO1E046214|TO0E110153 | 15,385 | 1.05 | 433 |
028D: NA | ||||||||
028D$1 | NA | 1 | 0% | 26 | 001MUS0011531|001MUS0011532|001MUS0011541|71202|001MUS0011525|001MUS0011527|001MUS0011528 | 83 | 83 | 1 |
028D$2 | NA | 103 | 0% | 1 | unimarc | 363 | 3.52 | 39 |
028D$4 | NA | 7,419 | 0.08% | 75 | oth, Illustrator|mte|cwt|oth, Komm|wat|oth, Respondent|ctg | 71,962 | 9.7 | 6,086 |
028D$7 | NA | 381 | 0% | 1,737 | DE-603189381396|DE-603189393726|DE-603112621872|FERV070392|MUSV084618|MUSV085727|SBNV027690 | 2,516 | 6.6 | 319 |
028D$B | NA | 1,543 | 0.02% | 112 | Favola Per Musica|spaustuvininkas|Stecher|Arietta|Canzonetta|artista|anot | 8,460 | 5.48 | 1,219 |
028D$P | NA | 346 | 0% | 288 | Ioannes|Beda Venerabilis|Pseudo Séneca|Venantius Fortunatus|Teófilo|P.Th|Cvi Hirš ben Chajim | 695 | 2.01 | 135 |
028D$a | NA | 8,266 | 0.09% | 13,497 | Il portator d'acqua ossia Le due giornate ballo di mezzo carattere in tre atti composto e diretto dal signor Giacomo Serafini|Pfeil|Vigelius|Ovidius Naso, , Publius|Termine|LONTANANZA AMOROSA.|Aguilar | 72,884 | 8.82 | 6,662 |
028D$d | NA | 8,099 | 0.09% | 3,356 | Josephus|Germanico|Antoine : de Ferriol|Fracisca Augusta : da|Christiaane van|Matías de los|Francesco Th | 67,707 | 8.36 | 6,425 |
028D$h | NA | 4,805 | 0.05% | 3,806 | active 1769-1801| ; 18/s|asi 1729-1826| 1488-1540|55-120|1511-1550|1408-1472 | 15,194 | 3.16 | 2,855 |
028D$l | NA | 4,764 | 0.05% | 547 | ; duchessa| ballerino, ; macchinista|der Jüngere|de Aquitania| figlio; ballerino| Duca di Mondragone|de Forolivio | 26,347 | 5.53 | 3,180 |
028D$n | NA | 91 | 0% | 22 | VI.| 2. metà sec.18|V.| ; 4|III.| 1|II August | 159 | 1.75 | 27 |
028D$p | NA | 42 | 0% | 25 | Musica di Gaspero Angiolini|Augustus Dudley|John Frederick William|Daniel|Elizabeth|James Mallcott|Bedwell | 52 | 1.24 | 10 |
028D$v | NA | 10 | 0% | 4 | 2|240-249|25|1 | 13 | 1.3 | 3 |
028D$w | NA | 114 | 0% | 146 | MUS0035351|SBLE006420|MUS0039692|TO0E034732|MUS0036149|PUVE007790|LIGE008451 | 184 | 1.61 | 34 |
028E: Interpret | ||||||||
028E$B | In RDA-Sätzen nicht zugelassen | 17 | 0% | 5 | edt|aut|aui|dte|hnr | 29 | 1.71 | 3 |
028E$P | In RDA-Sätzen nicht zugelassen | 9 | 0% | 8 | Dignum|Friedrich Wilhelm|Karl Friedrich August Wilhelm|Ashe|Mountain|S***|Vaughan | 10 | 1.11 | 1 |
028E$a | In RDA-Sätzen nicht zugelassen | 2,657 | 0.03% | 408 | Gern|Braun|Winck|Holzbecher|Sieber|Bannister|Labes | 20,675 | 7.78 | 2,504 |
028E$c | In RDA-Sätzen nicht zugelassen | 297 | 0% | 2 | de la|von | 297 | 1 | 0 |
028E$d | In RDA-Sätzen nicht zugelassen | 2,656 | 0.03% | 246 | Sophie Friederike|Thomas|Philippus|Albert Leopold|Johann Wilhelm|Bernhard|Johann Friedrich Wilhelm | 20,674 | 7.78 | 2,504 |
028E$h | In RDA-Sätzen nicht zugelassen | 2,591 | 0.03% | 249 | 1749-1798|1745-1790|1800-1828|1772-1840|1821|1135-1204|1824 | 14,383 | 5.55 | 2,422 |
028E$l | In RDA-Sätzen nicht zugelassen | 20 | 0% | 8 | Mrs|Braunschweig-Lueneburg, Herzog|Preußen, König|Madame|Mister|Sänger|Mrs. | 21 | 1.05 | 1 |
028E$n | In RDA-Sätzen nicht zugelassen | 2 | 0% | 1 | I. | 2 | 1 | 0 |
028G: Sonstige Person/Familie | ||||||||
028G$3 | NA | 1 | 0% | 1 | Vol. 2: | 1 | 1 | 0 |
028G$7 | Vorläufiger Link | 38 | 0% | 39 | DE-60328874750X.|DE-603151990417|DE-603139502505|DE-603086926594|DE-603086983539|DE-603159451752|DE-603086837869 | 46 | 1.21 | 6 |
028G$9 | PPN | 4 | 0% | 4 | 41440|20769|3658|53795 | 4 | 1 | 0 |
028G$B | Beziehungskennzeichnung (Text) | 442,390 | 4.66% | 859 | publisher, bookseller, *pbl|former ownerpJohn Alban|former ownerpJohn Grosvenor|*edt, *ins|*fmo, *fmo|former owner?pJames|of Inverness, former owner | 958,701 | 2.17 | 176,598 |
028G$P | Persönlicher Name | 79,632 | 0.84% | 18,543 | Mauritius, Dux Saxoniae|A.de S.|Henricus Jacobus, Magnae Britanniae Regis Filius|Ernestus Archiepiscopus Coloniensis|Delaforge|F. Eliseus a S. Cyrillo|Fronton Du Duc | 102,034 | 1.28 | 13,961 |
028G$T | Feldzuordnung | 140 | 0% | 17 | 10|05|13|18|12|16|17 | 358 | 2.56 | 134 |
028G$U | Schriftcode | 140 | 0% | 3 | Latn|Cyrl|Hebr | 358 | 2.56 | 134 |
028G$W | NA | 1 | 0% | 1 | lAbNL. | 1 | 1 | 0 |
028G$a | Familienname | 473,124 | 4.98% | 124,045 | Carolus Theodorus|Wuttgenau|Pelleve|Henneman|Anten|Mittelhus|Ebelingi | 912,586 | 1.93 | 157,652 |
028G$c | Präfix (wenn nicht erstes Element des bevorzugten Namens) | 23,051 | 0.24% | 100 | Kardinal|Conte|Baronet|le|van den|ze|af | 26,038 | 1.13 | 2,387 |
028G$d | Vorname(n) | 466,327 | 4.91% | 61,684 | Emmanuel-Félicité de|Joan. Franc. Adam. Roman. L.B. de|Marseille M.|Joachim Conradus|Otto Mordian von der|Achillus|Liebrecht Wilhelm Heinrich | 893,719 | 1.92 | 152,462 |
028G$e | In RDA-Sätzen nicht zugelassen | 1 | 0% | 1 | former owner | 1 | 1 | 0 |
028G$h | Lebensdaten | 332,396 | 3.5% | 33,319 | 1576-1623|1828-1899|1592-1614|1520-1584|1711-84|1409-1480|1567?-1618? | 444,712 | 1.34 | 68,979 |
028G$l | Beiname, Gattungsname, Territorium, Titulatur | 90,513 | 0.95% | 11,726 | Duc de Schleswick, Holstein, Stormarn & Ditmarschen|Dux Saxonicaeae|England, König, VIII.|de Beaujeu|Probst von Reichertsperg|Magdeburgum, Archiepiscopus|Hohenlohe-Kirchberg, Fürstin | 109,494 | 1.21 | 12,629 |
028G$n | Zählung | 23,697 | 0.25% | 77 | XIII|XI.|Library|II książę brzeski|18th century|X.|-1787 | 26,665 | 1.13 | 2,346 |
028G$p | Weitere identifizierende Angaben | 5,790 | 0.06% | 559 | Timofej|Nathaniel William|Jean Baptiste Pierre Antoine de Monet|Laura Klots|Michail Semenovič|Jean|Jo | 6,328 | 1.09 | 401 |
028L: NA | ||||||||
028L$2 | NA | 3,293 | 0.03% | 110 | gnd, Expl. DE-603785592458|gnd, Expl. DE-6031024713970|gnd, Expl. DE-603622039873|gnd, Expl. DE-603620735309|gnd, Expl. DE-603577886746|gnd, Expl. DE-6031009850237|gnd, Expl. DE-603637073150 | 3,587 | 1.09 | 225 |
028L$4 | NA | 77,221 | 0.81% | 29 | fmo, dedikacija|com|ctg|ann|egr|col|pbl | 104,884 | 1.36 | 17,630 |
028L$7 | NA | 3,331 | 0.04% | 470 | gnd118535455|DE-603345387392|DE-603345387384|gnd189646012|gnd100099459|gnd143173049|gnd1151134457 | 3,525 | 1.06 | 136 |
028L$8 | NA | 6,342 | 0.07% | 6 | 3\c|2\c|1\c|4\c|5\c|6\c | 8,004 | 1.26 | 1,439 |
028L$9 | NA | 3,245 | 0.03% | 413 | 704507994|077983270|564821950|886058449|376379936|696689073|076604012 | 3,425 | 1.06 | 124 |
028L$B | NA | 24,072 | 0.25% | 99 | *aut, *aui, *bsl|Sammler|printer and bookseller|former owner, Donor|aut|bookbinder|contributor, donor | 33,767 | 1.4 | 6,104 |
028L$P | NA | 48,628 | 0.51% | 593 | Ghillány de Lázy et Bernicze, Karl Emericus|Cyprianus Premisliensis|Württembergové rod|Bentley, Phyllis Eleanor|Duhaze|Elie Luzac|Weissenau - premonstrátský klášter Augia minor | 51,023 | 1.05 | 2,306 |
028L$T | NA | 6 | 0% | 5 | 05|04|06|03|02 | 7 | 1.17 | 1 |
028L$U | NA | 6 | 0% | 3 | Cyrl|Cyrl028C |Latn | 7 | 1.17 | 1 |
028L$a | NA | 52,914 | 0.56% | 11,263 | Lischka|Jagmin|Colby|Schaeffesi|Belle-Isle|Korzendorffer|Leonas | 68,316 | 1.29 | 9,864 |
028L$d | NA | 50,091 | 0.53% | 5,242 | Mary E.|Jane Burden|Joannes Henricus Ignatius|Amelia|Anselmus|Mary Schlesinger|Witold | 64,150 | 1.28 | 8,879 |
028L$h | NA | 42,743 | 0.45% | 5,985 | 1535-1570|činný 1511-1513|činný 1535-1569|-d. 1679|1651-1711|asi 1554-1591|fl. 1731-fl. 1731 | 51,888 | 1.21 | 6,089 |
028L$l | NA | 6,516 | 0.07% | 456 | gróf|Lucy Violet|Bilinensis|General|Vilniaus vienuolyno teologas|Parvista|šv | 6,826 | 1.05 | 281 |
028L$n | NA | 222 | 0% | 22 | ; 12|Skiemonių prepozitas|XV.| ; 7|Antoni|IV.|Slucko kunigaikštis | 223 | 1 | 1 |
028L$p | NA | 3,584 | 0.04% | 3,453 | Expl. DE-6031021123951|Expl. DE-603586229833|Expl. DE-6031018754857|Expl. DE-603660171112|Expl. DE-60377418972X.|Expl. DE-603163166722|Expl. DE-603616224400 | 3,781 | 1.05 | 139 |
028N: NA | ||||||||
028N$B | NA | 126 | 0% | 4 | dte|hnr|cns|aut | 244 | 1.94 | 55 |
028N$P | NA | 35 | 0% | 45 | Erasmus|Antonius|Caelestinus|Lucas|Otto|Claudius|Marcus Anthonius | 58 | 1.66 | 13 |
028N$a | NA | 176 | 0% | 275 | Härtelius|Grave von Windisch Grätz|Humbs|Carrillius|Moguntinus|Glantz|Mancinus | 319 | 1.81 | 75 |
028N$c | NA | 33 | 0% | 12 | le|a|Comes in|in|van der|de la|zu | 43 | 1.3 | 7 |
028N$d | NA | 175 | 0% | 203 | Pedro|Bernardo|F. P.|Honorius|Ludwig|Aurelius|Sebastianus | 314 | 1.79 | 73 |
028N$h | NA | 29 | 0% | 32 | 1655-1704|1527-1591|1545-1604|1604-1680|1576-1645|1681|1551-1602? | 34 | 1.17 | 3 |
028N$l | NA | 34 | 0% | 50 | a S. Henrico|Episcopus Adramytensis|a Campo|Romanorum Imperator|Abbas|Römisch-deutsches-Reich, Kaiser, I.|Minister Generalis Capuccinis | 56 | 1.65 | 13 |
028Z: Abweichende Namen in Nicht-RDA-Sätzen, Importdaten | ||||||||
028Z$B | NA | 3 | 0% | 2 | aut|ths | 5 | 1.67 | 2 |
028Z$P | Persönlicher Name | 1,172 | 0.01% | 674 | Flagello de Barberini|Elisabeth Charlottinn|Zacharias|Odofredus|Georg-Friderich|Claudia|Johann Kasimir | 1,677 | 1.43 | 252 |
028Z$T | Feldzuordnung | 1,643 | 0.02% | 33 | 32|28|03|16|23|07|10 | 3,934 | 2.39 | 1,643 |
028Z$U | Schriftcode | 1,643 | 0.02% | 3 | Latn|Cyrl|Hant | 3,934 | 2.39 | 1,643 |
028Z$a | Familienname | 587,501 | 6.19% | 124,291 | Geibel|Harenberg|Weisin|Georgius Mantuanus.|Amnelio|Münchenrod|Krumms | 798,679 | 1.36 | 151,925 |
028Z$c | Präfix (wenn nicht erstes Element des bevorzugten Namens) | 1,413 | 0.01% | 49 | à|... de|zu|Under|zur|zum|a | 2,557 | 1.81 | 594 |
028Z$d | Vorname(n) | 529,129 | 5.57% | 61,108 | Euagrius Scholasticus; lat.|B.H.|Jean Lucas.|Wolff Abraham|Gottlieb Adolphus Henricus.|Joannes Burchard.|Tido Heinrich von. | 692,498 | 1.31 | 123,849 |
028Z$h | NA | 9,079 | 0.1% | 35 | 3040|3022|3027|3002|3018|1770-1853|3059 | 12,731 | 1.4 | 2,129 |
028Z$l | Beiname, Gattungsname, Territorium, Titulatur | 988 | 0.01% | 564 | Freiberg|Oldenburg-Delmenhorst, Graf|Magna Britannia, Rex, I.|Sachsen-Weißenfels, Herzogin, 1627-1669|Schleswig-Holstein-Sonderburg-Plön, Herzogin|Solms, Comes, Filius|Maro | 1,453 | 1.47 | 229 |
029A: Körperschaft als 1. geistiger Schöpfer | ||||||||
029A$1 | NA | 65 | 0% | 23 | 71102|001CAGE019097|001MODE032350|001RMSE063044|71002|001TO0E019431|700 1 | 254 | 3.91 | 65 |
029A$2 | NA | 65 | 0% | 1 | unimarc | 71 | 1.09 | 4 |
029A$4 | Beziehungskennzeichnung (Code) | 95,578 | 1.01% | 30 | chr|edt|sgn|Verfasser|aft|aqt|isb | 95,698 | 1 | 74 |
029A$7 | Vorläufiger Link | 4,468 | 0.05% | 1,476 | (DE-603)040601153|(DE-603)043965938|(DE-603)041887212|(DE-603)045203385|(DE-603)040263223|(DE-603)040594416|(DE-603)040691403 | 4,539 | 1.02 | 42 |
029A$9 | PPN | 5,417 | 0.06% | 769 | 59051|50237|85267|66147|50560|60195|83629 | 5,417 | 1 | 0 |
029A$B | Beziehungskennzeichnung (Text) | 180,275 | 1.9% | 87 | General Assembly|Booksellers|autor|ed. lit|sudaryt|Fonction non précisée|surveyor, *srv | 180,275 | 1 | 0 |
029A$a | Bevorzugter Name (nur in Importdaten) | 441,649 | 4.65% | 28,180 | Real Academia de San Luis (Saragossa)|Gymnase|Bruderschaft unter den Heiligsten Namen Jesus, Maria, Joseph|Saint Anne, Soho (Parish)|House of Refuge (Philadelphia, Pa.)|Venice (Republic : To 1797)|Santiago de Compostela (Archidiócesis) | 446,967 | 1.01 | 4,451 |
029A$b | Untergeordnete Einheit (nur in Importdaten) | 190,018 | 2% | 10,901 | Loge de la Sincère Amitié. Rouen|Sacra congregatio super statu regularium| : Cortes|Clockmakers Company|Assemblée nationale constituante 1789-1791, Comité des colonies| : Consiglio generale del commercio|Section du Théâtre français | 190,910 | 1 | 842 |
029A$c | Ort | 1,106 | 0.01% | 294 | Worms|Cairo|Lisbon, Portugal)|Richmond, Va.)|Łuck)|Inverness, Scotland)|Philadelphia, Pa | 1,109 | 1 | 3 |
029A$d | Datum | 10,044 | 0.11% | 1,211 | 1758-1806)|(1790)|1656)|(1777)|1643|(1804 :|1613-1700 | 10,281 | 1.02 | 224 |
029A$g | Zusatz (nur in Importdaten) | 6,758 | 0.07% | 585 | Freiburg, Breisgau|Normandie|Jenkau, Danzig|Hanau|Amberg|Leitmeritz|Kassel | 6,785 | 1 | 27 |
029A$n | Zählung (nur in Importdaten) | 557 | 0.01% | 127 | (7th, 2nd session :|1º| 3|5.|3rd ;|(1º|(4th, 2nd session : | 560 | 1.01 | 3 |
029A$p | NA | 2 | 0% | 2 | Peace conference|General Meeting | 2 | 1 | 0 |
029A$w | NA | 3,398 | 0.04% | 849 | BA1E012478|TSA1110847|NAPE025763|MILE040524|MILE039379|RMLE062804|BVEE039415 | 3,528 | 1.04 | 82 |
029A$x | Ordnungshilfe (Abteilung) (nur in Importdaten) | 1 | 0% | 2 | Heidelberg|Würzburg | 2 | 2 | 1 |
029E: Körperschaft als Interpret | ||||||||
029E$a | In RDA-Sätzen nicht zugelassen | 3 | 0% | 2 | Große Loge Royale York zur Freundschaft|Johannis-Loge Minerva | 3 | 1 | 0 |
029E$g | In RDA-Sätzen nicht zugelassen | 3 | 0% | 2 | Berlin|Potsdam | 3 | 1 | 0 |
029F: Körperschaft als 2. und weiterer geistiger Schöpfer, sonstige Körperschaften, die mit dem Werk in Verbindung stehen, Mitwirkende, Hersteller, Verlage, Vertriebe | ||||||||
029F$1 | NA | 642 | 0.01% | 387 | 001MUS0021371|001RAVE002697|001MUS0021464|001RLZE023394|001LO1E049184|001TO0E009860|001LO1E044385 | 3,686 | 5.74 | 642 |
029F$2 | NA | 642 | 0.01% | 1 | unimarc | 863 | 1.34 | 71 |
029F$3 | NA | 1,564 | 0.02% | 1,990 | BHI BH DER 4737; BHI BH DER 10362|BHI BH DER 17366|BHI BH DER 99531|BHI BH DER 13538|BHI BH FLL 34623|BHI BH MED 1307|BHI BH DER 91891 | 2,569 | 1.64 | 709 |
029F$4 | Beziehungskennzeichnung (Code) | 909,622 | 9.58% | 88 | pro|sce|dgg Marburg|aui|hnr|aqt|jug | 1,033,423 | 1.14 | 104,578 |
029F$6 | NA | 1 | 0% | 1 | 880-03 | 1 | 1 | 0 |
029F$7 | Vorläufiger Link | 7,780 | 0.08% | 2,284 | DE-603040580423|DE-603225084228|DE-603085315664|DE-603042821452|DE-603225083256|DE-603085139122|DE-603042584310 | 9,760 | 1.25 | 839 |
029F$9 | PPN | 1,743 | 0.02% | 548 | 101539|69652|65783|60606|67763|56413|65262 | 1,879 | 1.08 | 120 |
029F$B | Code | 574,832 | 6.06% | 457 | Relieur|printers, *prt|Grad-verleihende Institution, *dgg Marburg|*prt, *fnd|auctioneer955423|*BIND.|Drucker, Herausgebendes Organ | 708,741 | 1.23 | 88,398 |
029F$T | Feldzuordnung | 6,677 | 0.07% | 28 | 08|14|21|11|12|05|06 | 26,036 | 3.9 | 6,673 |
029F$U | Schriftcode | 6,677 | 0.07% | 5 | Hebr|Grek|Hani|Cyrl|Latn | 26,036 | 3.9 | 6,673 |
029F$a | Main corporate body | 2,932,528 | 30.89% | 128,392 | Pels, Nicolaes Amsterdam|John Smith and Son|Osmont Offizin, Paris|Congregazione Cistercense Portoghese|Körner Schwester|D'Egmond, Cornelio eredi|Cour impériale puis royale de Grenoble | 4,415,578 | 1.51 | 1,219,152 |
029F$b | Department | 1,699,591 | 17.91% | 13,722 | Pelusio|Administration générale des domaines nationaux|Schwäbisch Hall|Bern or Geneva?|Stockholms domkapitel|Weathersfield|Parliament, 1717 | 1,825,916 | 1.07 | 110,402 |
029F$c | Geographical addition to name | 2,940 | 0.03% | 520 | Witwe|Vilnius|Dinbych|Nápoles|Opera :|Swansea|duc de, 1756-1842 | 3,131 | 1.06 | 79 |
029F$d | Remaining additions to name | 100,225 | 1.06% | 12,674 | 1799-11-08| 1726-1762|1820-03-01| 1484-1558|17..-18|1814-03-01|1795-01-15 | 105,796 | 1.06 | 4,986 |
029F$g | Remaining parts of name of corporate body | 44,490 | 0.47% | 1,370 | 18240402|1729-1753|1431-1794|Zinna|Quanaminthe|Witwe und Erben|Passau | 46,604 | 1.05 | 1,997 |
029F$n | Zählung (nur in Importdaten) | 67,585 | 0.71% | 282 | 37|25th|12th, 1st session :|MSS. Ridleyanoe|May session|5th, 2d session :|34th | 69,341 | 1.03 | 1,654 |
029F$w | Chronological addition to department | 17,976 | 0.19% | 5,746 | TO0E106437|NAP0540274|SBLE018495|UBOE098236|MILE024756|UFIE003206|FOGE017289 | 19,185 | 1.07 | 527 |
029F$x | Geographical addition to department | 36 | 0% | 15 | Werden-Helmstedt|Corvey|Lamspringe|Erfurt, St. Peter|Ringelheim|Hildesheim, St. Godehard|1978 | 36 | 1 | 0 |
029F$z | NA | 33 | 0% | 14 | Kije|London|Collège royal et archiépiscopal de Bourbon de la Compagnie de Jésus|Colonia|Southwark|Westminster|Christiania | 33 | 1 | 0 |
029F: Corporate Author | ||||||||
029F$1 | NA | 642 | 0.01% | 387 | 001MUS0021371|001RAVE002697|001MUS0021464|001RLZE023394|001LO1E049184|001TO0E009860|001LO1E044385 | 3,686 | 5.74 | 642 |
029F$2 | NA | 642 | 0.01% | 1 | unimarc | 863 | 1.34 | 71 |
029F$3 | NA | 1,564 | 0.02% | 1,990 | BHI BH DER 4737; BHI BH DER 10362|BHI BH DER 17366|BHI BH DER 99531|BHI BH DER 13538|BHI BH FLL 34623|BHI BH MED 1307|BHI BH DER 91891 | 2,569 | 1.64 | 709 |
029F$4 | Beziehungskennzeichnung (Code) | 909,622 | 9.58% | 88 | pro|sce|dgg Marburg|aui|hnr|aqt|jug | 1,033,423 | 1.14 | 104,578 |
029F$6 | NA | 1 | 0% | 1 | 880-03 | 1 | 1 | 0 |
029F$7 | Vorläufiger Link | 7,780 | 0.08% | 2,284 | DE-603040580423|DE-603225084228|DE-603085315664|DE-603042821452|DE-603225083256|DE-603085139122|DE-603042584310 | 9,760 | 1.25 | 839 |
029F$9 | PPN | 1,743 | 0.02% | 548 | 101539|69652|65783|60606|67763|56413|65262 | 1,879 | 1.08 | 120 |
029F$B | Code | 574,832 | 6.06% | 457 | Relieur|printers, *prt|Grad-verleihende Institution, *dgg Marburg|*prt, *fnd|auctioneer955423|*BIND.|Drucker, Herausgebendes Organ | 708,741 | 1.23 | 88,398 |
029F$T | Feldzuordnung | 6,677 | 0.07% | 28 | 08|14|21|11|12|05|06 | 26,036 | 3.9 | 6,673 |
029F$U | Schriftcode | 6,677 | 0.07% | 5 | Hebr|Grek|Hani|Cyrl|Latn | 26,036 | 3.9 | 6,673 |
029F$a | Main corporate body | 2,932,528 | 30.89% | 128,392 | Pels, Nicolaes Amsterdam|John Smith and Son|Osmont Offizin, Paris|Congregazione Cistercense Portoghese|Körner Schwester|D'Egmond, Cornelio eredi|Cour impériale puis royale de Grenoble | 4,415,578 | 1.51 | 1,219,152 |
029F$b | Department | 1,699,591 | 17.91% | 13,722 | Pelusio|Administration générale des domaines nationaux|Schwäbisch Hall|Bern or Geneva?|Stockholms domkapitel|Weathersfield|Parliament, 1717 | 1,825,916 | 1.07 | 110,402 |
029F$c | Geographical addition to name | 2,940 | 0.03% | 520 | Witwe|Vilnius|Dinbych|Nápoles|Opera :|Swansea|duc de, 1756-1842 | 3,131 | 1.06 | 79 |
029F$d | Remaining additions to name | 100,225 | 1.06% | 12,674 | 1799-11-08| 1726-1762|1820-03-01| 1484-1558|17..-18|1814-03-01|1795-01-15 | 105,796 | 1.06 | 4,986 |
029F$g | Remaining parts of name of corporate body | 44,490 | 0.47% | 1,370 | 18240402|1729-1753|1431-1794|Zinna|Quanaminthe|Witwe und Erben|Passau | 46,604 | 1.05 | 1,997 |
029F$n | Zählung (nur in Importdaten) | 67,585 | 0.71% | 282 | 37|25th|12th, 1st session :|MSS. Ridleyanoe|May session|5th, 2d session :|34th | 69,341 | 1.03 | 1,654 |
029F$w | Chronological addition to department | 17,976 | 0.19% | 5,746 | TO0E106437|NAP0540274|SBLE018495|UBOE098236|MILE024756|UFIE003206|FOGE017289 | 19,185 | 1.07 | 527 |
029F$x | Geographical addition to department | 36 | 0% | 15 | Werden-Helmstedt|Corvey|Lamspringe|Erfurt, St. Peter|Ringelheim|Hildesheim, St. Godehard|1978 | 36 | 1 | 0 |
029F$z | NA | 33 | 0% | 14 | Kije|London|Collège royal et archiépiscopal de Bourbon de la Compagnie de Jésus|Colonia|Southwark|Westminster|Christiania | 33 | 1 | 0 |
029G: Sonstige Körperschaft | ||||||||
029G$% | NA | 5 | 0% | 1 | UK-LoLPL. | 5 | 1 | 0 |
029G$1 | NA | 19,141 | 0.2% | 1,273 | https://d-nb.info/gnd/5127326-3|https://d-nb.info/gnd/16128632-X.|https://d-nb.info/gnd/5068750-5|https://d-nb.info/gnd/1003302-6|https://d-nb.info/gnd/1052940692|https://d-nb.info/gnd/1023748851|https://d-nb.info/gnd/4590915-5 | 24,667 | 1.29 | 3,767 |
029G$2 | NA | 19,142 | 0.2% | 2 | gnd|ICN. | 24,668 | 1.29 | 3,767 |
029G$3 | NA | 5 | 0% | 5 | RIIB-8o-6|RIIF-16o-69 primj b|RIIF-16o-22 primj a|RIIA-8o-10|RIIF-8o-129 | 5 | 1 | 0 |
029G$4 | Beziehungskennzeichnung (Code) | 83,937 | 0.88% | 11 | pbl|ann|bsl|ins|fmo|prt|dnr | 102,523 | 1.22 | 13,995 |
029G$5 | NA | 3,886 | 0.04% | 701 | Canterbury Cathedral Library:Mendham:W2/F-2-31|Tartu Ülikooli Raamatukogu:R III 1942:5959|Canterbury Cathedral Library:Mendham:W2/P-3-51|Biblioteca comunale di Sansepolcro, Sansepolcro Arezzo: FA G 6 423|Biblioteca provinciale dei frati minori francescani, Firenze: BPF 5.2.398|Canterbury Cathedral Library:Mendham:W2/N-7-7|Biblioteca del Pontificio Seminario regionale Pio XII, Monteriggioni Siena: FCMS A 058 | 4,290 | 1.1 | 374 |
029G$7 | Vorläufiger Link | 18,604 | 0.2% | 1,273 | gnd14297806X696805634|gnd107285718982841565X|gnd509391-0101369581|gnd117110981693545836|gnd14212351X696754940|gnd3072606-2714572772|gnd11665760X078142741 | 23,326 | 1.25 | 3,387 |
029G$8 | Expansion des bevorzugten Namens | 1 | 0% | 1 | Biblioteka | 1 | 1 | 0 |
029G$9 | PPN | 18,723 | 0.2% | 1,303 | 695685791|696372150|698049616|798334738|1042000727|366047353|670117447 | 23,953 | 1.28 | 3,556 |
029G$B | Beziehungskennzeichnung (Text) | 124,925 | 1.32% | 181 | donor952505|former owner, StEdNL.|former owner998621|former owner953541|bookbinder|former owner969215|former owner966513 | 191,450 | 1.53 | 27,882 |
029G$T | Feldzuordnung | 20 | 0% | 5 | 04|01|05|03|02 | 36 | 1.8 | 16 |
029G$U | Schriftcode | 20 | 0% | 4 | Latn029F |Cyrl|Latn|Cyrl029F | 36 | 1.8 | 16 |
029G$a | Bevorzugter Name (nur in Importdaten) | 190,189 | 2% | 19,975 | Vilniaus archeologijos muziejaus biblioteka|Martinus Nijhoff's Boekhandel en Uitgevermaatschappij <'s-Gravenhage>|Wismarsche Schulbibliothek Wismar|Hulkenroy, Izaak van erven, Haarlem|Thüringer Symphoniker <Saalfeld; Rudolstadt>|Lea and son|@Universae Rei Tributariae Provincialis supremarumque Rationum Director caeterique Summi Moderatores" | 263,309 | 1.38 | 34,263 |
029G$b | Untergeordnete Einheit (nur in Importdaten) | 45,301 | 0.48% | 531 | biblioteka|Antwerp College|Žákovská knihovna|KlosterbibiothekB*ins| : van der Weduwe|Her Majesty’s Stationery Office|Domus Varsaviensis | 46,632 | 1.03 | 1,179 |
029G$c | Ort | 203 | 0% | 71 | Saale|Mlle|Domini Sui Patroni ac Promotores|'s-Gravenhage|Полацк|Магілёў|Proconsul, Totusque Ordo Senatorius | 255 | 1.26 | 41 |
029G$d | Datum | 16,351 | 0.17% | 859 | 1516-1577|ca. 1782-ca. 1806|1560-1637|1651-1712|1882-1927|1781-1834|veikė 1690-1761 | 19,345 | 1.18 | 2,351 |
029G$g | Zusatz (nur in Importdaten) | 19,142 | 0.2% | 20,320 | Expl. DE-6031050860098|Expl. DE-6031038190053|Expl. DE-603805778470|Expl. DE-6031019629746|Expl. DE-6031054562784|Expl. DE-6031045427667|Expl. DE-6031012130703 | 24,668 | 1.29 | 3,767 |
029G$n | Zählung (nur in Importdaten) | 42 | 0% | 4 | 4| 2| 1| 2. & C. | 42 | 1 | 0 |
029K: NA | ||||||||
029K$a | NA | 43,089 | 0.45% | 2,344 | Ulm|Schola Bremensis|Nassovica Schola, Herborn|Schule Zeitz|Universitas Lipsiensis|Rijksuniversiteit, Leiden, Theologisch Faculteit|Schwarzburg, Grafschaft | 46,858 | 1.09 | 3,488 |
029K$b | NA | 205 | 0% | 35 | Konsistorium|Reichshofrat|Reichskammergericht|Collegium Paulinum|Cour des Monnaies|Rat|Staten-Generaal | 211 | 1.03 | 4 |
029K$c | NA | 212 | 0% | 50 | Molsheim|Greifswald|Breslau|Fürstentum|London|Freiburg, Breisgau|Leipzig | 229 | 1.08 | 10 |
030F: Meeting Name | ||||||||
030F$a | Name congress | 328 | 0% | 78 | Colloquium Trium Principum|Auktion|De civili hominis beatitudine|Assemblée Générale du Clergé de France|A @discourse delivered before the Church Missionary Society for Africa and the East, may 4, 1813|@Tridentinum|Industrieausstellung | 331 | 1.01 | 3 |
030F$j | Number congress | 41 | 0% | 28 | Wien|12|1705.01.03|8|1814 - 1815|26|29 | 41 | 1 | 0 |
030F$k | Town congress | 269 | 0% | 67 | Bremen|Helmstedt|Leiden|Amstelodami|Hagae-Comitis|Hall|London | 270 | 1 | 1 |
030F$p | Konferenzbeginn, -ende | 281 | 0% | 245 | 1674.05.28|1690.04.13|1752.10.23|1826.01.02|1678.07.22|1774.11.14|1826.04.24 | 283 | 1.01 | 2 |
030F: Konferenz | ||||||||
030F$a | Name congress | 328 | 0% | 78 | Colloquium Trium Principum|Auktion|De civili hominis beatitudine|Assemblée Générale du Clergé de France|A @discourse delivered before the Church Missionary Society for Africa and the East, may 4, 1813|@Tridentinum|Industrieausstellung | 331 | 1.01 | 3 |
030F$j | Number congress | 41 | 0% | 28 | Wien|12|1705.01.03|8|1814 - 1815|26|29 | 41 | 1 | 0 |
030F$k | Town congress | 269 | 0% | 67 | Bremen|Helmstedt|Leiden|Amstelodami|Hagae-Comitis|Hall|London | 270 | 1 | 1 |
030F$p | Konferenzbeginn, -ende | 281 | 0% | 245 | 1674.05.28|1690.04.13|1752.10.23|1826.01.02|1678.07.22|1774.11.14|1826.04.24 | 283 | 1.01 | 2 |
031@: Numbering area (serials) | ||||||||
031@$a | Number and/or date first issue | 63,727 | 0.67% | 35,616 | Vol. 1-32; Mar. 1799-Dec. 1814|1700/28(1732); 1729 - 1740|1.1801/05 - 3.1810/12|Tomus primus.|1820 (n° 1)-[...]|1799-1802 (I-III) [?]|1.1773 - 22.1794 | 63,727 | 1 | 0 |
031A: Numbering area (articles) | ||||||||
031A$e | Issue | 133,769 | 1.41% | 828 | 260|2.1609|2140|102|2430|028|14250 | 133,769 | 1 | 0 |
031A$j | Year | 133,776 | 1.41% | 368 | 1573|1684|1488|1738|1524|1632|1604 | 133,776 | 1 | 0 |
032@: Edition area | ||||||||
032@$S | NA | 1 | 0% | 1 | econde edition.... | 1 | 1 | 0 |
032@$T | Feldzuordnung | 946 | 0.01% | 18 | 03|02|04|06|14|13|11 | 1,886 | 1.99 | 940 |
032@$U | Schriftcode | 946 | 0.01% | 16 | Latn Prodaetsâ po Nevskoj perspektive u Aničkovskago mosta v dome g. Zubova po 1 rub. 20 kop. / Na ižd. P.B[ogdanoviča].|Latn Iždiveniem I. i M.Glazunovyh.|Latn|Hani|Cyrl Иждивением И.Сытина.|Cyrl|Arab | 1,886 | 1.99 | 940 |
032@$a | Edition data | 861,480 | 9.08% | 276,397 | Seconda editione, riueduta e corretta|Tweede en vermeerderde Druk|2. ed. corr e present. a Liceo Républicano|Ed. nouvelle, augm. .̤ enrichie de figures|Nae de Copie van Mayborgh/ 1608.|The 7th ed..|Naer de copye van Delft, ghedruckt voor Niclaes de Clerck. | 862,457 | 1 | 976 |
032@$c | Statement of responsibility | 1,141 | 0.01% | 845 | par M.F.P. Castel ...|correctissima, & posthumis quibusdam adaucta..|a Christophoro Wintzlero, Rychlinghusensi, I.V. Licentiato.|with a foreword by Colin Franklin]|Arricchita d' Illustrazioni dell' abate Antonio Fabris e di Vincenzo Dandolo, E corredata di due Dizionarj di Nomenclatura chimica vecchia e nuova, nuova e vecchia|ab authore recognita, emendata, & aucta|с прибавлением. | 1,141 | 1 | 0 |
032@$e | NA | 3 | 0% | 3 | rr|including ... the notes of Lord Chief Justice Hale and Lord Chancellor Nottingham and an analysis of Littleton, written by an unknown hand in 1658-9.|Traduction | 3 | 1 | 0 |
032@$h | Verantwortlichkeitsangabe | 23,382 | 0.25% | 17,038 | the astronomical part by James Ferguson.|corrigée revue par Guil. Sewel|corrected by J.R. Pitman.|mit Kupfern.|in which are now first added references to the several quotations in the Intellectual system, and an account of the life and writings of the author, by Thomas Birch.|bearb. von Johann Gottfried Woltmann|cum appendice nonnulorum medicamentorum compositorum. | 23,382 | 1 | 0 |
032@$n | NA | 1 | 0% | 1 | Tome premier | 1 | 1 | 0 |
032@$p | NA | 1 | 0% | 1 | Einfache Mittel | 1 | 1 | 0 |
033A: First publisher | ||||||||
033A$T | Feldzuordnung | 10,339 | 0.11% | 28 | 06|11|02(2|02-03|2|09|01 | 20,708 | 2 | 10,339 |
033A$U | Schriftcode | 10,339 | 0.11% | 13 | (4Hebr|Grek|r|Armn|Hebr|Arab|z | 20,708 | 2 | 10,339 |
033A$n | Name of publisher | 7,046,776 | 74.24% | 1,652,141 | ex typographia Francisci Layno : sumptibus Cajetani Eliae|per Pietro Bizzoni ...|T. Becket, Pall-Mall|por Sebastian de Cormellas al call.|Na Offic. de Jos Ant. da Sylva|Typ. Jos. Beimel|en la Imprenta de Maria Marti Viuda, delante de la Plaça de San Jayme | 7,252,428 | 1.03 | 185,739 |
033A$p | Place of publication | 8,919,736 | 93.97% | 291,654 | Basileæ: sumptibus hæred. Ludovici König|Potsdam [i.e. Berlin]|A Lyon [etc.]|Hamburg ; Und Bremen|Lausannae. Excudebat Franciscus le Preux illustriss. D. Bernensium typographus. M.DLXXX :|Juxta exemplar Romae. Parisiis|[Second colophon (recto of last leaf): Compluti ... idibus iulii Arno a natali christiano Millesimo quingẽtesimo. xx in officina Arnaldi guillelmi de Brocario ..] | 9,185,850 | 1.03 | 244,801 |
033B: 2nd and following publisher | ||||||||
033B$h | NA | 1,624 | 0.02% | 863 | -1996|1806-1807|1781-1791|1765|1782-1787,März|1824-1844|-1703,Juni | 2,303 | 1.42 | 450 |
033B$n | Name of publisher | 1,691 | 0.02% | 1,469 | Meltzer|Bran'sche|Matzdorf|Tempsky|(Krafft)|Pockwitz|Verl. des H. S. Privil. Landes-Industrie-Comptoirs | 2,335 | 1.38 | 412 |
033B$p | Place of publication | 2,005 | 0.02% | 706 | Querfurth|Groninga [u.a.]|Onolzbach|Brema|Offenbach, bei Franckfurt, Mayn|Sankt Petersburg|Edinburgh | 2,901 | 1.45 | 548 |
033D: STCN printer | ||||||||
033D$4 | Beziehungskennzeichnung (Code) | 5,343,786 | 56.3% | 5 | pup|uvp|ct1|ctct11|ct2 | 5,774,062 | 1.08 | 388,746 |
033D$n | NA | 92 | 0% | 87 | Rhet|Schmidt|Mathesius|Waisenhaus|Schwiegerauen|[Hoffmann]|Keilenbergius | 95 | 1.03 | 3 |
033D$p | Normierter Ort | 5,346,607 | 56.33% | 16,067 | Walk|Ragusum|Calmar|Briançon|Stockhulmisa|Magdeburga|Assisi | 5,777,227 | 1.08 | 388,872 |
033D$u | NA | 5,257,742 | 55.39% | 5,177 | http://thesaurus.cerl.org/record/cnl00036656|http://thesaurus.cerl.org/record/cnl00030616|http://thesaurus.cerl.org/record/cnl00028503|http://thesaurus.cerl.org/record/cnl00016329|http://thesaurus.cerl.org/record/cnl00003424|http://thesaurus.cerl.org/record/cnl00008555|http://thesaurus.cerl.org/record/cnl00016310 | 5,383,754 | 1.02 | 114,310 |
033H: Verbreitungsort in normierter Form | ||||||||
033H$a | NA | 1,993 | 0.02% | 518 | Osnabrück|Rouen|Świdnica|Stolberg/Harz|Hydra|Merseburg|Hohnstein | 2,422 | 1.22 | 319 |
033H$g | NA | 70 | 0% | 26 | Thüringen|Vilshofen|Stadt|Westfalen|Köthen|Schwäbisch|Niederlausitz | 72 | 1.03 | 2 |
033J: PPN printer STCN | ||||||||
033J$P | In RDA-Sätzen nicht zugelassen | 454,478 | 4.79% | 18,025 | Johannes Röhnerus|Bernhard Christoph Breitkopf|Wilson|J. D. Cornish|Heinrich Vogtherr|P. Catineau|Lorenz Albrecht | 781,871 | 1.72 | 174,142 |
033J$k | NA | 488,640 | 5.15% | 133 | FUZZY-98.14814814814815|FUZZY-95.58823529411765|FUZZY-97.6|FUZZY-96.62921348314607|FUZZY-98.98989898989899|FUZZY-97.01492537313433|FUZZY-96.47058823529412 | 837,516 | 1.71 | 186,913 |
033J$m | NA | 445,402 | 4.69% | 1 | (imprint record) in the CERL Thesaurus | 761,532 | 1.71 | 170,386 |
033J$o | NA | 490,263 | 5.16% | 19,901 | https://data.cerl.org/thesaurus/cni00026528|https://data.cerl.org/thesaurus/cni00066938|https://data.cerl.org/thesaurus/cni00008022|https://data.cerl.org/thesaurus/cni00091338|https://data.cerl.org/thesaurus/cni00043005|https://data.cerl.org/thesaurus/cni00060969|https://data.cerl.org/thesaurus/cni00098895 | 839,139 | 1.71 | 186,913 |
034D: Pagination, volumes | ||||||||
034D$T | Feldzuordnung | 155 | 0% | 5 | 04|03|02|05|06 | 310 | 2 | 155 |
034D$U | Schriftcode | 155 | 0% | 3 | Hebr|Cyrl|Latn | 310 | 2 | 155 |
034D$a | Text | 8,030,550 | 84.6% | 2,226,954 | In-18, XII-80 p.|[24], 371 [=372], [1] Bl., 48 S.|402 S.: 2 Kupfer|[10] Bl., 321 [i.e. 319] S., [32] Bl.|[6] Bl., 371 S., [1] S.|[20], ccclxxix, [1] c.|π1 2*4-6 A-L`SUP`8`LO` M`SUP`2`LO` | 8,038,788 | 1 | 4,453 |
034I: Dimensions (height, depth, thickness) | ||||||||
034I$T | Feldzuordnung | 155 | 0% | 5 | 05|06|04|03|02 | 307 | 1.98 | 152 |
034I$U | Schriftcode | 155 | 0% | 3 | Cyrl|Latn|Hebr | 307 | 1.98 | 152 |
034I$a | Text | 5,673,978 | 59.78% | 82,923 | 51 x 36,5 cm|2:o(4).|46 x 25 cm, gefaltet|In-18 (14 cm)|Plano (36 x 35 cm)|8 "|Platte: 332 x 427 mm | 5,674,238 | 1 | 256 |
034K: Accompanying material | ||||||||
034K$a | Text | 10,961 | 0.12% | 4,919 | ? p.) ; 8o|1 plan de Paris|krtn.|+ atlas. 30 cm.|1eraldi l. ill.|Beil.: Extrakt aus H. G. D. Ehret d. d. Chelsea 19.10.1749|[4] gef. Bl. (2 Ill., 2 Kt.) | 10,961 | 1 | 0 |
034M: Illustration statement | ||||||||
034M$T | Feldzuordnung | 10 | 0% | 3 | 04|02|03 | 18 | 1.8 | 8 |
034M$U | Schriftcode | 10 | 0% | 3 | Hebr|Cyrl|Latn | 18 | 1.8 | 8 |
034M$a | Text | 1,367,883 | 14.41% | 117,902 | 5 planches hors-texte.|Kupfert., Verl.-Sign. (Holzschn.), 29 Ill. (Kupferst.)|ill. (plates, inc. ports.)|Überw. Noten.|Frontispiz [1 gef. Bl.]|antip.|enkel gegrav. titelblad | 1,367,906 | 1 | 23 |
035E: Musical presentation statement | ||||||||
035E$a | Text | 107,639 | 1.13% | 14,996 | Scala [1:95000 ca.], 1/2 mille d'Allemagne=[4 cm]|Mill[iaria] Germanica, quorum 15. uni grad[u] respond[en]t =[ 60 mm] [et al.]|ca. 25 'Miles d'Irlande' to an inch.|10 Lieues communes to an inch.|5.4 inches to a mile.|Schaal [ca. 1:3.800]|ca. 45 miles to one inch. | 107,908 | 1 | 207 |
035E$f | Parallel text | 2,015 | 0.02% | 2,280 | 5 Milliaria Germanica communia, 6,5 cm|4 Lieues de Provencec, 5,2 cm|10 Meilen oder 20 000 Ruthen Rheinl.|12 Lieues Communes de France, de 25 au De'gre'., 12,65 cm|2 Milliaria Germanica commun. 15 in Gradu, 9 cm|8 Milliaria Germanica communia, 6,25 cm|3 Milliaria Germanica communia, 6 cm | 3,484 | 1.73 | 992 |
035F: Map projection | ||||||||
035F$a | Text | 152 | 0% | 104 | Murdoch Proj.|(ca O 0°30'-E 2°30'/N 50°30'-N 51°30)|marine leagues 20 in a degree|[ca. 1:210.000]|E 1°30'-E 7°30'/N 52°-N 49°|Scale: about 18 "lieues communes de France" to an inch.|4 "milaria Germanica communia" to an inch. | 152 | 1 | 0 |
035G: Co-ordinates | ||||||||
035G$a | Co-ordinates | 5,846 | 0.06% | 3,379 | W 003 35 00"-W 2 22 00"/N 59 23 00"-N 58 37 00"|E 007 08 58"-E 7 17 52"/N 50 42 02"-N 50 33 07"|E 031 0 0|W 065 48|E 015|E 007 06-E 07 08/N 46 56-N 46 54|E 008 19 06"-E 12 26 33"/N 50 55 01"-N 48 41 50" | 6,024 | 1.03 | 121 |
035G$b | Co-ordinates | 3,334 | 0.04% | 1,939 | W 068 28 00|E 010 34 00"|E 007 17/ N 051 43 -N 050 56|E 013 05|W 086 18|W 073 45|E 009 08/N 051 42 -N 051 12 | 3,354 | 1.01 | 19 |
035G$c | Co-ordinates | 5,457 | 0.06% | 2,807 | N 050 19|N 047 02 -N 46 05|N 054 12|N 080|N 058 00 -N 23 66|S 2370|N 045 10 -N 45 09 | 5,635 | 1.03 | 121 |
035G$d | Co-ordinates | 2,949 | 0.03% | 1,386 | N 038 45 0|N 047 14|N 041 50 00"|N 049 25|N 041 50|N 050 01 02"|S 040 | 2,969 | 1.01 | 19 |
036C: Link multi-volume publication (text) | ||||||||
036C$a | NA | 434,798 | 4.58% | 147,411 | Sammandrag af Swea-rikes historia, ifrån de...|Praemittitur commentationis de sanguinis missione in febribus intermittentibus|Les chef-d'oeuvres dramatiques : avec le jugement des sçavans à la fin de chaque pièce / Pierre Corneille|Repetitionvm In Varias Ivris Civilis Leges, In praxi præsertim Aduocatis perutiles, ac necessarias ... À Pompeio Limpio Nvper Compilatas. Volvmen III.|Taʾrīẖ muẖtaṣar ad-duwal|Hieronymi Treutleri IC. @Selectarum Disputationum Ad Ius Civile Iustinianaeum Quinquaginta Libris Pandectarum comprehensum, Volumina duo|Auserlesene Gedanken, Anekdoten, Fabeln, Schnurren und Mährchen | 454,273 | 1.04 | 18,057 |
036C$d | NA | 105,821 | 1.11% | 35,421 | Pour servir de Réponse à un Livre qui a pour tître La Conduite des Alliez & du dernier Ministère dans la présente Guerre|Ou Les Avantures merveilleuses du mandarin Fum-Hoam|... Cvm Rervm Svmmis, Et Indice Locvpletissimo|co li diece quatre de la gallaria d'Apollo|Mariani Victoriii Reatini ... labore et studio ... emendata, argumentis et scholiis illustrata ...|Warhafftiger Historischer Grund-Bericht aller derer ... Kriegs-Actionen, welche so wol wider die Ungarische Malcontanten, zeit währender derselben Empörung , als wider den allgmeinen Erb-Feind, den Türcken, beydes vor und nach dem ... Entsatz der Kayserlichen Residentz-Stadt Wien vorgenommen, und ... sieghafft ... fortgeführet worden|diversé en IV. parties | 106,580 | 1.01 | 750 |
036C$e | NA | 8 | 0% | 5 | Antiquariat Leo Liepmannsohn|Joh. Chn. Gtf. Jörg|Auβgefertiget von der Gemeine zu St. Jacob in Hamburg|gesammelt u. hrsg. durch Levin Hulsius|[Johann Wilhelm Rose] | 8 | 1 | 0 |
036C$f | NA | 2,644 | 0.03% | 893 | Argonautiques de Valerius Flaccus ou la Conquete de la toison d'or. Poe͏̈me traduit en vers francais par Mr. Adolphe Dureau de Lamalle|Fuci; or, colored Figures and Descriptions of the Plants referred by Botanists to the Genus Fucus|In quo omnia ad vitae usum pertinentia|@Conciliationis Ecclesiae Armenae Cvm Romana|Icones insectorum exoticorum|B. Athanasii Archiepiscopi Alexandrini @Opera Quae Reperiuntur Omnia|Icones et descriptiones plantarum cultarum et colendarum ... | 2,665 | 1.01 | 21 |
036C$h | NA | 275,963 | 2.91% | 86,218 | Nunc autem Cum Praefatione Dn. Christiano Chemnitii ... In lucem editas à Johanne Ebarto, Diacono Wettinensi|Par Mr. Reichard, Conseiller de S. A. S. Mfgr. le Duc regnant de Saxe-Gotha et Altenburg|[Hrsg. der Orig.-Ausg.: Sigmund Feyerabend. Hrsg.: Nicolaus Roth]|William Pattison|Traduit de l'Anglois par M. d'Alibard|Joh. Jos. Ign. Hoffmann|Gesammlet und hrsg. von Johann Paul Reinhard ... fortges. von Johann Adolf Schultes [Theil 4 ff] | 278,565 | 1.01 | 2,553 |
036C$l | NA | 423,779 | 4.46% | 45,966 | Accessio 2|(Hundert 1-6)|Terza|1,1-2|Bd. 2,H. 5|Pars IV. et Vltima|4,[Abth. 1.] | 423,793 | 1 | 14 |
036C$m | NA | 16,738 | 0.18% | 3,623 | [1].2|Zehnten Theils Zweyter Band|Pt. 5 [= H]|Tomus Secvndvs|Bd 5/6, 1|Tome LV.|LXIII. Band | 17,737 | 1.06 | 931 |
036D: Link to multi-volume publication | ||||||||
036D$7 | Vorläufiger Link | 367 | 0% | 152 | 143664565|536042551|536945950|321332504|434510971|245734740|536152101 | 367 | 1 | 0 |
036D$9 | PPN | 434,233 | 4.57% | 132,596 | 074876589|034010807|074834576|000523143|035171618|036328367|012115738 | 434,246 | 1 | 13 |
036D$X | Bandzählung in Sortierform (manuell) | 434,604 | 4.58% | 38,440 | 5,6.1788|1,68.1623|26.1784|1,23.1624|50.1745|11.1782|1-2.1683 | 434,617 | 1 | 13 |
036D$l | Numbering main series | 432,484 | 4.56% | 50,610 | Pars I, Vol. 5|H. 1 - 3|Appendix XLVII|[3.], 1|T. III, 12|1, Decas V|D. 2, St. 1 | 432,496 | 1 | 12 |
036E: Extra link serial publication | ||||||||
036E$T | NA | 236 | 0% | 10 | 00|05|09|02|01|03|04 | 474 | 2.01 | 236 |
036E$U | NA | 236 | 0% | 7 | Hebr|Cyrl|HebrHebr|Latn|Hant|Hani|Grek | 474 | 2.01 | 236 |
036E$a | Title | 479,911 | 5.06% | 97,272 | Teoria generale delle equazioni, in cui si dimostra impossibile la soluzione algebraica delle equazioni generali di grado superiore al quarto di Paolo Ruffini. Parte prima [-seconda]|Deutsche Neudrucke. Reihe: Texte des 18.Jh|Codex Regularum quas Sancti Patres Monachis et virginibus sanctimonialibus seruandas priscripsere, / collectus olim a S. Benedicto Anianiensis Abbate. ; LucasHolstenius Vatic. Basil. Canonicus Et Bibliotheci Prifectus in tres parte digestum, auctumque edidit|Apologie de la religion chretienne, contre l'auteur du christianisme devoile, & contre quelques autres critiques. Par ... Bergier ... Tome premier (-second)|Quaker tracts. British|Muses lyriques|Della guerra di Fiandra, descritta dal cardinal Bentiuoglio parte prima -terza! | 486,189 | 1.01 | 6,033 |
036E$c | Statement of responsibility | 3 | 0% | 2 | ill. a Jo. B. Koppe|Berg | 3 | 1 | 0 |
036E$h | Statement of responsibility sub-series | 204 | 0% | 69 | Johann J. Bellermann|The Bannatyne-Club|Gymnasium zu Prenzlau|Christian F. Meister|Königliches Gymnasium Marienwerder|Jaques Delille|ill. a Jo. B. Koppe | 205 | 1 | 1 |
036E$l | Numbering main series | 396,887 | 4.18% | 34,437 | 25]|TCD-E-497|8 - 10|reel 43, no. 244|12,1,1|Ausg.1|1re. année, 2e. livraison, no. 7 | 399,997 | 1.01 | 3,002 |
036E$m | Numbering sub-series | 5,314 | 0.06% | 1,083 | 1721 (Weihn.)]|W.S. 1823/24|1666 (Weihn.)]|vol. 5|1754|45|1707 (Ostern)] | 5,370 | 1.01 | 32 |
036E$p | NA | 5,586 | 0.06% | 596 | Awstria|Gymnasium zu Grauen Kloster|Schriften zu kirchlichen Feiern (Ostern)|Städtische Lateinschule|Paedagogium (Klosterschule)|Iudica certaminum|Paedagogium Academicum | 5,659 | 1.01 | 48 |
036F: Link serial publication | ||||||||
036F$ | NA | 4 | 0% | 4 | 000 u ger d|van planten met gedetailleerde illustraties in kleur.|00||| ger d| 000 0 lat d | 4 | 1 | 0 |
036F$- | NA | 1 | 0% | 1 | 604$bger$erak | 1 | 1 | 0 |
036F$0 | NA | 145 | 0% | 14 | 00 0 dut d|37A |28C | u swe d|46L |46D |33D | 147 | 1.01 | 2 |
036F$3 | NA | 2 | 0% | 2 | 6C |6F/01 | 2 | 1 | 0 |
036F$4 | NA | 21 | 0% | 4 | ct1033D |ct1|ct1009@ |1-1811$eVerfasser$0(DE-588)100227627$4aut | 22 | 1.05 | 1 |
036F$6 | NA | 40 | 0% | 12 | (DE-604)BV023895532047A |(DE-604)BV011116944047A |(DE-604)BV035506057047A |(DE-604)BV040336352047A |(DE-604)BV001166342047A |(DE-604)BV023471711047A |(DE-604)BV009816321047A | 40 | 1 | 0 |
036F$7 | NA | 5,065 | 0.05% | 524 | 216363608|24079849X|269346120|242006515|074658999|340768037|242275176 | 5,065 | 1 | 0 |
036F$9 | PPN | 19,716 | 0.21% | 1,193 | 002623897|001030078|03466341X|069284806|006653820|067162134|001085840 | 19,719 | 1 | 3 |
036F$@ | NA | 1 | 0% | 1 | ?" | 1 | 1 | 0 |
036F$C | NA | 1 | 0% | 1 | P | 1 | 1 | 0 |
036F$M | NA | 1 | 0% | 1 | oolenijzer | 1 | 1 | 0 |
036F$P | NA | 1 | 0% | 1 | rovenance: Chiswell, Richard / bookseller | 1 | 1 | 0 |
036F$X | NA | 95,534 | 1.01% | 3,094 | 1802005600|1805,0003,05|1824,0080,01|1307|32000|6100|1753 | 97,788 | 1.02 | 2,171 |
036F$a | Title | 137 | 0% | 404 | 008 801125m18241826fr y00 |0y ||| ||fre |047A |Ackermann, R.044L/00 |040 $aEAA$beng$cEAA$dm/c009B |Switzerland044L/04 |008 990505s1809uuuufr yy | ||| ||fre |047A |Fin. O 34v.1009B |007 hu|uuuuuuuucu047A | 703 | 5.13 | 129 |
036F$b | NA | 61 | 0% | 5 | US-CtY-BR|DE-601|DE|US-mdbj|DE-604 | 92 | 1.51 | 15 |
036F$c | Statement of responsibility | 129 | 0% | 33 | Stadtarchiv und Stadtbibliothek Fürth|Staatliche Bibliothek Regensburg009B |Staatliche Bibliothek Passau|Universität der Künste Berlin, Universitätsbibliothek|Dombibliothek Freising|BBG|Freie Universität Berlin, Universitätsbibliothek009B | 206 | 1.6 | 51 |
036F$d | Numbering/indication sub-series | 1 | 0% | 1 | Thomas | 1 | 1 | 0 |
036F$e | Title sub-series | 2 | 0% | 2 | elzebub gedruckter Traktätlein|t | 2 | 1 | 0 |
036F$f | NA | 73 | 0% | 3 | GENNL|FINLL|BRITL | 79 | 1.08 | 3 |
036F$l | Numbering main series | 93,257 | 0.98% | 10,659 | 150,b|1780,5|72,3|9,101|1824(WS)|8,34|1735 (Weihn.) | 95,511 | 1.02 | 2,171 |
036F$m | Numbering sub-series | 2 | 0% | 2 | DE-36|ents de Freinshemins nouvellement traQ3 | 2 | 1 | 0 |
036F$n | ISSN main series | 1 | 0% | 1 | [1558] | 1 | 1 | 0 |
036F$o | NA | 2 | 0% | 2 | ̈nkiöping, Åhr 1734.|n rechtmessig von Gott sey beruffen worden | 2 | 1 | 0 |
036F$p | NA | 20 | 0% | 17 | cnl00016012|cnl00028191|cnl00030793|cnl00010282|cnl00016067|cnl00031387|cnl00016037 | 21 | 1.05 | 1 |
036F$r | NA | 1 | 0% | 1 | ch | 1 | 1 | 0 |
036F$s | ISSN sub-series | 2 | 0% | 2 | anctum|simum virum immaturum | 2 | 1 | 0 |
036F$t | NA | 1 | 0% | 1 | res poésies du XVe siècle | 1 | 1 | 0 |
036F$u | NA | 20 | 0% | 17 | http://thesaurus.cerl.org/record/cnl00028191|http://thesaurus.cerl.org/record/cnl00016037|http://thesaurus.cerl.org/record/cnl00031387|http://thesaurus.cerl.org/record/cnl00016270|http://thesaurus.cerl.org/record/cnl00016122|http://thesaurus.cerl.org/record/cnl00016067|http://thesaurus.cerl.org/record/cnl00006296 | 21 | 1.05 | 1 |
036F$x | Filing field | 16 | 0% | 6 | Copy No.: c.1|Bd. 102 nicht enthalten!009B |Provenance: Κυριαζή-Σπέντσα, Μαρία / donor|Copy No.: c.1009B |Copy No.: c.1033D |100 | 17 | 1.06 | 1 |
NA | Link serial publication | 3 | 0% | 1 | NA | 3 | 1 | 0 |
037A: General note | ||||||||
037A$ | NA | 2 | 0% | 2 | Copy 2: ?18th century half diced calf and marbled paper.|StEdNL | 2 | 1 | 0 |
037A$2 | NA | 1 | 0% | 1 | . Sum domus Convent. Vłodav. [s. 109]. | 1 | 1 | 0 |
037A$3 | NA | 1 | 0% | 1 | . | 1 | 1 | 0 |
037A$4 | NA | 7 | 0% | 3 | fmo|VUB.|VUB | 7 | 1 | 0 |
037A$7 | NA | 4 | 0% | 4 | J 1944|8Textual holdings: No. 1867 (27 April-29 April 1727)|Textual holdings: Nos. XLVII-LII (Vol. 8) (January-June 1771)|Beregszász Benjámin kézírásával | 4 | 1 | 0 |
037A$9 | NA | 9 | 0% | 1 | 101524 | 9 | 1 | 0 |
037A$A | Quelle | 1 | 0% | 1 | ⁸ | 1 | 1 | 0 |
037A$B | NA | 1 | 0% | 1 | ⁴- | 1 | 1 | 0 |
037A$E | NA | 1 | 0% | 1 | e⁸ | 1 | 1 | 0 |
037A$F | NA | 1 | 0% | 1 | f⁴ | 1 | 1 | 0 |
037A$G | NA | 1 | 0% | 1 | ⁴ | 1 | 1 | 0 |
037A$I | NA | 2 | 0% | 1 | CN | 2 | 1 | 0 |
037A$T | Feldzuordnung | 430 | 0% | 9 | 01|07|05|03|04|03(2|02 | 944 | 2.2 | 430 |
037A$U | Schriftcode | 432 | 0% | 11 | Hebr|Grek|Cyrl|Arab|r|Armn|Hani | 946 | 2.19 | 430 |
037A$V | NA | 1 | 0% | 1 | VUB | 1 | 1 | 0 |
037A$X | NA | 1 | 0% | 1 | VI.F.13812/2 1. Conventus Crac. SS Joseph. et Michaelis Carm. Discalceator. - rps, zamazany ; 2. [dawna sygn. lwowska]. | 1 | 1 | 0 |
037A$a | Text | 5,113,677 | 53.87% | 5,551,913 | Vorlageform des Erscheinungsvermerks: A Vienne, Chez L'Heritier De Schulz Imprimeur De L'Universite, MDCCLXX.|Reliure en veau fauve du 16e siècle estampée à froid (restaurée) (Gid, "Reliures françaises estampées à froid à la Bibliothèque Mazarine, 366) [PARIS-Mazarine:204296498]|Cenefa tipográfica separando las dos columnas|Worde, Wynkyn de -1534?|Second volume has title: Supplementum editionis Lipsiensis Nicolai Damasceni. Continens annotationes et emendationes Diamantis Coray, Friderici Creutzeri [et al.] Quibus suas adscripsit I.C. Orellius. Accedunt Theodori Metochitae capita II De politia Cyrenaeorum et Cartaginiensium. 1811.|The person of quality is George Halifax.|Schmuckelemente: Xylographische Initiale A im Rotdruck. | 12,633,688 | 2.47 | 3,025,261 |
037A$c | NA | 1 | 0% | 1 | IT\ICCU\RMRE\004704 | 1 | 1 | 0 |
037A$g | NA | 3 | 0% | 7 | Első rész. - 1829. - Accession no.: [8], 235, [1] p.|Volumen III. - Accession no.: 283 p.|Dr. Ballagi Géza (pecsét)|Második rész. - 1829. - Accession no.: [8], 236 p.|Volumen IV. - Accession no.: 323 p.|Volumen II. - Accession no.: 330 p.|Volumen V. - Accession no.: 164 p. | 7 | 2.33 | 2 |
037A$l | NA | 96,253 | 1.01% | 26 | scolr|blkr|*|miclr|ABG oct 41 dl 2.|realr|avlr | 96,253 | 1 | 0 |
037A$m | NA | 5,748 | 0.06% | 1 | no | 5,748 | 1 | 0 |
037A$q | NA | 2 | 0% | 2 | (James)|(Cornelis de), 1652-1726 or 7 | 2 | 1 | 0 |
037A$u | NA | 1 | 0% | 1 | nouc | 1 | 1 | 0 |
037A$w | NA | 3 | 0% | 3 | 000835234 Aprašas neredaguotas.|8|(ABES)119609886 | 3 | 1 | 0 |
037A$x | NA | 3 | 0% | 1 | VA | 3 | 1 | 0 |
NA | General note | 1 | 0% | 1 | NA | 1 | 1 | 0 |
037C: Note bibliography/index | ||||||||
037C$a | NA | 244,269 | 2.57% | 91,273 | Freiburg i. Br., Univ., Phil. Diss., 1778|Frankfurt (Main), Gymn., Diss., 1705|Univ., Diss, 1606|Zugl.: Straßburg, Univ., Diss., 1713|Jena, Med. Diss. v. 9. Juli 1712.|Helmstedt, Univ., Jur. Diss., 1687|Greifswald, Univ., Phil. Diss., 1665 | 244,448 | 1 | 146 |
037C$b | NA | 10,116 | 0.11% | 511 | in Universitate Regia Borussica Teutoburgi Clivorum|Zugl.: @Gröningen|Universitate Regia Borussica Duisburgi|Zugl.: @Leyden|Universität Helmstedt|@Abo|Zugl.: @Marburg | 10,131 | 1 | 15 |
037G: Note on reproduction | ||||||||
037G$a | Text | 3,251 | 0.03% | 992 | Mikrofiche-Ausg.# Berlin Berlin Staatsbibliothek zu Berlin|Mikrofiche-Ausg. Hildesheim Olms München [u.a.] Saur Deutsche Zeitschriften des 18. und 19. Jahrhunderts Bibliothek der deutschen Literatur Bibliothek der deutschen Sprache. Serie 2, Periodica ISBN 3598525508|Mikrofiche-Ausg. Oxford Maxwell The French Revolution research collection|Mikrofilm-Ausg. Berlin SAPMO-BArch Frankfurt, M. Stadt- und Universitätsbibliothek Erlangen Fischer ISBN 389131454X|Mikrofiche-Ausg. München [u.a.] Saur Bibliothek der deutschen Literatur ISBN 3598512430|Mikrofiche-Ausg. Hildesheim [u.a.] Olms Erlangen Fischer München [u.a.] Saur Anti-Napoleonische Pamphlete Bibliothek der deutschen Literatur ISBN 3598515219 ISBN 3891312385|Mikrofilm-Ausg. Madison, Wis. State Hist. Soc. of Wisconsin | 3,251 | 1 | 0 |
039B: Note relation to greater part | ||||||||
039B$6 | ID (z. B. ZDB-ID, DNB-ID) | 592,356 | 6.24% | 154,559 | (DE-604)BV001161469|(DE-604)BV022883279|(DE-604)BV014581944|(DE-604)BV001726386|(DE-604)BV037650867|(DE-604)BV000020005|(DE-604)BV022866070 | 597,464 | 1.01 | 4,060 |
039B$9 | PPN | 133,586 | 1.41% | 60,034 | 002916789|002712245|068182074|002798956|003695700|003712885|033881278 | 133,586 | 1 | 0 |
039B$C | Code für folgende ID | 458 | 0% | 1 | ZDB | 616 | 1.34 | 82 |
039B$a | Text | 200,454 | 2.11% | 55,658 | De leone Belgico eiusque topographica atque historica descriptione liber / Francisci Hogenbergii Biscentum & VIII figuris ornatus; rerumque in Belgio maxime gestarum inde ab anno Christi MDLIX usque ad annum MDLXXXVII perpetua narratione continuatus. Michaele Aitsingero Austriaco auctore Auctior et locupletior accessione quinque annor et nonaginta sex chartarum [Köln], 1588-[1596] Doppelbl. 425/426|Heinrich Palmaz Leveling der Weltweisheit und Arzneygelehrtheit Doktors, Kurfürstlichen Pfalzbaierischen wirklichen Hofrathes, Hochfürstlichen Freisingischen wirklichen Geheimen Rathes und Leibmedikus, an der hohen Schule zu Ingolstadt öffentlichen Lehrers der Zergliederungs- und Wundarzneykunst, wie auch der medicinischen Institutionen. Mitgliedes der Kaiserlichen Akademie der Naturforscher, der Kurfürstlichen Akademie der Wissenschaften in München, und der Gesellschaft sittlich- und landwirthschaftlicher Wissenschaften zu Burghausen anatomische Erklärung der Original-Figuren von Andreas Vesal, samt einer Anwendung der Winslowischen Zergliederungslehre in sieben Büchern Ingolstadt, 1783 S. [305] - 328, [2] gef. Bl.|Ludovici Guicciardini Omnium Belgii, sive inferioris Germaniae regionum accurata descriptio Amstelodami//Amsterdam//, 1625 Zwischen S. 46 u. 47|Das verbesserte Quedlinburgische Gesang-Buch Quedlinburg, 1765 32 S.|Harleian miscellany. London, Printed for John White, and John Murray ... and John Harding ... 1808-13. 30 cm. v. 5 (1810) p. 368-373.|Abrégé de l'histoire générale des voyages / par M. De La Harpe Paris Tome I in 4 ̊No. 5. Tome 1er in 8,̊ Page 78, [1780]|Joh. Georg Aug. Galletti's, herzogl. Sachsen-Gotha'schen Hofraths und Professors, Allgemeine Weltkunde oder geographisch-statistisch-historische Übersicht aller Länder 5. Aufl. / nach d. neuesten Zustand umgearb. u. verm. von C. Reichard Pesth u.a., 1822 [Karte 8] | 214,521 | 1.07 | 12,954 |
039B$c | Title | 102,608 | 1.08% | 3 | Subset of|Part of|In | 102,709 | 1 | 11 |
039B$i | Einleitende Wendung | 652,968 | 6.88% | 164 | Ab 1722 Beil. zu|Bis 1832 auch Beil. zu|76.1907 - 84.1915 in|Säilik isikuarhiivist|1733 Beil. zu|1816 - 1817 in|Bibl. Nw. | 667,102 | 1.02 | 13,063 |
039B$x | Sortierzählung | 132,977 | 1.4% | 14,305 | 152500000000250999|182400000000019999|176200000000009999|163300000000020999|179000000000012999|163800000000148999|175000000000018999 | 132,977 | 1 | 0 |
039C: Note relation to smaller part | ||||||||
039C$6 | ID (z. B. ZDB-ID, DNB-ID, PPN) | 14,344 | 0.15% | 29,481 | (OCoLC)ocn936208824|(OCoLC)922938514|(GyMB)DE\BSB-VD16\VD16\S 294|(OCoLC)608032881|(GyMB)DE\BSB-VD16\VD16\M 6383|MUS0010823|(GyMB)DE\BSB-VD16\VD16\S 1490 | 29,846 | 2.08 | 4,893 |
039C$9 | PPN | 4,551 | 0.05% | 13,903 | 025997831|028945743|01303295X|027806723|036888168|028234359|015156540 | 14,125 | 3.1 | 3,355 |
039C$C | Code für folgende ID | 764 | 0.01% | 1 | ZDB | 1,418 | 1.86 | 273 |
039C$a | Text | 36,744 | 0.39% | 77,805 | Le Marchand... traduit en françois par H.-P. de Limiers,... Le Trompeur... traduit en françois par H.-P. de Limiers,...|Emporius. Demonstrativae materiae praeceptum De ethopoeia ac loco communi liber, demonstrativae materiae praeceptum, de deliberativa specie. -- 4. enth. Werk|État de la bibliothèque... par M. Ant. Delandine,...|Hippocrates De lege [trad. de Arnaldus de Villanova]|Discours préliminaire de la réponse au recueil intitulé : "Extraits des assertions dangereuses et pernicieuses en tout genre que les soi-disant Jésuites ont, dans tous les temps et persévéramment, soutenues, enseignées et publiées dans leurs livres, avec l'approbation de leurs supérieurs et généraux" ; suivi d'une Table raisonnée des falsifications contenues dans ce libelle|Toledo, Francisco de. De peccatis liber unus. -- 2. enth. Werk|Sistens Lauraceas, Begoniaceas, Datiscaceas, Papayaceas, Aristolochiaceas et Stackhousiaceas; Pars decima quinta. Sectio prior | 106,354 | 2.89 | 18,535 |
039C$c | Title | 16,051 | 0.17% | 4 | Ilustraciones|Subset includes|Includes|Constituent unit | 26,757 | 1.67 | 5,408 |
039C$i | Einleitende Wendung | 20,698 | 0.22% | 260 | Special suppl|1811 - 1817 Beil|Index 1779/1907|Bihang|Monatl. Beibl|Unterhaltungs- u. Literaturbeil|1808 Beil | 79,743 | 3.85 | 13,149 |
039D: Note horizontal relation | ||||||||
039D$6 | ID (z. B. ZDB-ID, DNB-ID) | 277,887 | 2.93% | 295,705 | 676443907|669863742|CZ-PrNK.STT.stt20120061456|627102034|630942382|609608711|594884101 | 342,255 | 1.23 | 29,054 |
039D$7 | Vorläufiger Link | 12,781 | 0.13% | 13,377 | Cty.01.4272312|Cty.01.1996177|Cty.01.4814213|Cty.01.1848716|Cty.01.2522159|Cty.01.7749704|Cty.01.3806965 | 76,267 | 5.97 | 5,688 |
039D$9 | PPN | 2,259 | 0.02% | 2,270 | 014179865|027914259|027855791|028014553|02775183X|027744779|027819221 | 2,690 | 1.19 | 261 |
039D$C | Code für folgende ID | 181,217 | 1.91% | 33 | GBV*684400065*|BSZ|GBV *778409163|GBV 78228535X*|IKAR|GBV*731669126*|GBV*782977545* | 205,682 | 1.14 | 16,758 |
039D$a | Text | 363,340 | 3.83% | 356,690 | Chur-Mayntzische Erleuterung Des so benannten Acten-mäßigen Unterrichts die Chur-Böhmische Wahl-Stimme und deren Ausübung betreffend.|Meier, Petrus: Paneudaimonia euthanatuntōn Daß ist: Die vortrefliche Glückseeligkeit und erwünschte Zustand der Seelen der Gerechten/ welchen sie/ nach dem sie von den Leibern geschieden/ in der Hand Gottes geniessen|Henselius, Martin: Evangelischer Hertzens-Wecker, Für Gott suchende Küster Und Dorfschulmeister, Ihr wichtiges Amt an Kirche und Schule redlich auszurichten|Dictionnaire du citoyen, ou Abrégé historique, théorique et pratique du commerce. Contenant ses principes ; le droit public de l'europe relativement au négoce... Tome premier [-second]. -- A Paris, chez Grangé, imprimeur-libraire, rue de la Parcheminerie. M.DCCLXI., 1761. -- 2 tomes (XXIV, 440 p. ; [4], 450, [2]p.) (sig. a8 b4 A-Z8 Aa-Dd8 Ee4 ; [ ]2 A-Z8 Aa-Ee8 Ff2)|Starck, Johann Friedrich: D. Phil. Jacob Speners Gott-geheiligte Sing-Schule/ Das ist dieses berühmten Lehrers Catechismus-Tabellen/ darinn der gantze Catechißmus D. Martin Luthers Deutlich und gründlich erkläret, aber auch zugleich der Kern der Gottes-Gelehrsamkeit erbaulich vorgestellet wird|Histoire de l'origine de la médecine [Ressource électronique] / par M. Coakley Lettsom,... -- Edition électronique : numérisation 2005. -- Paris : BIUM, 2005. -- 1 vol. (XIX-183 p.). (Medic)|Santius <Porta>: SErmones estiuales de ... | 518,642 | 1.43 | 47,182 |
039D$i | Einleitende Wendung | 365,750 | 3.85% | 3,660 | Adligat 127|Repr. von 1785 in Repr. von 6.1803 von --->|Kat. O-Y o.d.t.|Oorspronkelijk verschenen in het Frans:|Duitse uitg. o.d.t.|Auch in: Abraham a Sancta Clara: Reimb dich/ Oder Ich Liß dich ... - 1684|Leben, Der Ninon von Lenolos, und Briefe nebst den Briefen der Babet | 521,204 | 1.43 | 47,227 |
039E: Note chronological relation | ||||||||
039E$6 | ID (z. B. ZDB-ID, DNB-ID) | 16,829 | 0.18% | 16,368 | (DE-603)064825450|3093-4|(DE-603)068290284|1125208x|(DE-603)071054286|2540072-1|(DE-603)047732997 | 25,299 | 1.5 | 6,051 |
039E$7 | Vorläufiger Link | 21 | 0% | 21 | 655278157 |655281941 |655281350 |655283093 |169464013 |570071642 |655277026 | 21 | 1 | 0 |
039E$9 | PPN | 9,782 | 0.1% | 9,666 | 027774805|014489481|028785886|015678083|028177630|014865467|028672925 | 11,304 | 1.16 | 582 |
039E$C | Code für folgende ID | 6,627 | 0.07% | 2 | ZDB|GBV | 10,007 | 1.51 | 2,402 |
039E$a | Text | 43,076 | 0.45% | 31,694 | [Gnomologiai palaiotaton poieton ...]. Parisiis : apud Adrianum Turnebum ..., 1553. Applies to copy: Bibliothèque municipale de Lyon: 425625|De nova prelleorum institutione orationes quatuor ... Parisiis : apud Thomam Richardum, 1550 (Rés 366734-366735). Applies to copy: Bibliothèque municipale de Lyon: Rés 366734-366735|Harvard University. Financial report to the Board of Overseers of Harvard College|Bulletin universel des sciences et de l'industrie / 6|Zawadzki, S.J.A. (Stanisław Józef Antoni) Argonavis pretiosas merces, virtuti & eruditioni XXI. VV. DD. primae laureae candidatorum dum post strenuum in stagyritica acie certamen, in Alma Universitate Cracoviensi, per ... D.M. Casimirum Stanislaum Pałaszowski, Philosophiae Doctorem, ... renuntiarentur, devehens a Stanisłao Josepho Antonio Zawadzki, ... metrico calamo delineata anno Domini MDCCXXIV. die 31. mensis Octobris Cracoviae [Kraków] : Typis Universitatis, [1724]|Gavinies, Pierre. 24 Etüden (matinées) für Violine solo|Früher u.d.T.: Erhard, Christian Daniel: Universitatis Litterarum Lipsiensis H. T. Procancellarius Christianus Daniel Erhard ... Sollemnia Inaugvralia Clarissimi Ac Doctissimi Candidati Paulli Christophori Gottl. Andreae ... Calendis Novembr. A. MDCCLXXXXVIII H. L. Q. CC Pulice Celebranda Indicit | 59,063 | 1.37 | 11,056 |
039E$c | Title | 4,005 | 0.04% | 836 | 1924,12.-16.Apr. Streikausg.|1832/33 - 1838; 1840/41 - 1843/44 u. Forts.|1882/83|1812 u. Forts.|1852/53 - 1860/63|1831 - 1832; 1844/45 - 1846/47; 1848/49; 1853/54|[7.]1828 - [9.]1830 u. [11.]1833 - 14.1836 u. Forts. | 5,793 | 1.45 | 1,280 |
039E$i | Einleitende Wendung | 39,033 | 0.41% | 3,027 | 12.1819 - 14.1821|Formed by the union of|1829 --->|1824; 1827 - 1835 u. Forts. --->|1811,30.Sept. - 1814,Dez. aufgeg. in --->|Vorg. u. Forts. --->|1=50.1795 - 61.1809 | 53,200 | 1.36 | 9,742 |
039P: Link to description in other language | ||||||||
039P$a | Text | 2,086 | 0.02% | 1,895 | Hekrans fruktan ...|Praktische Bemerkungen über verschiedene Krankheiten|Altes und Neues zur Erweiterung und Verbesserung theologischer Kenntnisse|De flatvvm fallaciis|Damm|Der @Geist und die Gesinnungen des vernunftmäßigen Christenthums zur Erbauung|Böttcher | 2,164 | 1.04 | 50 |
039P$i | Einleitende Wendung | 2,056 | 0.02% | 2 | Rezension von|3 Ill. | 2,134 | 1.04 | 50 |
039Q: Link to original document without expansion | ||||||||
039Q$a | Text | 1,694 | 0.02% | 1,622 | Sonn- und Fest- tägliche Erquikstunden, oder Geistliche Lieder über die gebräuchlichen evangelischen und epistolischen Texte, nebst einem Anhange|Versuch einer moralischen Einleitung in das Neue Testament, für Religionslehrer und denkende Christen, Th. 2|Das @natürliche Kirchenrecht|Tentamen Physicvm De Nvbivm Fvlminearum Genesi|Sämtliche Predigten,, welche vor dem Könige von Frankreich Ludwig dem Funfzehnten und zu Paris gehalten worden.|De Donis Spiritvs Sancti Miracvlosis Dissertatio Prima Eaque Inauguralis, 1, @|@De Principvm Cvra Circa Sanitatem Svbitorvm Decano Lavrentio Heistero Parente Aeterna Pietate Venerando Pro Gradv Doctoris Sine Praeside Dispvtabit Elias Fridericvs Heistervs Altorfinvs D. XXII. April. MDCCXXXVIII ... | 1,784 | 1.05 | 64 |
039Q$i | Einleitende Wendung | 1,668 | 0.02% | 3 | Beschreibung im Ausstellungskatalog|Rezension T. 1 - 2|Rezension | 1,759 | 1.05 | 65 |
039S: Link to the same title in several databases (PiCarta International) | ||||||||
039S$6 | NA | 464 | 0% | 475 | 1484663-9|310074-1|778470-3|4228625|7673656|353375-x|282252-0 | 570 | 1.23 | 66 |
039S$C | NA | 464 | 0% | 1 | ZDB | 570 | 1.23 | 66 |
039S$a | In RDA-Sätzen nicht zugelassen | 499 | 0.01% | 496 | 6=2; 7=3 von "Falk, Johann D.: Neueste kleine Schriften|Neueste nordische Beyträge zur physikalischen und geographischen Erd- und Völkerbeschreibung, Naturgeschichte und Oekonomie|Der Friedensbote|Philadelphia <Pa.> / Committee of Defence: Minutes of the Committee of Defence of Philadelphia|Auswahl aller eigenthümlichen Abhandlungen und Beobachtungen aus den neuesten Entdeckungen in der Chemie|Neue Jahrbücher der teutschen Medicin und Chirurgie / Supplement-Band|Unsere Zeit oder geschichtliche Übersicht der merkwürdigsten Ereignisse von 1789 - 1830 / Supplement-Heft | 610 | 1.22 | 71 |
039S$i | NA | 481 | 0.01% | 495 | 15=3; 16=4; 18=6; 19=7; 20=8; 21=9; 22=10; 23=11; 24=12; N.F. 13=1; N.F. 14=2 von|Einzelne Bd. zugl. Bd|1940/41=1940/41 von|1851=1851 von|1725,Repr.=3 von|4=1; 5=2 von|1=1 von | 589 | 1.22 | 68 |
044L: Geographical descriptor (GOO) | ||||||||
044L$T | NA | 31 | 0% | 7 | 03|05|02|07|06|04|01 | 78 | 2.52 | 31 |
044L$U | NA | 31 | 0% | 3 | Cyrl|rHebr|Latn | 78 | 2.52 | 31 |
044L$a | Subject heading | 298,549 | 3.15% | 67,747 | Medici, Giuliano de 1453-1478|Torres, Cayetano Antonio 1719-1787|Bournonville, Alexandre Albert François Barthélemi, Príncipe de 1662-1705|Asturie (Španělsko)|Anaya Maldonado, Diego de|Celestino V, Papa, Santo|Colori | 1,014,054 | 3.4 | 241,866 |
044N: Form descriptor (GOO) | ||||||||
044N$A | NA | 11,275 | 0.12% | 1 | IKAR | 22,610 | 2.01 | 6,779 |
044N$T | NA | 1,786 | 0.02% | 25 | 15|01|02|04|07|05|17 | 4,344 | 2.43 | 1,786 |
044N$U | NA | 1,786 | 0.02% | 6 | Latn|Arab|Hani|r|Cyrl|Hebr | 4,344 | 2.43 | 1,786 |
044N$a | Subject heading | 1,731,858 | 18.25% | 338,910 | Dieppe (Seine-Maritime) -- deniers communs et d'octroi, receveur (Actes royaux)|Rhétie|Auxerre Region|Pan|Crapelet, Georges Adrien, 1789-1842|Asselin, Jean-Baptiste-Charles.|Italy. Treviso. Rubeus, Johannes. 1483? | 6,196,945 | 3.58 | 1,278,817 |
045A: LC classification | ||||||||
045A$a | Notation | 201 | 0% | 196 | G460.S92|AS 244.A42 A51 1808|DB904.L5 1808|PQ2625.A6955|BX8064|DK23.C77|PR2600 | 201 | 1 | 0 |
045C: NLM classification | ||||||||
045C$a | Notation | 14,407 | 0.15% | 1,846 | R 128.7 P712|WBA|Film 64-37 no. 1|Film 53-82 no. 1|WZ 313|WZ 270 D289i|Film 85-13 no. 1 | 15,301 | 1.06 | 841 |
045F: Dewey classification | ||||||||
045F$8 | NA | 1,383 | 0.01% | 9 | 17\u|5\u|4\u|1\u|2\u|1\p|2\p | 1,502 | 1.09 | 113 |
045F$A | Quelle | 2,545 | 0.03% | 4 | DE-101|NoOU|NO-OsNB|NoBeU | 2,750 | 1.08 | 188 |
045F$a | Notation | 36,641 | 0.39% | 11,346 | 469.702|EC71.3|782.10268-FORME VOCALI DRAMMATICHE OPERE. PAROLE E ALTRI SUONI VOCALI DA CANTARE O RECITARE CON LA MUSICA|EB79.46|581.630996|342.43|943.8 | 37,841 | 1.03 | 1,011 |
045F$e | Angabe der zugrunde liegenden DDC-Ausgabe | 10,198 | 0.11% | 42 | DDC22/oclc|DDC14|DDC22/ger|DDC20/a|DDC15|DDC11|DDC@ | 10,732 | 1.05 | 421 |
045F$f | NA | 5 | 0% | 3 | L|L Ref|Ref | 5 | 1 | 0 |
045F$k | Code des Generierungsverfahrens, Konfidenzwert | 1,688 | 0.02% | 1,661 | /7088|/169087/1|/29231|/320653|/106|/47663|/8989 | 1,689 | 1 | 1 |
045X: NUGI (Nederlandse Uniforme Genre Indeling) | ||||||||
045X$a | NA | 386 | 0% | 192 | 452.B85C|452R272|O 459|30Es8|34|277|Gärtner, Karl Christian, | 387 | 1 | 1 |
045X$b | NA | 1 | 0% | 1 | NAL | 1 | 1 | 0 |
045X$d | NA | 1 | 0% | 1 | 1712-1791, | 1 | 1 | 0 |
045X$e | NA | 1 | 0% | 1 | ed. | 1 | 1 | 0 |
045X$i | NA | 385 | 0% | 1 | NAL | 386 | 1 | 1 |
046D: Frühere/frühester Haupttitel (nur für fortlaufende und integrierende Ressourcen) | ||||||||
046D$ | NA | 1 | 0% | 1 | Table allieur des reports by T.A. 1588. | 1 | 1 | 0 |
046D$0 | NA | 64 | 0% | 59 | (DE-603)085082376|(DE-603)085411191|(DE-603)086731505|(DE-603)121951766|(DE-603)204649889|(DE-603)387751092|(DE-603)090890434 | 71 | 1.11 | 2 |
046D$3 | NA | 3 | 0% | 3 | Hymni|Volume 2: Memoires de l'estat de France|Hungary and Transilvania. | 3 | 1 | 0 |
046D$5 | NA | 170 | 0% | 23 | CtY-BR|RPB|CtY-LW|InFwCT|TxHMC|ICarbS|NSyU | 180 | 1.06 | 8 |
046D$6 | NA | 12 | 0% | 12 | 880-16|880-08|880-31|880-11|880-09|880-29|880-07 | 14 | 1.17 | 1 |
046D$9 | NA | 70 | 0% | 23 | 81099|82606|99640|65782|65781|92327|97034 | 73 | 1.04 | 2 |
046D$T | Feldzuordnung | 4,392 | 0.05% | 46 | 28|21|07|06|13|15|25 | 12,094 | 2.75 | 4,390 |
046D$U | Schriftcode | 4,392 | 0.05% | 13 | Hebr|z|Latn|HebrHebr|(4Hebr|Armn|Cyrl | 12,094 | 2.75 | 4,390 |
046D$a | Früherer/frühester Haupttitel | 1,827,145 | 19.25% | 1,725,991 | Other title: Consideratio doctrinae pontificiae iuxta ductum concilii tridentini et reformatae iuxta ductum confessionis Thoruni Borussor.|Nebent. Pommersches Archiv|Other title: Die Inselen von Sonte gegen Orient|Kopftitel ?|Contains: Dal principio dell'era volgare sino all'anno XCV. Tomo I. Parte I. (vol. 1)|Running title: Le siège de Brouage|Related title: Chymischer Natur-Spiegel von denen drey Reichen der Welt. | 2,627,404 | 1.44 | 487,935 |
046D$c | NA | 1 | 0% | 1 | Min Kitāb Zubdat kašf al-mamālik wa-bayān aṭ-ṭuruq wa'l-masālik Ḫalīl Ibn-Šāhīn aẓ-Ẓāhirī. | 1 | 1 | 0 |
046D$d | NA | 3 | 0% | 3 | ventoso anno 7. fella Libertà li [data] marzo 1799. v. s. Repubblica napoletana. Governo provvisorio. Comitato di legislazione|Testamentische Geschichten, in Kunster Tafflen vorgestelt, ist im Verlag zu haben ben Iohann Simon Negges, Kunstwerleger in Augsburg|Begangnissen | 3 | 1 | 0 |
046D$e | NA | 5 | 0% | 5 | Antraštė šiuolaikine rašyba: Евангелие учительное.|Antraštė šiuolaikine rašyba: Наставления любомудрия нравоучительного|Antraštė šiuolaikine rašyba: Диалогизм духовный|Auteur|Traduction ; Préface | 7 | 1.4 | 2 |
046D$i | Einleitende Wendung | 120,846 | 1.27% | 40,180 | Part of set:Clarin evangelico panegyrico, en una centuria de sermones. Para todas las festividades colendas de Christo, de Maria santissima, y de los santos, y otras de devocion. Obra utilissima para desmpeño, y luz de los curas de almas, y demàs ministros evangelicos, y aprovechamiento de los fieles. Dividese en dos partes. Parte primera, que contiene los sermones para todos los dias colendos de los santos, y otros de devocion, repartidos por los meses del año. Ponense tambien los veinte sermones del libro: Divinos blasones de la Familia Sacra, & c, que el mismo autor diò a luz en año 1710 y vàn añadidos. Su autor el r.p. fr. Juan Bautista de Murcia |Part of set:Sammtliche Uebersetzugen der klassischen Dichter der Romer. Erster [-zweiter] Theil / Joh. Heinr. Voss|Part of setSacra Scrittura giusta la vulgata in lingua latina e volgare colle spiegazioni del senso litterale e spirituale tratte da' Santi Padri e dagli autori ecclesiastici dal signor Le Maitre de Sacy prete ec. divisa in tomi 48. Tomo 1 [-32 di A.T.; t. 1-16 di N.T.](15)|Part of set:Dn. Sfortiae Oddi ... De restitutione in integrum tractatus in quo restitutionis in integrum materia absolutissime pertractata ... insertis quoque in hac postrema editione additionibus aliquot ... Indice duplici quaestionum priore, posteriore materiarum & rerum locupletissimo instructum|Part of set:D.D. Ioannis de Solorzano Pereira, ... De Indiarum iure. Siue De iusta Indiarum Occidentalium inquisitione, acquisitione, & retentione. Tomus primus [- secundus]. |Part of setTrattato della regola prossima delle azioni umane nella scelta delle opinioni: in cui si dimostra la falsità, improbabilità, e assurdità del sistema probabilistico, e il grave pericolo di chi in pratica lo segue. Opera del p.f. Giovanni Vincenzo Patuzzi dell'ordine de' predicatori, lettore di sacra teologia. Tomo primo [-secondo](1)|Part of set:Portraits des hommes illustres des dix-septieme et dix-huitieme siecles, dessines d'apres nature, et graves par Edelink, Lubin, van Schuppen, Duflos et Simonneau, avec une notice sur chacun d'eux. Deux volumes in-folio, divises en dix livraisons | 122,565 | 1.01 | 441 |
046D$l | NA | 1 | 0% | 1 | English. Dryden. 1697. | 1 | 1 | 0 |
046D$v | NA | 2,844 | 0.03% | 426 | 104|12|66|186|202|106|103 | 2,879 | 1.01 | 34 |
046D$w | NA | 131,768 | 1.39% | 34,924 | CFIE03493|CFIE011667|TO0E02495|LO1E032539|CFIE05083|PAVE000965|RMSE00095 | 140,786 | 1.07 | 6,838 |
046D$y | NA | 5 | 0% | 2 | 1760-1820 (George III)|LAT Characteres ethici, sive Descriptiones morum Græce | 5 | 1 | 0 |
046F: Note for target group | ||||||||
046F$a | NA | 3,603 | 0.04% | 2,230 | Verf. teils: Caspar Caspersen; teils: Casparus von Lorch; teils: C. von Lorch; teils: C. A. Lorch|Mutmaßl. Verf.: Johann Jacob Bodmer|Beiträger: Bibobacherius|Personenzuordnung "Richter" unsicher|Beiträger: Stang, Vinzenz; Haucke, Nikolaus; Lindener, Kaspar; Mohr, Georg; Pfeffinger, Johannes; Schonbach, Stephan|Verf. ermittelt in: Holzmann-Bohatta, Bd. 6, Nr. 5110|Verf. erm. nach Fromm 21934. - Juliette Catesby ist angebl. Verf. | 3,613 | 1 | 9 |
046G: Titelangaben | ||||||||
046G$a | NA | 323,677 | 3.41% | 4,261 | The fingerprint identifier has been taken from Bibliothèque municipale de Lyon: Rés 315440|The fingerprint identifier has been taken from Bibliothèque municipale de Lyon: Rés 390221|The fingerprint identifier has been taken from Bibliothèque municipale de Lyon: 363400|The fingerprint identifier has been taken from Bibliothèque municipale de Lyon: 349346|The fingerprint identifier has been taken from Bibliothèque municipale de Lyon: B 512076|The fingerprint identifier has been taken from National Library of Czech Republic: 13 H 000092|The fingerprint identifier has been taken from Bibliothèque municipale de Lyon: Rés 105187 | 349,325 | 1.08 | 15,834 |
046H: Anmerkung zur Veröffentlichungsangabe und zum Copyright-Datum | ||||||||
046H$a | Angaben zum Erscheinungsvermerk | 171,716 | 1.81% | 93,727 | Manufactured: Warszawa : Druk. Banku Polskiego.|Manufactured: Stampato per cura di L. Nardini, ispettore della Stamperia reale|Manufactured: [Madrid] : se hallara en las librerias de Gomez Fuentenebro calle de las carretas, y de Orea calle de la Montera|Manufactured: 1574|Manufactured: ex typographia Dammeana|Manufactured: Venetijs : per Joannem Rubeus Vercellensem|Manufactured: Cantabrigiae typis Academicis | 171,815 | 1 | 98 |
046H$e | NA | 430 | 0% | 342 | Sumptibus Francisci & Petri Mariae fratrum de Marchettis|et chez les libraires suivans a Paris : chez Levrault, frères, ;|a Lyon : chez Barret, libraire, Place des Terreaux|a Leipsick : chez L. Michelsen ;|a Rouen : chez Vallee, freres, libraires ... ;|Petri & Claudij Rigaud, ... ; Ieronymi de La Garde, ... ; Ioan. Ant. Huguetan ..., 1645|Montpellier : de l'imprimerie de Jean Martel le jeune, imprimeur ordinaire du roi ; | 594 | 1.38 | 90 |
046H$k | NA | 16 | 0% | 14 | 1747.|1668|1662|1594.|1748.|1719|1794. [i.e.1796] | 16 | 1 | 0 |
046H$p | NA | 1 | 0% | 1 | 8vo | 1 | 1 | 0 |
046L: Angaben über Sprache und Schrift der Expression | ||||||||
046L$T | Feldzuordnung | 1 | 0% | 1 | 05 | 2 | 2 | 1 |
046L$U | Schriftcode | 1 | 0% | 2 | Latn|Hebr | 2 | 2 | 1 |
046L$a | Angaben über Sprache und Schrift der Expression | 69,042 | 0.73% | 20,558 | Text in Latin with quotations and examples in Greek, Hebrew and Syriac.|Text teilw. dt., teilw. hebr.; Hebr. in hebr. Schrift|Parallel Latin text and Italian translation.|Fragm. teksu w jez. łac. i gr|English, Latin and Greek parallel text.|Yra teksto senąja graikų, vok., pranc. k.|Text in Law French; caption title in Latin. | 69,416 | 1.01 | 349 |
046L$i | NA | 2 | 0% | 3 | Antraštė šiuolaikine rašyba:O sukcessyi tronu w Polszcze rzecz krótka.|Antraštė šiuolaikine rašyba:O sukcesji tronu w Polsce rzecz krótka.|Antraštė šiuolaikine rašyba:Do Stanów sejmujących wiersz. | 3 | 1.5 | 1 |
046M: Angaben zu enthaltenen unselbstständigen Werken | ||||||||
046M$a | Haupttitel des Teilwerks | 3,023 | 0.03% | 1,428 | R-klės p.: [14-55].|R-klės "Index rerum et verborum in Concilium Tridentinum copiosissimus" p.: [1-27]; "Index decretorum Concilii Tridentini" p. [28-30]; "Index capitulorum Concilii Tridentini" p. [31-33]; "Catalogus legatorum, patrum, oratorum et theologorum..." p. [34-52].|R-klės lap. sign. y4-7 subscr.|Rodyklės p.: I d.: [1-50], II d.: [1-14], III d.: [1-23], IV d.: [1-8], V d.: [1-15].|R-klė pradžioje p.: [8-10], pab. p.: [1-4].|R-klė p.: [1-14] (sign.: Bbb4 subscr., Ccc4-Ddd2 superscr.) ; p. [1-5] (sign. X4 subscr., Y2 superscr.).|R-klė p.: [14-16] - Syllabus capitumquae in hoc tractatulo continentur. | 3,040 | 1.01 | 17 |
046M$i | In RDA-Sätzen nicht zugelassen | 88,371 | 0.93% | 13,997 | v.10. (v.9)|I marmi del Doni (Adams D824).|Brown, E., A brief account of some travels in Hungaria...|Enthalten|Jacobi Eberti Scitorum Talmudicorum centuria secunda. Frankfurt an der Oder, 1627.|Purchas his pilgrimage (1626). (pt.1)|Clemens, V. | 113,445 | 1.28 | 14,695 |
046M$u | Beziehung unstrukturiert | 158,296 | 1.67% | 100,581 | A.160 (4)|Les pseaumes de David, mis en rime françoise. 1577.|Harding A 36 (18)|Warnung vor Ausschweifungen|8:SR.93.a.5(44)|A.97 (31)|Corelli, A. 'XII solos for a violin ... Op. 5, and 2 other items. | 187,566 | 1.18 | 17,950 |
046P: Terms governing use and reproduction Note (temporarily tag) | ||||||||
046P$a | NA | 40,019 | 0.42% | 17,651 | Erschienen: 1 (1670) - 4 (1670)|(T. 1.) mit 1 Karte. (2)|Former publication frequency: Bimestriel|T. 3-10|Erschienen: 1 (1639) - 5 (1639)|Publication frequency: Appeared two or three times a week.|1.1784 in 2 Ausg. ersch. | 43,473 | 1.09 | 2,378 |
046Q: NA | ||||||||
046Q$T | NA | 2 | 0% | 1 | 06 | 4 | 2 | 2 |
046Q$U | NA | 2 | 0% | 2 | Latn|HebrHebr | 4 | 2 | 2 |
046Q$a | NA | 9,143 | 0.1% | 8,130 | ] W. Chambers "Designs of Chinese gardens ...", 1757.|Causa Dei Asserta per Justitiam Ejus, Cum cæteris ejus. Perfectionibus, Cunctisque Actionibus Conciliatam. Sive Synopsis Methodica Tentaminum Theodicææ / Ab Ipso Illustri Autore adornata|Processionale Ad Normam Missalis ac Ritualis, auctoritate Apostolica reformatorum concinnatum. In usum FF. Minorum Strictioris Observantiæ|Svper Psalmvm Nonagesimvm Meditationes|Supplemento di scienze geologiche|Wahl und Krönung Joseph des Zweyten zum römischen König. - Zwischenreich nach dem Tode Joseph des Zweiten ...|Edouard III. Sidnei | 9,556 | 1.05 | 274 |
046Q$c | NA | 9,146 | 0.1% | 619 | Príväzok 2. k|Enth. oeuvre 16, connu 73|1930/31 inhaltl. Gliederung in Bd. I|Współwyd. wiersz w jęz. pol. bez własnego tytułu, Inc.|Enth. außerdem.|Príväzok 1. k|It | 9,558 | 1.05 | 273 |
046T: NA | ||||||||
046T$a | NA | 104,700 | 1.1% | 44,400 | Gedigitaliseerd exemplaar: 170 G 59|Electronic facsimile : Biblioteca Vallicelliana, Roma (BEIC) http://gutenberg.beic.it/webclient/DeliveryManager?pid=1581896&custom_att_2=simple_viewer&pds_handle=|Microfiche: Primary Source Microfilm (an imprint of Cengage Learning), 2002. Incunabula: the Printing Revolution in Europe 1455-1500. Unit 49 - Printing in England Part II, EN 165|Electronic facsimile : Bayerische Staatsbibliothek, München http://nbn-resolving.de/urn/resolver.pl?urn=urn:nbn:de:bvb:12-bsb00040911-7|Auch als: Geschichte der Lande Preussen Polnischen Antheils unter dem Könige August dem zweyten / Gottfried Lengnich ; 9|Microfilm. Ann Arbor, Mich. University Microfilms, 1977. 1 microfilm reel ; 35mm. (Thomason Tracts: 103:E.673[10]).|Microfiche: Primary Source Microfilm (an imprint of Cengage Learning), 2002. Incunabula: the Printing Revolution in Europe 1455-1500. Unit 48 - Printing in England Part I, EN 111 | 115,587 | 1.1 | 7,973 |
046T$u | NA | 172 | 0% | 176 | http://hdl.handle.net/10062/3093.|http://hdl.handle.net/10062/2962.|http://hdl.handle.net/10062/2386.|http://hdl.handle.net/10062/2191.|http://hdl.handle.net/10062/2437.|http://hdl.handle.net/10062/2505.|http://hdl.handle.net/10062/281. | 177 | 1.03 | 5 |
046W: Kommentarfeld | ||||||||
046W$a | Kommentarfeld | 162,507 | 1.71% | 2 | Ehemaliger j-Satz|Feld 4000 Unterfeld h maschinell generiert (GBV) | 162,507 | 1 | 0 |
046X: Bestandsschutzmaßnahmen und (Langzeit-)Archivierung | ||||||||
046X$C | NA | 75,589 | 0.8% | 7 | ad|es|la|ks|av|ae|sf | 99,001 | 1.31 | 15,446 |
046X$S | NA | 153,985 | 1.62% | 3 | bema|schl|lzar | 219,146 | 1.42 | 43,802 |
046X$a | Codierung für die Aktion | 153,946 | 1.62% | 96,359 | Schlüsselseiten aus dem Exemplar der HAB Wolfenbüttel: 539 Helmst. Dr. (19)|Schlüsselseiten aus dem Exemplar der SBB-PK Berlin: Be 2973|Schlüsselseiten aus dem Exemplar der ULB Halle: AB 155735 (31)|Schlüsselseiten aus dem Exemplar der SLUB Dresden: Diss.jur.civ.327,20|Schlüsselseiten aus dem Exemplar der SUB Göttingen: DISS JUR COLL MAX 330 (59)|Schlüsselseiten aus dem Exemplar der ULB Halle: Pon Vc 4426|Schlüsselseiten aus Exemplar Fl 1614 (SBB-PK) | 219,053 | 1.42 | 43,792 |
046X$d | NA | 71,313 | 0.75% | 154 | 1752$;|b|xxx$1753-1756|[1.]1771(1772)|d|2.179X-|1.1738/40,1=1.Aufl|1781,29-28|2011-2015 | 93,329 | 1.31 | 14,149 |
046X$p | NA | 10,113 | 0.11% | 517 | 75 [c]|19 [b]|490 [b]|Entsäuert 2011|ULB Halle 2012-08 digitalisiert|43|747 | 10,488 | 1.04 | 363 |
047A: Message on general level | ||||||||
047A$a | Text | 8,662,216 | 91.26% | 9,747,370 | 008 850719s1803uuuusp 000 0 spa |886 2 $2unimarc$a801$b 0$aFR$bFR-751131015$hFRBNF340011850000008$c19970701$gAFNOR$2intermrc|886 1 $2unimarc$a003$bhttp://id.sbn.it/bid/URBE023809|886 2 $2unimarc$a801$b 0$aFR$bFR-751131015$hFRBNF386574450000008$c20041210$gAFNOR$2intermrc|886 2 $2unimarc$a801$b 0$aFR$bFR-751131015$hFRBNF309319670000001$c19970701$gAFNOR$2intermrc|008 ||||||s1706 a||| |||| 00||| lat d|008 030820s1671 fr 000 0 lat c | 41,816,334 | 4.83 | 8,416,813 |
047C: Note volume of a multi-volume publication | ||||||||
047C$a | Text | 512,643 | 5.4% | 339,694 | Entwicklung Staatsgrundsätzen Separatismus königlich|Verteidigtes uraltes Eigentum jure Isenburg|MDCXXXI.|Wohltaten Ölkrug 1671|christliches Klagerede über uber Tod Begräbnis Leipzig|Bayern Prozeßordnung|speculi Gulielmi Durandi una cum utroque quarta | 517,065 | 1.01 | 4,404 |
047I: Note summary/subject | ||||||||
047I$T | Feldzuordnung | 111 | 0% | 14 | 01|10|07|05|12|08|09 | 254 | 2.29 | 111 |
047I$U | Schriftcode | 111 | 0% | 8 | Hani|Grek|Latn|Latn047I |Cyrl|Hebr|r | 254 | 2.29 | 111 |
047I$a | Text | 283,022 | 2.98% | 201,371 | Partial contents: B. BRISSONII JC. SELECTARVM EX JURE CIVILI ANTIQUITATUM LIBRI IV. Rerum & Verborum Indice aucti. 33-124 sloupců|Partial contents: (from maps) World / engraved by B. Baker -- Africa / engraved by B. Baker -- South America / engraved by B. Baker -- North America / engraved by B. Baker -- Asia / engraved by B. Baker -- Europe / engraved by B. Baker -- East Indies / engraved by B. Baker -- West Indies / engraved by B. Baker.|Porträt des Wächters im Schloss Hegi Hans Ulrich Meili im Profilbild nach rechts; Handgeschriebene Bildlegende in Tinte auf Unterlagenblatt|Partial contents: Second mémoire du comte de Sanois, en réponse aux Mémoires de Madame de Sanois & du Comte de Courcy. 138 s. -- Pièces justificatives pour le comte de Sanois. Extraits de Lettres adressées à M. de Sanois par plusieurs parens & amis, depuis son élargissement ; Madame de Sanois & M. de Courcy retenant, sans vouloir les rendre, toutes celles qui lui ont été adressées pendant sa détention. 84 s. -- Réponse particuliere du defenseur du comte de Sanois. 66 s. -- Supplément aux pièces justificatives pour le comte de Sanois. 72 s. -- Satisfaction accordée a Berne a monsieur de Sanois, contre le Sieur Févot, lieutenant de police de Lausanne. Au mois de mars 1788. Imprimé a Géneve en mai 1788. 8 s. -- Correspondance nouvelle entre monsieur le Noir ci-devant lieutenant de police a Paris, Seigneur du Vidamé, de Tribaldou; présentement conseiller d'Etat bibliothécaire du Roi, et le comte de Sanois, Ancien aide-major des gardes francoises; Seigneur de la paroisse de Vignely. Imprimé a Géneve en mai 1788. 20 s.|Der Postreiter posaunt die Freude über den Westfälischen Frieden in die Welt|Contents: v.13. Pococke [cont'd] -- [Wood, Robert] A journey to Palmyra. -- Russell, Alexander. Descirption of Aleppo and the adjacent parts. -- [Olearius, Adam] Travels of the ambassadors form the Duke of Holstein into Moscovy, Tartary, and Persia. 1774. v.14. Olearius [cont'd] -- Hanway, Jonas. Travels through Russian into Persia. 1775. v.15. Hanway [cont'd] -- Chardin, John. Travels through Mingrelia and Georgia into Persia. 1777. v.16. Chardin [cont'd] -- New history of the East Indies. -- Le Comte, Louis. Description of China. 1777. v.17. Description of Guinea. -- Moore, Francis. Travels into the inland parts of Africa. -- Description of the country up the Senegal. -- [Windus, John] Journey to Mequinez in the kingdom of Morocco. -- Pitts, Joseph. Of the religion of the Mahometans, with a descirption of Mecca and Medina. -- Shaw, Thomas. Travels through Barbary. 1778. v.18. Shaw [cont'd] -- Misson, Maximilien. Travels through Germany and Italy. 1778. v.19. Misson [cont'd] -- Addison, Joseph. Travels through Italy and Swisserland. -- Keyssler, J.G. Travels through Swisserland, Germany, and Hungary. -- Stevens, Sacheverell. Travels through France. 1778. v.20. Description of Spain and Portugal. -- Description of Sweden. -- Molewsorth, lord. Account of Denmark. -- Pontoppidan, Erik. Natural history of Norway. -- [La Martinière, P.M. de] Travels through the most northern parts of Europe. -- Maupertuis, P.L.M. de. Travels to determine the figure of the earth at the polar circle.|Contents: 1.Bd. Meine theatralische Laufbahn. -- 2.Bd. Albert von Thurneisen. Verbrechen aus ehrsucht. Die Mündel. -- 3.Bd. Die Jäger. Bewusstseyn. Der Spieler. -- 4.Bd. Reue versöhnt. Achmet und Zenide. Figaro in Deutschland. -- 5.Bd. Frauenstand. Der Komet. Hausfreiden. -- 6.Bd. Herbsttag. Leichter Sinn. Friedrich von Oestreich. -- 7.Bd. Elise von Valberg. Das Gewissen. Luassan. -- 8.Bd. Erinnerung. Alte Zeit und neue Zeit. Das Vermächtniss. -- 9.Bd. Die aussteuer. Die Hagestolzen. Der Magnetismus. Die Geflüchteten. -- 10.Bd. Der Mann von Wort. Die Reise nach der Stadt. Der Veteran. -- 11.Bd. Der Fremde. Die Advokaten. Die Verbrüderung. Der Eichenkranz. -- 12.Bd. Selbstbeherrschung. Dienstpflicht. Allzuscharf macht schartig. -- 13.Bd. Der Vormund. Liebe um Liebe. Die Kokarden. Die Vaterfreude. -- 14.Bd. Die Künstler. Die Höhen. -- 15.Bd. Die Familie Lonau. Scheinverdienst.--16.Bd. Das Erbtheil des Vaters. Das vaterhaus. | 300,114 | 1.06 | 9,471 |
047I$i | NA | 14 | 0% | 14 | Knygoje yra: Начальныя правила военной науки вообще (Кн. 1); Правила на войну с турками в Венгрии (Кн. 2); Разсуждения о делах последней войны с турками в Венгрии.|Knygoje yra: Штат Медицинской коллегии с подлежащими ведению ея местами (p. 13-27).|Knygoje taip pat: Наставление о иллюминовании фортификационных чертежей: p. 358-368; Сокращенный словарь терминов, до науки военнаго укрепления касающихся: p. 369-386.|Knygoje yra: Kazania trzy przypadkowe takoz o nayswiętszey Maryi Pannie (p. 250-358).|Knygoje yra: Do J. W. Wojewodziney. Oda.|Knygos pabaigoje: Роспись книгам, продающимся в Санктпетербурге по Невской перспективе у Аничковскаго мосту в доме Дмитрия Александровича Зубова (p. [1-2]).|Knygoje taip pat: Наставление о иллюминовании фортификационных чертежей: p. 339-346; Сокращенный словарь терминов, до науки военнаго укрепления касающихся: p. 347-363. | 14 | 1 | 0 |
047I$l | NA | 3 | 0% | 3 | MAG ex. KAZ 149: titelp. en A7 van dl. 1: fotocopie.|MAG ex. MBZ 321-322: 4 dl. (2 bd.)|AB ex. R oct 362 dl 2: A1 en Z4 ontbreken. | 3 | 1 | 0 |
047I$u | NA | 4 | 0% | 3 | C6080A).|(Wing W3447A).|http://www.atmintis.mb.vu.lt/covers/toc/VUB01_000876045 | 4 | 1 | 0 |
048H: Systemvoraussetzungen für elektronische Ressourcen | ||||||||
048H$a | Systemvoraussetzungen für elektronische Ressourcen | 27,866 | 0.29% | 1,371 | Geplante Digitalisierung, 2.Aufl.13.17??-20.1772, BSM|Pregledano 19941227 Dobro očuvano Uvezati u čvrste korice|TM|Conservation record no 1056. BeFriended Jul 2013.|Geplante Digitalisierung, 1733;1739;1769;1772;1784, BSM| 10 σύνολο - να προστεθεί ΔΟΛ|sch pzs ljné ; Sz10:bke | 28,066 | 1.01 | 141 |
048H$o | NA | 1 | 0% | 1 | 5 MdBJ | 1 | 1 | 0 |
place_names <- d2 |>
filter(field_code=="033D") |>
pivot_wider(id_cols=record_number,names_from=subfield_code, values_from=value) |>
group_by(place_id=u) |>
summarise(place_name=first(p)) |>
filter(!is.na(place_id)) |>
collect()
place_collection_counts <- d |>
filter(field_code=="033D", subfield_code=="u") |>
select(record_number, place_id=value) |>
right_join(
d |>
filter(field_code=="009@") |>
select(record_number,collection=value)
) |>
count(collection, place_id) |>
collect() |>
left_join(place_names)
Joining with `by = join_by(place_id)`
place_collection_counts |>
mutate(collection=fct_lump_n(collection, 40, w=n), place_name=fct_lump_n(place_name, 40, w=n)) |>
mutate(collection=fct_infreq(collection, w=n), place_name=fct_infreq(place_name, w=n)) |>
group_by(collection, place_name) |>
summarise(n=sum(n), .groups="drop") |>
group_by(collection) |>
mutate(color=ntile(n, 100)) |>
ungroup() |>
pivot_wider(names_from=collection, values_from=c(n, color)) |>
gt(rowname_col="place_name") |>
cols_hide(starts_with("color_")) |>
data_color(starts_with("color_"), target_columns = starts_with("n_"), palette="viridis") |>
fmt_number(where(is.numeric), decimals = 0) |>
cols_label_with(fn = ~str_replace(., "n_", ""))
DE-601 | DE-604 | IT-ICCU | FR-751131015 | FR-341725201 | US-CtY-BR | DE-603 | NL-0100030000.STCN | CZ-PrNK | GB-StEdNL | SpMaBN | GB-UkOxU | Other | NL-HaKB | US-icn | GB-StGlU | DE-12 | NL-UtRU | BE-KBR00 | DK-810010 | SwSKB | UK-LAMBETHANA | GB-UkLU | GB-Uk | GB-UkLW | CH-000003-X | US-mdbj | UkWE | BUWr-PlWaBN-PlSzKP-PlGdAN | RuSpRNB | LI-ViUB | GB-WlAbNL | BE-AnVE | GB-UkCyUK | SpMaUC | EE-TUR | NO-0030100 | PlWaU | FI-H | SI-50001 | PL-BJ | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Other | 372,827 | 319,746 | NA | 147,106 | 100,661 | 53,497 | 53,069 | 33,961 | 30,427 | 31,924 | 43,702 | 22,073 | 28,932 | 22,733 | 18,007 | 16,471 | NA | 19,543 | 14,839 | 12,244 | 16,949 | 5,126 | 5,842 | 9,708 | 9,429 | 2,460 | 5,009 | NA | 13,241 | 12,114 | 10,467 | 4,373 | NA | 4,049 | 4,962 | 4,918 | 3,898 | 4,330 | 8,625 | 4,524 | 2,411 |
Londini | 67,907 | 95,675 | NA | 33,289 | 17,508 | 109,580 | 7,273 | 1,055 | 1,458 | 70,074 | 4,826 | 81,463 | 13,163 | 4,171 | 41,978 | 45,104 | NA | 2,837 | 2,032 | 4,451 | 32 | 36,053 | 33,846 | 173 | 12,151 | 254 | 16,699 | NA | 3 | 127 | 471 | 19,244 | NA | 77 | 194 | 557 | 822 | 518 | 8 | 322 | 83 |
S.l. | 91,765 | 121,382 | NA | 62,532 | 36,660 | 3,740 | 6,247 | 41,790 | 4,209 | 4,394 | 41,997 | 2,078 | 7,350 | 27,094 | 294 | 1,862 | 2 | 8,215 | 8,135 | 2,212 | 8,395 | 3,222 | 659 | 24,725 | 38 | 447 | 70 | NA | 1,055 | 6,070 | 1,271 | 177 | NA | NA | 242 | 982 | 370 | 382 | 1,182 | 133 | 552 |
Leipzig | 135,616 | 112,217 | NA | 13,162 | 22,203 | 6,474 | 22,136 | 205 | 11,383 | 3,887 | 2,173 | 2,226 | 3,873 | 2,916 | 1,593 | 2,360 | NA | 3,075 | 1,224 | 4,380 | 42 | 398 | 241 | 1,428 | 1,414 | 390 | 1,247 | NA | 1,104 | 714 | 2,316 | 61 | NA | 685 | 124 | 2,642 | 990 | 916 | 14 | 1,589 | 106 |
Amstelodami | 43,454 | 39,235 | NA | 21,363 | 13,073 | 5,759 | 4,974 | 50,346 | 2,773 | 3,335 | 3,660 | 4,862 | 3,373 | 18,106 | 2,635 | 2,564 | NA | 12,017 | 3,987 | 2,037 | 58 | 922 | 1,005 | 1 | 1,320 | 213 | 1,150 | NA | 13 | 211 | 1,531 | 209 | NA | 1,388 | 326 | 499 | 357 | 129 | 11 | 267 | 245 |
Berlin | 57,013 | 34,918 | NA | 3,667 | 7,158 | 1,839 | 8,959 | 48 | 2,656 | 725 | 348 | 768 | 851 | 664 | 532 | 544 | NA | 985 | 334 | 1,437 | 5 | 28 | 152 | 1 | 266 | 196 | 496 | NA | 257 | 225 | 892 | 16 | NA | 9 | 15 | 869 | 384 | 621 | 6 | 437 | 13 |
Parisiis | 13,493 | 13,918 | NA | 27,751 | 20,622 | 2,596 | 2,012 | 87 | 1,820 | 1,722 | 5,130 | 3,956 | 3,958 | 1,588 | 1,481 | 2,248 | NA | 1,654 | 2,014 | 448 | 5 | 1,117 | 290 | NA | 519 | 64 | 441 | NA | 19 | 87 | 221 | 106 | NA | 2,382 | 1,294 | 144 | 98 | 289 | NA | 177 | 329 |
Coloniae | 23,842 | 28,357 | NA | 7,714 | 5,764 | 1,135 | 5,047 | 982 | 4,181 | 665 | 2,378 | 1,711 | 2,765 | 1,603 | 778 | 648 | NA | 2,447 | 1,370 | 348 | 13 | 874 | 170 | 1,630 | 176 | 84 | 163 | NA | 8 | 295 | 893 | 46 | NA | 1,389 | 624 | 156 | 87 | 427 | NA | 680 | 678 |
Jenae | 40,305 | 32,064 | NA | 4,417 | 7,500 | 1,355 | 3,609 | 3 | 1,033 | 1,554 | 416 | 418 | 469 | 862 | 153 | 384 | NA | 874 | 394 | 346 | 3 | 82 | 16 | NA | 1,088 | 46 | 58 | NA | 403 | 83 | 201 | 3 | NA | 483 | 21 | 458 | 51 | 31 | 11 | 177 | 46 |
Lvgdvni Batavorvm | 14,568 | 9,841 | NA | 9,394 | 6,952 | 1,603 | 1,357 | 23,189 | 855 | 1,644 | 1,249 | 2,720 | 2,162 | 6,551 | 745 | 2,358 | NA | 4,519 | 1,332 | 632 | 24 | 484 | 635 | 57 | 1,176 | 47 | 448 | NA | 30 | 48 | 333 | 115 | NA | 1,046 | 187 | 292 | 62 | 48 | 11 | 81 | 234 |
Nürnberg | 29,278 | 37,434 | NA | 2,453 | 4,127 | 1,625 | 4,793 | 2 | 2,598 | 862 | 444 | 510 | 1,319 | 496 | 517 | 426 | NA | 389 | 434 | 501 | 5 | 81 | 83 | 1,096 | 403 | 206 | 162 | NA | 11 | 64 | 494 | 9 | NA | 200 | 69 | 310 | 183 | 128 | 1 | 480 | 36 |
Roma | 12,736 | 18,881 | NA | 12,734 | 7,943 | 2,082 | 1,721 | 60 | 1,928 | 9,016 | 4,909 | 1,778 | 3,441 | 667 | 1,624 | 614 | NA | 770 | 637 | 270 | 2 | 417 | 227 | 2,091 | 487 | 72 | 615 | NA | 8 | 96 | 647 | 50 | NA | 419 | 1,309 | 58 | 102 | 90 | NA | 333 | 289 |
Augsburg | 15,478 | 48,565 | NA | 1,494 | 2,286 | 1,116 | 4,147 | 5 | 3,587 | 468 | 458 | 312 | 1,013 | 233 | 336 | 218 | NA | 692 | 302 | 115 | 2 | 59 | 26 | 1,293 | 180 | 201 | 66 | NA | 10 | 47 | 685 | 4 | NA | 70 | 149 | 69 | 69 | 27 | NA | 442 | 24 |
Basel | 20,006 | 21,375 | NA | 5,189 | 6,384 | 1,660 | 3,391 | 7 | 2,807 | 792 | 1,416 | 1,842 | 3,445 | 783 | 788 | 971 | NA | 869 | 729 | 331 | NA | 645 | 135 | 863 | 585 | 3,369 | 233 | NA | 55 | 250 | 501 | 69 | NA | 1,582 | 380 | 172 | 145 | 388 | NA | 411 | 163 |
Witebergae | 30,698 | 20,830 | NA | 2,758 | 5,426 | 963 | 955 | 1 | 831 | 976 | 498 | 319 | 848 | 635 | 98 | 264 | NA | 870 | 277 | 177 | 1 | 203 | 21 | NA | 212 | 23 | 20 | NA | 617 | 48 | 80 | 6 | NA | 789 | 11 | 218 | 82 | 92 | 34 | 71 | 99 |
Venezia | 14,649 | 15,165 | NA | 6,932 | 3,955 | 3,324 | 1,053 | 8 | 942 | 743 | 2,610 | 1,995 | 4,009 | 391 | 1,919 | 657 | NA | 214 | 939 | 285 | 1 | 116 | 189 | 3,789 | 1,064 | 80 | 978 | NA | 3 | 358 | 968 | 38 | NA | 335 | 354 | 39 | 84 | 62 | NA | 453 | 159 |
Edinburg | 6,364 | 3,321 | NA | 1,379 | 1,458 | 5,043 | 502 | 33 | 67 | 27,215 | 183 | 2,785 | 654 | 116 | 1,700 | 9,454 | NA | 157 | 74 | 218 | NA | 458 | 1,667 | NA | 3,895 | 16 | 767 | NA | NA | NA | 28 | 532 | NA | 5 | 9 | 24 | 102 | 44 | 1 | 16 | 2 |
Antverpiae | 9,245 | 13,483 | NA | 5,875 | 4,433 | 881 | 1,430 | 2,831 | 1,857 | 715 | 2,669 | 1,153 | 1,509 | 2,499 | 752 | 659 | NA | 4,188 | 4,993 | 240 | 4 | 725 | 184 | 483 | 219 | 43 | 210 | NA | 11 | 201 | 1,043 | 42 | NA | 1,377 | 728 | 102 | 79 | 207 | NA | 248 | 263 |
Franckfurt am Main | 23,347 | 19,825 | NA | 2,000 | 3,178 | 829 | 7,638 | 10 | 1,553 | 495 | 340 | 568 | 690 | 449 | 326 | 365 | NA | 603 | 176 | 449 | 13 | 146 | 38 | NA | 167 | 156 | 188 | NA | 59 | 9 | 153 | 9 | NA | 247 | 77 | 341 | 107 | 106 | NA | 220 | 147 |
La Haye | 11,187 | 8,544 | NA | 6,458 | 3,207 | 891 | 1,244 | 11,292 | 701 | 594 | 1,011 | 877 | 492 | 7,285 | 582 | 353 | NA | 1,957 | 1,510 | 612 | 2 | 132 | 143 | NA | 148 | 46 | 260 | NA | 6 | 74 | 206 | 26 | NA | 121 | 101 | 209 | 80 | 10 | NA | 53 | 12 |
Madrid | 7,315 | 3,577 | NA | 4,366 | 2,301 | 1,625 | 366 | 4 | 325 | 1,622 | 25,950 | 775 | 246 | 270 | 1,040 | 641 | NA | 324 | 117 | 319 | NA | 26 | 1,358 | NA | 619 | 7 | 412 | NA | NA | 5 | 11 | 8 | NA | 30 | 5,076 | 15 | 28 | 15 | NA | 15 | 6 |
Hamburg | 27,107 | 12,529 | NA | 1,799 | 2,477 | 935 | 2,595 | 76 | 961 | 480 | 295 | 437 | 492 | 388 | 326 | 386 | NA | 325 | 374 | 1,275 | 54 | 81 | 81 | 7 | 173 | 62 | 190 | NA | 52 | 105 | 179 | 21 | NA | 85 | 28 | 341 | 288 | 80 | 7 | 106 | 39 |
Stockholm | 8,823 | 1,670 | NA | 1,587 | 774 | 620 | 201 | 9 | 73 | 456 | 73 | 143 | 234 | 80 | 95 | 51 | NA | 108 | 42 | 2,180 | 30,351 | 18 | 48 | 14 | 52 | 7 | 24 | NA | 21 | 14 | 68 | 2 | NA | 24 | 15 | 237 | 774 | 7 | 2,734 | 29 | 2 |
Halle | 17,077 | 15,383 | NA | 2,206 | 5,484 | 956 | 2,534 | 1 | 548 | 494 | 204 | 236 | 240 | 657 | 75 | 265 | NA | 577 | 152 | 165 | 1 | 32 | 10 | NA | 698 | 26 | 45 | NA | 135 | 25 | 246 | 11 | NA | 25 | 27 | 224 | 39 | 33 | NA | 59 | 10 |
Bruxellae | 4,816 | 4,696 | NA | 5,133 | 2,471 | 641 | 842 | 627 | 297 | 259 | 799 | 401 | 342 | 1,377 | 305 | 106 | NA | 1,401 | 23,099 | 196 | 3 | 59 | 130 | NA | 58 | 8 | 82 | NA | NA | 27 | 198 | 17 | NA | 54 | 90 | 64 | 33 | 154 | NA | 41 | 44 |
Trajecti ad Rh. | 5,849 | 3,548 | NA | 3,209 | 1,788 | 566 | 447 | 12,677 | 271 | 555 | 290 | 784 | 593 | 4,144 | 336 | 471 | NA | 9,139 | 1,256 | 215 | 10 | 108 | 58 | 69 | 187 | 12 | 151 | NA | 3 | 8 | 53 | 25 | NA | 167 | 22 | 48 | 19 | 9 | 4 | 21 | 14 |
Goettingae | 16,424 | 12,118 | NA | 1,541 | 4,034 | 724 | 3,183 | 8 | 1,024 | 714 | 92 | 255 | 344 | 334 | 132 | 334 | NA | 555 | 109 | 405 | 1 | 9 | 35 | NA | 259 | 67 | 91 | NA | 9 | 70 | 312 | 7 | NA | 2 | 24 | 321 | 66 | 90 | 9 | 167 | NA |
Tübingen | 13,080 | 16,269 | NA | 1,574 | 4,095 | 671 | 2,009 | NA | 467 | 473 | 193 | 202 | 327 | 231 | 120 | 176 | NA | 453 | 91 | 211 | 1 | 114 | 17 | 27 | 326 | 46 | 116 | NA | 59 | 23 | 123 | 1 | NA | 133 | 19 | 257 | 39 | 60 | NA | 154 | 7 |
Genève | 8,425 | 6,423 | NA | 6,002 | 5,266 | 938 | 1,162 | 27 | 833 | 611 | 1,030 | 1,012 | 1,132 | 591 | 350 | 655 | NA | 690 | 436 | 260 | NA | 409 | 90 | NA | 211 | 380 | 184 | NA | 11 | 88 | 251 | 40 | NA | 627 | 366 | 108 | 59 | 177 | NA | 92 | 55 |
Helmstadij | 17,010 | 7,888 | NA | 1,601 | 2,154 | 610 | 651 | NA | 258 | 585 | 315 | 261 | 153 | 368 | 68 | 215 | NA | 333 | 117 | 165 | 3 | 83 | 6 | NA | 121 | 9 | 18 | NA | 89 | 37 | 24 | 10 | NA | 179 | 9 | 98 | 17 | 14 | 3 | 20 | 28 |
Breßlau | 9,140 | 12,159 | NA | 481 | 1,083 | 264 | 1,323 | NA | 657 | 104 | 37 | 76 | 642 | 62 | 78 | 73 | NA | 160 | 48 | 140 | NA | 9 | 7 | 11 | 69 | 22 | 49 | NA | 5,047 | 50 | 194 | 6 | NA | 7 | 5 | 92 | 39 | 197 | NA | 85 | 51 |
Dresden | 16,121 | 7,899 | NA | 798 | 1,166 | 305 | 1,863 | 3 | 667 | 250 | 128 | 79 | 231 | 141 | 125 | 95 | NA | 133 | 72 | 203 | NA | 12 | 17 | NA | 87 | 54 | 42 | NA | 94 | 73 | 184 | 3 | NA | 8 | 2 | 72 | 85 | 43 | NA | 78 | 2 |
Rostock | 19,869 | 4,516 | NA | 563 | 1,197 | 248 | 528 | 36 | 133 | 249 | 83 | 117 | 170 | 188 | 40 | 70 | NA | 280 | 74 | 432 | 113 | 33 | 2 | 30 | 127 | 4 | 11 | NA | 172 | 26 | 28 | 2 | NA | 286 | 3 | 99 | 64 | 27 | 48 | 11 | 10 |
Firenze | 6,313 | 5,850 | NA | 4,269 | 2,227 | 1,399 | 571 | NA | 320 | 425 | 1,020 | 899 | 1,197 | 224 | 1,277 | 362 | NA | 212 | 197 | 127 | NA | 32 | 96 | NA | 210 | 28 | 385 | NA | 6 | 39 | 44 | 25 | NA | 84 | 181 | 39 | 47 | 52 | NA | 52 | 53 |
Mainz | 7,904 | 8,336 | NA | 1,061 | 1,250 | 224 | 4,541 | 5 | 745 | 162 | 263 | 239 | 375 | 186 | 169 | 136 | NA | 349 | 251 | 74 | 1 | 184 | 19 | 449 | 52 | 35 | 29 | NA | 5 | 28 | 283 | 4 | NA | 216 | 63 | 34 | 32 | 68 | NA | 127 | 66 |
Erfurt | 11,902 | 8,395 | NA | 781 | 1,647 | 182 | 1,222 | 2 | 306 | 200 | 23 | 63 | 168 | 120 | 50 | 49 | NA | 92 | 68 | 113 | 6 | 14 | 5 | 129 | 242 | 17 | 10 | NA | 39 | 14 | 121 | NA | NA | 27 | 1 | 56 | 32 | 34 | 1 | 30 | 14 |
Ingolstadt | 4,312 | 13,715 | NA | 684 | 1,128 | 184 | 1,313 | 1 | 1,237 | 256 | 260 | 243 | 358 | 98 | 97 | 67 | NA | 165 | 74 | 34 | NA | 181 | 19 | 45 | 30 | 55 | 20 | NA | 1 | 27 | 124 | 1 | NA | 151 | 59 | 4 | NA | 84 | NA | 166 | 159 |
Stuttgart | 8,887 | 8,630 | NA | 385 | 1,376 | 316 | 2,468 | NA | 127 | 140 | 50 | 50 | 149 | 36 | 88 | 85 | NA | 107 | 25 | 147 | NA | 2 | 9 | 3 | 27 | 18 | 113 | NA | NA | 9 | 36 | 2 | NA | 1 | 1 | 158 | 64 | 167 | NA | 96 | NA |
Strasbourg | 2,396 | 6,875 | NA | 3,514 | 5,411 | 662 | 1,150 | 8 | 174 | 145 | 177 | 296 | 244 | 112 | 220 | 59 | NA | 44 | 137 | 92 | 4 | 45 | 60 | 85 | 174 | 55 | 76 | NA | 8 | 73 | 158 | 4 | NA | 166 | 10 | 47 | 25 | 44 | 1 | 13 | 3 |
Rotterdam | 2,579 | 1,624 | NA | 1,406 | 971 | 364 | 210 | 7,468 | 125 | 226 | 225 | 374 | 392 | 3,433 | 263 | 192 | NA | 1,543 | 314 | 120 | NA | 121 | 51 | NA | 113 | 2 | 72 | NA | 1 | 11 | 24 | 18 | NA | 139 | 19 | 16 | 9 | 2 | NA | 14 | 4 |
Milano | 4,949 | 5,203 | NA | 2,597 | 1,658 | 943 | 785 | NA | 154 | 246 | 698 | 487 | 560 | 61 | 611 | 195 | NA | 191 | 165 | 178 | NA | 7 | 72 | 1,141 | 314 | 37 | 266 | NA | NA | 23 | 63 | 20 | NA | 15 | 27 | 29 | 35 | 118 | NA | 129 | 13 |
NA | 603,446 | 422,727 | 1,408,342 | 524,484 | 249,393 | 79,518 | 104,627 | 29,319 | 113,159 | 29,397 | 46,482 | 42,403 | 64,145 | 27,418 | 32,064 | 17,628 | 105,437 | 18,859 | 23,919 | 37,438 | 13,341 | 6,792 | 10,271 | 6,752 | 13,274 | 36,559 | 10,377 | 35,323 | 12,386 | 11,214 | 6,525 | 2,352 | 26,044 | 6,912 | 8,753 | 6,127 | 9,755 | 9,244 | 6,752 | 6,711 | 8,982 |
# ggplot(aes(x=collection,y=place_name, label=p(n), fill=color)) +
# geom_tile() +
# geom_text() +
# theme_hsci_continuous()