zotero-db/translators/Primo Normalized XML.js

871 lines
122 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"translatorID": "efd737c9-a227-4113-866e-d57fbc0684ca",
"translatorType": 1,
"label": "Primo Normalized XML",
"creator": "Philipp Zumstein",
"target": "xml",
"minVersion": "3.0",
"maxVersion": null,
"priority": 100,
"inRepository": true,
"configOptions": {
"dataMode": "xml/dom"
},
"lastUpdated": "2024-04-04 18:05:00"
}
/*
***** BEGIN LICENSE BLOCK *****
Copyright © 2018 Philipp Zumstein
This file is part of Zotero.
Zotero is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Zotero is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with Zotero. If not, see <http://www.gnu.org/licenses/>.
***** END LICENSE BLOCK *****
*/
function detectImport() {
var text = Zotero.read(1000);
return text.includes("http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib");
}
function doImport() {
var doc = Zotero.getXML();
var ns = {
p: 'http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib',
sear: 'http://www.exlibrisgroup.com/xsd/jaguar/search'
};
var item = new Zotero.Item();
var itemType = ZU.xpathText(doc, '//p:display/p:type', ns) || ZU.xpathText(doc, '//p:facets/p:rsrctype', ns) || ZU.xpathText(doc, '//p:search/p:rsrctype', ns);
if (!itemType) {
throw new Error('Could not locate item type');
}
switch (itemType.toLowerCase()) {
case 'book':
case 'buch':
case 'ebook':
case 'pbook':
case 'pbooks':
case 'print_book':
case 'books':
case 'score':
case 'journal': // as long as we don't have a periodical item type;
item.itemType = "book";
break;
case 'book_chapter':
item.itemType = "bookSection";
break;
case 'audio':
case 'sound_recording':
item.itemType = "audioRecording";
break;
case 'video':
case 'dvd':
item.itemType = "videoRecording";
break;
case 'computer_file':
item.itemType = "computerProgram";
break;
case 'report':
item.itemType = "report";
break;
case 'webpage':
item.itemType = "webpage";
break;
case 'article':
case 'review':
item.itemType = "journalArticle";
break;
case 'thesis':
case 'dissertation':
item.itemType = "thesis";
break;
case 'archive_manuscript':
case 'object':
item.itemType = "manuscript";
break;
case 'map':
item.itemType = "map";
break;
case 'reference_entry':
item.itemType = "encyclopediaArticle";
break;
case 'image':
item.itemType = "artwork";
break;
case 'newspaper_article':
item.itemType = "newspaperArticle";
break;
case 'conference_proceeding':
item.itemType = "conferencePaper";
break;
default:
item.itemType = "document";
var risType = ZU.xpathText(doc, '//p:addata/p:ristype', ns);
if (risType) {
switch (risType.toUpperCase()) {
case 'THES':
item.itemType = "thesis";
break;
}
}
}
item.title = ZU.xpathText(doc, '//p:display/p:title', ns);
if (item.title) {
item.title = ZU.unescapeHTML(item.title);
item.title = item.title.replace(/\s*:/, ":");
}
var creators = ZU.xpath(doc, '//p:display/p:creator', ns);
var contributors = ZU.xpath(doc, '//p:display/p:contributor', ns);
if (!creators.length && contributors.length) {
// <creator> not available using <contributor> as author instead
creators = contributors;
contributors = [];
}
// //addata/au is great because it lists authors in last, first format,
// but it can also have a bunch of junk. We'll use it to help split authors
var splitGuidance = {};
var addau = ZU.xpath(doc, '//p:addata/p:addau|//p:addata/p:au', ns);
for (let i = 0; i < addau.length; i++) {
var author = stripAuthor(addau[i].textContent);
if (author.includes(',')) {
var splitAu = author.split(',');
if (splitAu.length > 2) continue;
var name = splitAu[1].trim().toLowerCase() + ' '
+ splitAu[0].trim().toLowerCase();
splitGuidance[name.replace(/\./g, "")] = author;
}
}
fetchCreators(item, creators, 'author', splitGuidance);
fetchCreators(item, contributors, 'contributor', splitGuidance);
item.place = ZU.xpathText(doc, '//p:addata/p:cop', ns);
var publisher = ZU.xpathText(doc, '//p:addata/p:pub', ns);
if (!publisher) publisher = ZU.xpathText(doc, '//p:display/p:publisher', ns);
if (publisher) {
publisher = publisher.replace(/,\s*c?\d+|[()[\]]/g, "");
item.publisher = publisher.replace(/^\s*"|,?"\s*$/g, '');
var pubplace = ZU.unescapeHTML(publisher).split(" : ");
if (pubplace && pubplace[1]) {
var possibleplace = pubplace[0];
if (!item.place) {
item.publisher = pubplace[1].replace(/^\s*"|,?"\s*$/g, '');
item.place = possibleplace;
}
if (item.place && item.place == possibleplace) {
item.publisher = pubplace[1].replace(/^\s*"|,?"\s*$/g, '');
}
}
// sometimes the place is also part of the publisher string
// e.g. "Tübingen Mohr Siebeck"
if (item.place) {
var contained = item.publisher.indexOf(item.place);
if (contained === 0) {
item.publisher = item.publisher.substring(item.place.length);
}
}
}
var date = ZU.xpathText(doc, '//p:addata/p:date', ns)
|| ZU.xpathText(doc, '//p:addata/p:risdate', ns);
if (date && /\d\d\d\d\d\d\d\d/.test(date)) {
item.date = date.substring(0, 4) + '-' + date.substring(4, 6) + '-' + date.substring(6, 8);
}
else {
date = ZU.xpathText(doc, '//p:display/p:creationdate|//p:search/p:creationdate', ns);
var m;
if (date && (m = date.match(/\d+/))) {
item.date = m[0];
}
}
// the three letter ISO codes that should be in the language field work well:
item.language = ZU.xpathText(doc, '(//p:display/p:language|//p:facets/p:language)[1]', ns);
var pages = ZU.xpathText(doc, '//p:display/p:format', ns);
if (item.itemType == 'book' && pages && pages.search(/\d/) != -1) {
item.numPages = extractNumPages(pages);
}
item.series = ZU.xpathText(doc, '(//p:addata/p:seriestitle)[1]', ns);
if (item.series) {
let m = item.series.match(/^(.*);\s*(\d+)/);
if (m) {
item.series = m[1].trim();
item.seriesNumber = m[2];
}
}
var isbn = ZU.xpathText(doc, '//p:addata/p:isbn', ns);
var issn = ZU.xpathText(doc, '//p:addata/p:issn', ns);
if (isbn) {
item.ISBN = ZU.cleanISBN(isbn);
}
if (issn) {
item.ISSN = ZU.cleanISSN(issn);
}
// Try this if we can't find an isbn/issn in addata
// The identifier field is supposed to have standardized format, but
// the super-tolerant idCheck should be better than a regex.
// (although note that it will reject invalid ISBNs)
var locators = ZU.xpathText(doc, '//p:display/p:identifier', ns);
if (!(item.ISBN || item.ISSN) && locators) {
item.ISBN = ZU.cleanISBN(locators);
item.ISSN = ZU.cleanISSN(locators);
}
item.edition = ZU.xpathText(doc, '//p:display/p:edition', ns);
var subjects = ZU.xpath(doc, '//p:display/p:subject', ns);
if (!subjects.length) {
subjects = ZU.xpath(doc, '//p:search/p:subject', ns);
}
for (let i = 0, n = subjects.length; i < n; i++) {
let tagChain = ZU.trimInternal(subjects[i].textContent);
// Split chain of tags, e.g. "Deutschland / Gerichtsverhandlung / Schallaufzeichnung / Bildaufzeichnung"
for (let tag of tagChain.split(/ (?:\/|--|;) /)) {
item.tags.push(tag);
}
}
item.abstractNote = ZU.xpathText(doc, '//p:display/p:description', ns)
|| ZU.xpathText(doc, '//p:addata/p:abstract', ns);
if (item.abstractNote) item.abstractNote = ZU.unescapeHTML(item.abstractNote);
item.DOI = ZU.xpathText(doc, '//p:addata/p:doi', ns);
item.issue = ZU.xpathText(doc, '//p:addata/p:issue', ns);
item.volume = ZU.xpathText(doc, '//p:addata/p:volume', ns);
item.publicationTitle = ZU.xpathText(doc, '//p:addata/p:jtitle', ns);
if (item.itemType != 'book') {
item.bookTitle = ZU.xpathText(doc, '//p:addata/p:btitle', ns);
}
var startPage = ZU.xpathText(doc, '//p:addata/p:spage', ns);
var endPage = ZU.xpathText(doc, '//p:addata/p:epage', ns);
var overallPages = ZU.xpathText(doc, '//p:addata/p:pages', ns);
var pageRangeTypes = ["journalArticle", "magazineArticle", "newspaperArticle", "dictionaryEntry", "encyclopediaArticle", "conferencePaper"];
if (startPage && endPage) {
item.pages = startPage + '' + endPage;
}
else if (overallPages) {
if (pageRangeTypes.includes(item.itemType)) {
item.pages = overallPages;
}
else {
item.numPages = overallPages;
}
}
else if (startPage) {
item.pages = startPage;
}
else if (endPage) {
item.pages = endPage;
}
// these are actual local full text links (e.g. to google-scanned books)
// e.g http://solo.bodleian.ox.ac.uk/OXVU1:LSCOP_OX:oxfaleph013370702
var URL = ZU.xpathText(doc, '//p:links/p:linktorsrc', ns);
if (URL && URL.search(/\$\$U.+\$\$/) != -1) {
item.url = URL.match(/\$\$U(.+?)\$\$/)[1];
}
// add finding aids as links
var findingAid = ZU.xpathText(doc, '//p:links/p:linktofa', ns);
if (findingAid && findingAid.search(/\$\$U.+\$\$/) != -1) {
item.attachments.push({ url: findingAid.match(/\$\$U(.+?)\$\$/)[1], title: "Finding Aid", snapshot: false });
}
// get the best call Number; sequence recommended by Harvard University Library
var callNumber = ZU.xpath(doc, '//p:browse/p:callnumber', ns);
var callArray = [];
for (let i = 0; i < callNumber.length; i++) {
if (callNumber[i].textContent.search(/\$\$D.+\$/) != -1) {
callArray.push(callNumber[i].textContent.match(/\$\$D(.+?)\$/)[1]);
}
}
if (!callArray.length) {
callNumber = ZU.xpath(doc, '//p:display/p:availlibrary', ns);
for (let i = 0; i < callNumber.length; i++) {
if (callNumber[i].textContent.search(/\$\$2.+\$/) != -1) {
callArray.push(callNumber[i].textContent.match(/\$\$2\(?(.+?)(?:\s*\))?\$/)[1]);
}
}
}
if (callArray.length) {
// remove duplicate call numbers
callArray = dedupeArray(callArray);
item.callNumber = callArray.join(", ");
}
else {
ZU.xpathText(doc, '//p:enrichment/p:classificationlcc', ns);
}
// Harvard specific code, requested by Harvard Library:
// Getting the library abbreviation properly,
// so it's easy to implement custom code for other libraries, either locally or globally should we want to.
var library;
var source = ZU.xpathText(doc, '//p:control/p:sourceid', ns);
if (source) {
// The HVD library code is now preceded by $$V01 -- not seeing this in other catalogs like Princeton or UQAM
// so making it optional
library = source.match(/^(?:\$\$V)?(?:\d+)?(.+?)_/);
if (library) library = library[1];
}
// Z.debug(library)
if (library && library == "HVD") {
if (ZU.xpathText(doc, '//p:display/p:lds01', ns)) {
item.extra = "HOLLIS number: " + ZU.xpathText(doc, '//p:display/p:lds01', ns);
}
for (let lds03 of ZU.xpath(doc, '//p:display/p:lds03', ns)) {
if (lds03.textContent.match(/href="(.+?)"/)) {
item.attachments.push({
url: lds03.textContent.match(/href="(.+?)"/)[1],
title: "HOLLIS Permalink",
snapshot: false
});
}
}
}
// End Harvard-specific code
item.complete();
}
function stripAuthor(str) {
// e.g. Wheaton, Barbara Ketcham [former owner]$$QWheaton, Barbara Ketcham
str = str.replace(/^(.*)\$\$Q(.*)$/, "$2");
return str
// Remove year
.replace(/\s*,?\s*\(?\d{4}-?(\d{4}|\.{3})?\)?/g, '')
// Remove creator type like (illustrator)
.replace(/(\s*,?\s*[[(][^()]*[\])])+$/, '')
// The full "continuous" name uses no separators, which need be removed
// cf. "Luc, Jean André : de (1727-1817)"
.replace(/\s*:\s+/, " ")
// National Library of Russia adds metadata at the end of the author name,
// prefixed by 'NLR10::'. Remove it.
.replace(/\bNLR10::.*/, '')
// Austrian Libraries add authority data at the end of the author name,
// prefixed by '$$0'. Remove it.
.replace(/\$\$0.*/, '');
}
function fetchCreators(item, creators, type, splitGuidance) {
for (let i = 0; i < creators.length; i++) {
var creator = ZU.unescapeHTML(creators[i].textContent).split(/\s*;\s*/);
for (var j = 0; j < creator.length; j++) {
var c = stripAuthor(creator[j]).replace(/\./g, "");
c = ZU.cleanAuthor(
splitGuidance[c.toLowerCase()] || c,
type,
true
);
if (!c.firstName) {
delete c.firstName;
c.fieldMode = 1;
}
item.creators.push(c);
}
}
}
function extractNumPages(str) {
// Borrowed from Library Catalog (PICA). See #756
// make sure things like 2 partition don't match, but 2 p at the end of the field do
// f., p., and S. are "pages" in various languages
// For multi-volume works, we expect formats like:
// x-109 p., 510 p. and X, 106 S.; 123 S.
var numPagesRE = /\[?\b((?:[ivxlcdm\d]+[ \-,]*)+)\]?\s+[fps]\b/ig;
var numPages = [];
let m = numPagesRE.exec(str);
if (m) {
numPages.push(m[1].trim()
.replace(/[ \-,]+/g, '+')
.toLowerCase() // for Roman numerals
);
}
return numPages.join('; ');
}
function dedupeArray(names) {
// via http://stackoverflow.com/a/15868720/1483360
return names.reduce(function (a, b) {
if (!a.includes(b)) {
a.push(b);
}
return a;
}, []);
}
/** BEGIN TEST CASES **/
var testCases = [
{
"type": "import",
"input": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n <record xmlns=\"http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib\" xmlns:sear=\"http://www.exlibrisgroup.com/xsd/jaguar/search\">\n <control>\n <sourcerecordid>22248448</sourcerecordid>\n <sourceid>medline</sourceid>\n <recordid>TN_medline22248448</recordid>\n <sourceformat>XML</sourceformat>\n <sourcesystem>Other</sourcesystem>\n </control>\n <display>\n <type>article</type>\n <title>Water</title>\n <creator>Bryant, Robert G ; Johnson, Mark A ; Rossky, Peter J</creator>\n <ispartof>Accounts of chemical research, 17 January 2012, Vol.45(1), pp.1-2</ispartof>\n <identifier><![CDATA[<b>E-ISSN:</b> 1520-4898 ; <b>PMID:</b> 22248448 Version:1 ; <b>DOI:</b> 10.1021/ar2003286]]></identifier>\n <subject>Water -- Chemistry</subject>\n <language>eng</language>\n <source/>\n <version>2</version>\n <lds50>peer_reviewed</lds50>\n </display>\n <links>\n <openurl>$$Topenurl_article</openurl>\n <backlink>$$Uhttp://pubmed.gov/22248448$$EView_this_record_in_MEDLINE/PubMed</backlink>\n <openurlfulltext>$$Topenurlfull_article</openurlfulltext>\n <addlink>$$Uhttp://exlibris-pub.s3.amazonaws.com/aboutMedline.html$$EView_the_MEDLINE/PubMed_Copyright_Statement</addlink>\n </links>\n <search>\n <creatorcontrib>Bryant, Robert G</creatorcontrib>\n <creatorcontrib>Johnson, Mark A</creatorcontrib>\n <creatorcontrib>Rossky, Peter J</creatorcontrib>\n <title>Water.</title>\n <subject>Water -- chemistry</subject>\n <general>22248448</general>\n <general>English</general>\n <general>MEDLINE/PubMed (U.S. National Library of Medicine)</general>\n <general>10.1021/ar2003286</general>\n <general>MEDLINE/PubMed (NLM)</general>\n <sourceid>medline</sourceid>\n <recordid>medline22248448</recordid>\n <issn>15204898</issn>\n <issn>1520-4898</issn>\n <rsrctype>text_resource</rsrctype>\n <creationdate>2012</creationdate>\n <addtitle>Accounts of chemical research</addtitle>\n <searchscope>medline</searchscope>\n <searchscope>nlm_medline</searchscope>\n <searchscope>MEDLINE</searchscope>\n <scope>medline</scope>\n <scope>nlm_medline</scope>\n <scope>MEDLINE</scope>\n <lsr41>20120117</lsr41>\n <citation>pf 1 vol 45 issue 1</citation>\n <startdate>20120117</startdate>\n <enddate>20120117</enddate>\n </search>\n <sort>\n <title>Water</title>\n <author>Bryant, Robert G ; Johnson, Mark A ; Rossky, Peter J</author>\n <creationdate>20120117</creationdate>\n <lso01>20120117</lso01>\n </sort>\n <facets>\n <frbrgroupid>-1388435396316500619</frbrgroupid>\n <frbrtype>5</frbrtype>\n <newrecords>20180102</newrecords>\n <language>eng</language>\n <creationdate>2012</creationdate>\n <topic>WaterChemistry</topic>\n <collection>MEDLINE/PubMed (NLM)</collection>\n <rsrctype>text_resources</rsrctype>\n <creatorcontrib>Bryant, Robert G</creatorcontrib>\n <creatorcontrib>Johnson, Mark A</creatorcontrib>\n <creatorcontrib>Rossky, Peter J</creatorcontrib>\n <jtitle>Accounts Of Chemical Research</jtitle>\n <toplevel>peer_reviewed</toplevel>\n </facets>\n <delivery>\n <delcategory>Remote Search Resource</delcategory>\n <fulltext>fulltext</fulltext>\n </delivery>\n <addata>\n <aulast>Bryant</aulast>\n <aulast>Johnson</aulast>\n <aulast>Rossky</aulast>\n <aufirst>Robert G</aufirst>\n <aufirst>Mark A</aufirst>\n <aufirst>Peter J</aufirst>\n <au>Bryant, Robert G</au>\n <au>Johnson, Mark A</au>\n <au>Rossky, Peter J</au>\n <btitle>Water</btitle>\n <atitle>Water.</atitle>\n <jtitle>Accounts of chemical research</jtitle>\n <date>20120117</date>\n <risdate>20120117</risdate>\n <volume>45</volume>\n <issue>1</issue>\n <spage>1</spage>\n <pages>1-2</pages>\n <eissn>1520-4898</eissn>\n <format>book</format>\n <genre>document</genre>\n <ristype>GEN</ristype>\n <doi>10.1021/ar2003286</doi>\n <pmid>22248448</pmid>\n </addata>\n </record>",
"items": [
{
"itemType": "journalArticle",
"title": "Water",
"creators": [
{
"firstName": "Robert G.",
"lastName": "Bryant",
"creatorType": "author"
},
{
"firstName": "Mark A.",
"lastName": "Johnson",
"creatorType": "author"
},
{
"firstName": "Peter J.",
"lastName": "Rossky",
"creatorType": "author"
}
],
"date": "2012-01-17",
"DOI": "10.1021/ar2003286",
"ISSN": "1520-4898",
"issue": "1",
"language": "eng",
"pages": "1-2",
"publicationTitle": "Accounts of chemical research",
"volume": "45",
"attachments": [],
"tags": [
{
"tag": "Water"
},
{
"tag": "Chemistry"
}
],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "import",
"input": "<?xml version=\"1.0\" encoding=\"UTF-8\"?><record xmlns=\"http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib\" xmlns:sear=\"http://www.exlibrisgroup.com/xsd/jaguar/search\">\n <control>\n <sourcerecordid>002208563</sourcerecordid>\n <sourceid>HVD_ALEPH</sourceid>\n <recordid>HVD_ALEPH002208563</recordid>\n <originalsourceid>HVD01</originalsourceid>\n <ilsapiid>HVD01002208563</ilsapiid>\n <sourceformat>MARC21</sourceformat>\n <sourcesystem>Aleph</sourcesystem>\n </control>\n <display>\n <type>book</type>\n <title>Mastering the art of French cooking</title>\n <creator>Beck, Simone, 1904-1991. $$QBeck, Simone, 1904-1991.</creator>\n <contributor>Bertholle, Louisette.$$QBertholle, Louisette.</contributor>\n <contributor>Child, Julia.$$QChild, Julia.</contributor>\n <contributor>Wheaton, Barbara Ketcham [former owner]$$QWheaton, Barbara Ketcham</contributor>\n <contributor>DeVoto, Avis [former owner]$$QDeVoto, Avis</contributor>\n <edition>[1st ed.]</edition>\n <publisher>New York : Knopf, 1961-70.</publisher>\n <creationdate>1961-70</creationdate>\n <format>2 v. : ill. ; 26 cm.</format>\n <subject>Cooking, French.</subject>\n <description>Illustrates the ways in which classic French dishes may be created with American foodstuffs and appliances.</description>\n <language>eng</language>\n <source>HVD_ALEPH</source>\n <availlibrary>$$IHVD$$LHVD_SCH$$1Offsite Storage -- In-library use only$$2641.64 C53m, c.1$$Savailable$$32$$40$$5Y$$60$$XHVD50$$YSCH$$ZHD$$P78$$HHVD60003115849</availlibrary>\n <availlibrary>$$IHVD$$LHVD_SCH$$1Offsite Storage -- In-library use only$$2641.64 C53m, c. 3$$Savailable$$32$$40$$5Y$$61$$XHVD50$$YSCH$$ZHD$$P78$$HHVD60018187101</availlibrary>\n <availlibrary>$$IHVD$$LHVD_SCH$$1Offsite Storage -- In-library use only$$2641.64 C53m, c.5$$Savailable$$32$$40$$5Y$$60$$XHVD50$$YSCH$$ZHD$$P78$$HHVD60018770891</availlibrary>\n <availlibrary>$$IHVD$$LHVD_SCH$$1Offsite Storage -- In-library use only$$2641.64 C53m, c.6$$Savailable$$31$$40$$5Y$$60$$XHVD50$$YSCH$$ZHD$$P78$$HHVD60019421606</availlibrary>\n <availlibrary>$$IHVD$$LHVD_SCH$$1Offsite Storage -- In-library use only$$2641.64 C53m, c. 7$$Savailable$$32$$40$$5N$$60$$XHVD50$$YSCH$$ZHD$$P78$$HHVD60019730367</availlibrary>\n <availlibrary>$$IHVD$$LHVD_SCH$$1Offsite Storage -- In-library use only$$2641.64 C53m, c. 8$$Savailable$$31$$40$$5Y$$60$$XHVD50$$YSCH$$ZHD$$P78$$HHVD60019730395</availlibrary>\n <availlibrary>$$IHVD$$LHVD_SCH$$1Offsite Storage -- In-library use only$$2641.64 C53m, c.2$$Savailable$$31$$40$$5Y$$60$$XHVD50$$YSCH$$ZHD$$P78$$HHVD60016438903</availlibrary>\n <availlibrary>$$IHVD$$LHVD_SCH$$1Vault$$2641.64 C53m, c.4$$Savailable$$31$$40$$5N$$60$$XHVD50$$YSCH$$ZVAULT$$P78$$HHVD60018653989</availlibrary>\n <lds01>002208563</lds01>\n <lds02>567511</lds02>\n <lds03>&lt;a href=\"http://id.lib.harvard.edu/aleph/002208563/catalog\">http://id.lib.harvard.edu/aleph/002208563/catalog&lt;/a></lds03>\n <lds05>Knopf</lds05>\n <lds06>Vol. 1. Kitchen equipment -- Definitions -- Ingredients -- Measures -- Temperatures -- Cutting : chopping, slicing, dicing, and mincing -- Wines -- Soups -- Sauces -- Eggs -- Entrees and luncheon dishes -- Fish -- Poultry -- Meat -- Vegetables -- Cold buffet -- Desserts and cakes -- Vol. 2. Soups from the garden -- bisques and chowders from the sea -- Baking : breads, brioches, croissants, and pastries -- Meats : from country kitchen to haute cuisine -- Chickens, poached and sauced -- and a coq en pâte -- Charcuterie : sausages, salted pork and goose, pâtés and terrines -- A choice of vegetables -- Desserts :extending the repertoire -- Appendices : Stuffings -- Kitchen equipment -- Cuculative index for volumes one and two.</lds06>\n <lds13>Vol. 2 by Julia Child and Simone Beck.</lds13>\n <lds14>by Simone Beck, Louisette Bertholle [and] Julia Child.</lds14>\n <lds30>c. 3, 4, 5, 7, 8: -- Authors' inscriptions (Provenance)$$Qc. 3, 4, 5, 7, 8: Authors' inscriptions (Provenance)</lds30>\n <lds30>Cookbooks.$$QCookbooks.</lds30>\n <availinstitution>$$IHVD$$Savailable</availinstitution>\n <availpnx>available</availpnx>\n </display>\n <links>\n <openurl>$$Topenurl_journal</openurl>\n <backlink>$$Taleph_backlink$$Ebacklink</backlink>\n <thumbnail>$$Tgoogle_thumb</thumbnail>\n <openurlfulltext>$$Topenurlfull_journal</openurlfulltext>\n <linktoholdings>$$Taleph_holdings</linktoholdings>\n <linktouc>$$Tworldcat_oclc$$Eworldcat</linktouc>\n </links>\n <search>\n <creatorcontrib>Simone, Beck 1904-1991.</creatorcontrib>\n <creatorcontrib>Simca, 1904-1991</creatorcontrib>\n <creatorcontrib>Beck, Simone, 1904-1991.</creatorcontrib>\n <creatorcontrib>Simca, 1904-1991</creatorcontrib>\n <creatorcontrib>Beck, S</creatorcontrib>\n <creatorcontrib>Simca</creatorcontrib>\n <creatorcontrib>by Simone Beck, Louisette Bertholle [and] Julia Child.</creatorcontrib>\n <creatorcontrib>Louisette. Bertholle</creatorcontrib>\n <creatorcontrib>Julia. Child</creatorcontrib>\n <creatorcontrib>Barbara Ketcham, Wheaton former owner.</creatorcontrib>\n <creatorcontrib>Avis, DeVoto former owner.</creatorcontrib>\n <creatorcontrib>Julia Carolyn McWilliams</creatorcontrib>\n <creatorcontrib>Avis De Voto</creatorcontrib>\n <creatorcontrib>Avis de Voto</creatorcontrib>\n <creatorcontrib>Avis MacVicar DeVoto</creatorcontrib>\n <creatorcontrib>Bertholle, Louisette.</creatorcontrib>\n <creatorcontrib>Child, Julia.</creatorcontrib>\n <creatorcontrib>Wheaton, Barbara Ketcham, former owner.</creatorcontrib>\n <creatorcontrib>DeVoto, Avis, former owner.</creatorcontrib>\n <creatorcontrib>McWilliams, Julia Carolyn</creatorcontrib>\n <creatorcontrib>De Voto, Avis</creatorcontrib>\n <creatorcontrib>Voto, Avis de</creatorcontrib>\n <creatorcontrib>DeVoto, Avis MacVicar</creatorcontrib>\n <creatorcontrib>Bertholle, L</creatorcontrib>\n <creatorcontrib>Child, J</creatorcontrib>\n <creatorcontrib>Wheaton, B</creatorcontrib>\n <creatorcontrib>DeVoto, A</creatorcontrib>\n <creatorcontrib>McWilliams, J</creatorcontrib>\n <creatorcontrib>De Voto, A</creatorcontrib>\n <creatorcontrib>Voto, A</creatorcontrib>\n <title>Mastering the art of French cooking /</title>\n <description>Illustrates the ways in which classic French dishes may be created with American foodstuffs and appliances.</description>\n <subject>Cooking, French.</subject>\n <subject>Cookery, French</subject>\n <subject>French cooking</subject>\n <subject>Authors' inscriptions (Provenance)</subject>\n <subject>Cookbooks.</subject>\n <general>61012313</general>\n <general>Vol. 2 by Julia Child and Simone Beck.</general>\n <general>Bookplate of Denise K. Schorr.</general>\n <general>From the collection of Barbara Ketcham Wheaton; with armorial Wheaton bookplate.</general>\n <general>Authors' inscriptions on half title: Pour Barbara Wheaton avec amité et très grands compliments pour le resultat, L. Bertholle-Rémiôn; Si heureuse d'avoir pu instruire la charmante Barbara; Avec tous mes souvenirs et mon affection, Simone Beck; Twenty five years!-with love to our own Cul. Historian Supreme-Barbara Wheaton. Julia Child.</general>\n <general>From the collection of Ruth Lockwood.</general>\n <general>Author's inscription on half title: For Ruth Lockwood, We have always had such fun together, and our meeting of minds is not only gastronomical. With love, Julia Child, Cambridge, November 16, 1962.</general>\n <general>Author's inscription on front free endpaper: To Ruth J. Lockwood, P.F.C. Mirror, mirror on the wall/Who's most Ruthless of them all?/'Tis we are Ruthless, we who miss/The wisdom, heart--and even bliss--/Of having Ruthie (Chrysalis/From out of which the butterfly/Of genius grows) beside us. Aye!/'Tis we who miss belovéd Ruth/ Who Ruthless are, and so, forsooth,/We send this token of ourselves/To sit on tables, chairs, or shelves,/Reminder in the weeks ahead/To think of us, not just of bread,/Not just of fish, or meat, or spice,/Nor watercress, or lemon ice,/Not just chicken fricasee--/But think of J. and think of P. Cambridge, April 5, 1971. Paul Julia [Child].</general>\n <general>Authors' inscription on half title: To Avis [DeVoto], Pen Pal and Co-Author--Julia. First inscribed copy, Cambridge, Massachusetts, September 26, 1961; To my so dearest chérie Avis, avec toute ma profonde affection. Simone Beck.</general>\n <general>Authors' inscription on half title: Comme c'est merveilleux de retrouver ma soeur femelle Avis, pour le baptême de notre second enfant--si bienvenu au monde et avec l'espoir qu'il grandira dans les années à venir. Avec infiniment d'affection. Simone Beck. The second child! happily with the same Auntie Avis, still sheltering, advising, hand holding, scolding...thank god...this is our inscription of thanks from her niece and nephew, Julia and Paul.</general>\n <general>Printed label pasted onto front free endpaper: The French Chef, WGBH-TV, Channel 2, Boston; inscription on label: Best wishes and Bon Appétit! Julia Child.</general>\n <general>Author's inscription on half title: To Avis--with love. Final version with every known fixable thing fixed--Julia.</general>\n <general>Eighth printing, December 1964.</general>\n <general>Third printing, December 1970.</general>\n <general>1st printing.</general>\n <general>Author's inscription: A ma soeur en cuisine-vive l'art culinaire francaises aux USA! Julia Child, Cambridge, 31/7-62.</general>\n <general>Author's inscription: À notre très chère colleague et amie, Denise Schorr. Julia Child.</general>\n <general>2nd printing, Nov. 1962.</general>\n <general>Occasionl manuscript corrections in Julia Child's hand throughout.</general>\n <general>Corrections in DeVoto's hand throughout, partial index to corrections on back free endpaper; clippings laid in at pages 190/191 and 240/241 and manuscript recipes for herbed butters laid in at pages 102/103, removed and housed with volume.</general>\n <general>Occasional marks and corrections in DeVoto's throughout.</general>\n <general>Auctioneer's bookmark removed to Inserted material collection, call number MC 782.</general>\n <general>Twelfth printing, August 1966.</general>\n <general>24th printing, November 1973 ; new plates first used October, 1971 ; Child and Beck's positions have been reversed in these printings.</general>\n <general>Bound in original white cloth; in dust jacket as issued.</general>\n <general>Dust jacket preserved.</general>\n <general>Publisher's decorative oil cloth.</general>\n <general>Bound in original decorated boards; text block upside down.</general>\n <general>Bound in original decorated cloth; v.2 in dust jacket, as issued.</general>\n <general>Bound in original decorated cloth.</general>\n <general>Illustrates the ways in which classic French dishes may be created with American foodstuffs and appliances.</general>\n <sourceid>HVD_ALEPH</sourceid>\n <recordid>HVD_ALEPH002208563</recordid>\n <toc>Vol. 1. Kitchen equipment -- Definitions -- Ingredients -- Measures -- Temperatures -- Cutting : chopping, slicing, dicing, and mincing -- Wines -- Soups -- Sauces -- Eggs -- Entrees and luncheon dishes -- Fish -- Poultry -- Meat -- Vegetables -- Cold buffet -- Desserts and cakes -- Vol. 2. Soups from the garden -- bisques and chowders from the sea -- Baking : breads, brioches, croissants, and pastries -- Meats : from country kitchen to haute cuisine -- Chickens, poached and sauced -- and a coq en pâte -- Charcuterie : sausages, salted pork and goose, pâtés and terrines -- A choice of vegetables -- Desserts :extending the repertoire -- Appendices : Stuffings -- Kitchen equipment -- Cuculative index for volumes one and two.</toc>\n <rsrctype>book</rsrctype>\n <creationdate>1961</creationdate>\n <creationdate>1970</creationdate>\n <startdate>19610101</startdate>\n <enddate>19701231</enddate>\n <addtitle>Mastering the art of French cooking.</addtitle>\n <addtitle>Vol. 1. Kitchen equipment -- Definitions -- Ingredients -- Measures -- Temperatures -- Cutting : chopping, slicing, dicing, and mincing -- Wines -- Soups -- Sauces -- Eggs -- Entrees and luncheon dishes -- Fish -- Poultry -- Meat -- Vegetables -- Cold buffet -- Desserts and cakes -- Vol. 2. Soups from the garden -- bisques and chowders from the sea -- Baking : breads, brioches, croissants, and pastries -- Meats : from country kitchen to haute cuisine -- Chickens, poached and sauced -- and a coq en pâte -- Charcuterie : sausages, salted pork and goose, pâtés and terrines -- A choice of vegetables -- Desserts :extending the repertoire -- Appendices : Stuffings -- Kitchen equipment -- Cuculative index for volumes one and two.</addtitle>\n <searchscope>HVD_ALEPH</searchscope>\n <searchscope>HVD_SCH</searchscope>\n <searchscope>HVD</searchscope>\n <scope>HVD_ALEPH</scope>\n <scope>HVD_SCH</scope>\n <scope>HVD</scope>\n <lsr01>002208563</lsr01>\n <lsr01>2208563</lsr01>\n <lsr02>567511</lsr02>\n <lsr04>Knopf,</lsr04>\n <lsr05>New York :</lsr05>\n <lsr30>Authors' inscriptions (Provenance)</lsr30>\n <lsr30>Cookbooks.</lsr30>\n <lsr40>eng</lsr40>\n <lsr41>SCHHD</lsr41>\n <lsr41>SCHVAULT</lsr41>\n <lsr42>nyu</lsr42>\n </search>\n <sort>\n <title>Mastering the art of French cooking /</title>\n <creationdate>1961</creationdate>\n <author>Beck, Simone, 1904-1991.</author>\n <lso01>1961</lso01>\n </sort>\n <facets>\n <language>eng</language>\n <creationdate>1961</creationdate>\n <topic>Cooking, French</topic>\n <collection>Harvard ILS</collection>\n <toplevel>available</toplevel>\n <toplevel>available_onsite</toplevel>\n <prefilter>books</prefilter>\n <rsrctype>books</rsrctype>\n <creatorcontrib>Beck, Simone, 1904-1991</creatorcontrib>\n <creatorcontrib>Bertholle, Louisette</creatorcontrib>\n <creatorcontrib>Child, Julia</creatorcontrib>\n <creatorcontrib>Wheaton, Barbara Ketcham</creatorcontrib>\n <creatorcontrib>DeVoto, Avis</creatorcontrib>\n <genre>Authors' inscriptions (Provenance)</genre>\n <genre>Cookbooks</genre>\n <library>HVD_SCH</library>\n <classificationlcc>T - Technology .Home economicsCookery</classificationlcc>\n <newrecords>20140704_558</newrecords>\n <frbrgroupid>154092483</frbrgroupid>\n <frbrtype>6</frbrtype>\n </facets>\n <dedup>\n <t>1</t>\n <c5>002208563</c5>\n <f20>002208563</f20>\n </dedup>\n <frbr>\n <t>1</t>\n <k1>$$Kbeck simone 1904 1991$$AA</k1>\n <k3>$$Kmastering the art of french cooking$$AT</k3>\n </frbr>\n <delivery>\n <institution>HVD</institution>\n <delcategory>Physical Item</delcategory>\n </delivery>\n <enrichment>\n <classificationlcc>TX719</classificationlcc>\n </enrichment>\n <ranking>\n <booster1>1</booster1>\n <booster2>1</booster2>\n </ranking>\n <addata>\n <aulast>Beck</aulast>\n <aufirst>Simone,</aufirst>\n <au>Beck, Simone</au>\n <addau>Bertholle, Louisette</addau>\n <addau>Child, Julia</addau>\n <addau>Wheaton, Barbara Ketcham</addau>\n <addau>DeVoto, Avis</addau>\n <btitle>Mastering the art of French cooking</btitle>\n <date>1961</date>\n <risdate>1961</risdate>\n <format>book</format>\n <genre>book</genre>\n <ristype>BOOK</ristype>\n <abstract>Illustrates the ways in which classic French dishes may be created with American foodstuffs and appliances.</abstract>\n <cop>New York</cop>\n <pub>Knopf</pub>\n <oclcid>567511</oclcid>\n </addata>\n <browse>\n <author>$$DBeck, Simone, 1904-1991$$EBeck, Simone, 1904-1991$$IHVD10000331329$$PY</author>\n <author>$$DSimca, 1904-1991$$ESimca, 1904-1991$$IHVD10000331329$$PN</author>\n <author>$$DBertholle, Louisette$$EBertholle, Louisette$$IHVD10002219894$$PY</author>\n <author>$$DChild, Julia$$EChild, Julia$$IHVD10000337040$$PY</author>\n <author>$$DWheaton, Barbara Ketcham$$EWheaton, Barbara Ketcham$$IHVD10002222513$$PY</author>\n <author>$$DDeVoto, Avis$$EDeVoto, Avis$$IHVD10002387803$$PY</author>\n <author>$$DMcWilliams, Julia Carolyn$$EMcWilliams, Julia Carolyn$$IHVD10000337040$$PN</author>\n <author>$$DDe Voto, Avis$$EDe Voto, Avis$$IHVD10002387803$$PN</author>\n <author>$$DVoto, Avis de$$EVoto, Avis de$$IHVD10002387803$$PN</author>\n <author>$$DDeVoto, Avis MacVicar$$EDeVoto, Avis MacVicar$$IHVD10002387803$$PN</author>\n <title>$$DMastering the art of French cooking$$EMastering the art of French cooking</title>\n <subject>$$DCooking, French$$ECooking, French$$IHVD10000082473$$PY</subject>\n <subject>$$DCookery, French$$ECookery, French$$IHVD10000082473$$PN</subject>\n <subject>$$DFrench cooking$$EFrench cooking$$IHVD10000082473$$PN</subject>\n <callnumber>$$IHVD$$D641.64 C53m, c.1$$E000000000641.064000000000 c000000000053m, c.000000000001$$T1</callnumber>\n <callnumber>$$IHVD$$D641.64 C53m, c. 3$$E000000000641.064000000000 c000000000053m, c. 000000000003$$T1</callnumber>\n <callnumber>$$IHVD$$D641.64 C53m, c.4$$E000000000641.064000000000 c000000000053m, c.000000000004$$T1</callnumber>\n <callnumber>$$IHVD$$D641.64 C53m, c.5$$E000000000641.064000000000 c000000000053m, c.000000000005$$T1</callnumber>\n <callnumber>$$IHVD$$D641.64 C53m, c.6$$E000000000641.064000000000 c000000000053m, c.000000000006$$T1</callnumber>\n <callnumber>$$IHVD$$D641.64 C53m, c. 7$$E000000000641.064000000000 c000000000053m, c. 000000000007$$T1</callnumber>\n <callnumber>$$IHVD$$D641.64 C53m, c. 8$$E000000000641.064000000000 c000000000053m, c. 000000000008$$T1</callnumber>\n <callnumber>$$IHVD$$D641.64 C53m, c.2$$E000000000641.064000000000 c000000000053m, c.000000000002$$T1</callnumber>\n <institution>HVD</institution>\n </browse>\n </record>",
"items": [
{
"itemType": "book",
"title": "Mastering the art of French cooking",
"creators": [
{
"firstName": "Simone",
"lastName": "Beck",
"creatorType": "author"
},
{
"firstName": "Louisette",
"lastName": "Bertholle",
"creatorType": "contributor"
},
{
"firstName": "Julia",
"lastName": "Child",
"creatorType": "contributor"
},
{
"firstName": "Barbara Ketcham",
"lastName": "Wheaton",
"creatorType": "contributor"
},
{
"firstName": "Avis",
"lastName": "DeVoto",
"creatorType": "contributor"
}
],
"date": "1961",
"abstractNote": "Illustrates the ways in which classic French dishes may be created with American foodstuffs and appliances.",
"callNumber": "641.64 C53m, c.1, 641.64 C53m, c. 3, 641.64 C53m, c.4, 641.64 C53m, c.5, 641.64 C53m, c.6, 641.64 C53m, c. 7, 641.64 C53m, c. 8, 641.64 C53m, c.2",
"edition": "[1st ed.]",
"extra": "HOLLIS number: 002208563",
"language": "eng",
"place": "New York",
"publisher": "Knopf",
"attachments": [
{
"title": "HOLLIS Permalink",
"snapshot": false
}
],
"tags": [
{
"tag": "Cooking, French."
}
],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "import",
"input": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<record xmlns=\"http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib\" xmlns:sear=\"http://www.exlibrisgroup.com/xsd/jaguar/search\">\n <control>\n <sourcerecordid>21126560510002561</sourcerecordid>\n <sourceid>MAN_ALMA</sourceid>\n <recordid>MAN_ALMA21126560510002561</recordid>\n <originalsourceid>MAN_INST</originalsourceid>\n <addsrcrecordid>KPLUS492418942</addsrcrecordid>\n <addsrcrecordid>BSZ118463411</addsrcrecordid>\n <addsrcrecordid>OCLC238724886</addsrcrecordid>\n <addsrcrecordid>OCLC62185846</addsrcrecordid>\n <sourceformat>MARC21</sourceformat>\n <sourcesystem>Alma</sourcesystem>\n <almaid>49MAN_INST:21126560510002561</almaid>\n </control>\n <display>\n <type>book</type>\n <title>Zur Medienöffentlichkeit der Dritten Gewalt rechtliche Aspekte des Zugangs der Medien zur Rechtsprechung im Verfassungsstaat des Grundgesetzes</title>\n <creator>Coelln, Christian von</creator>\n <contributor>Bethge, Herbert</contributor>\n <contributor>Söhn, Hartmut [Gutachter]</contributor>\n <publisher>Tübingen Mohr Siebeck</publisher>\n <creationdate>2005</creationdate>\n <format>XXX, 575 S. 24 cm</format>\n <identifier>$$CISBN$$V 3161486617</identifier>\n <subject>Conduct of court proceedings -- Germany; Constitutional law -- Germany; Freedom of information -- Germany; Hochschulschrift</subject>\n <subject>Deutschland / Rechtsprechende Gewalt / Öffentlichkeitsgrundsatz / Informationsfreiheit</subject>\n <subject>Deutschland / Gerichtsberichterstattung / Elektronische Medien / Verbot / Verfassungsmäßigkeit</subject>\n <subject>Deutschland / Gerichtsverhandlung / Schallaufzeichnung / Bildaufzeichnung</subject>\n <description>Zugl.: Passau, Univ., Habil.-Schr., 2004</description>\n <description>Christian von Coelln behandelt die rechtlichen, insbesondere die verfassungsrechtlichen Fragen des Zugangs der Medien zur Rechtsprechung. Neben generellen Erwägungen zur Bedeutung der Medienöffentlichkeit der Dritten Gewalt für Demokratie und Rechtsstaat befaßt er sich u.a. mit der Teilnahme von Journalisten an mündlichen Verhandlungen und mit der Problematik von Bild- und Tonaufnahmen in Gerichtsgebäuden.(Quelle: Verlag).</description>\n <language>ger</language>\n <relation>$$Cseries $$VIus publicum ; 138 ; 13800</relation>\n <source>MAN_ALMA</source>\n <availlibrary>$$IMAN$$LMANLS300$$1Lehrstuhl Müller-Terpitz$$2(341 PH 4520 C672 )$$Savailable$$X49MAN_INST$$YLS300$$Z341$$P1</availlibrary>\n <lds01>Mohr Siebeck</lds01>\n <lds27>121557006 Bethge, Herbert</lds27>\n <lds30>PG 430</lds30>\n <availinstitution>$$IMAN$$Savailable</availinstitution>\n <availpnx>available</availpnx>\n </display>\n <links>\n <openurl>$$Topenurl</openurl>\n <thumbnail>$$Tamazon_thumb</thumbnail>\n <thumbnail>$$Tgoogle_thumb</thumbnail>\n <addlink>$$Uhttp://www.gbv.de/dms/bsz/toc/bsz118463411inh.pdf$$DInhaltsverzeichnis 04</addlink>\n <addlink>$$Uhttp://d-nb.info/975503499/04$$D04</addlink>\n <addlink>$$Uhttp://swbplus.bsz-bw.de/bsz118463411inh.htm$$DInhaltsverzeichnis</addlink>\n <lln05>$$TSerial_Link$$ESerialLink$$1UP(DE-627)231976704</lln05>\n </links>\n <search>\n <creatorcontrib>Christian von Coelln</creatorcontrib>\n <creatorcontrib>Christian, Von Coelln</creatorcontrib>\n <creatorcontrib>Coelln, C</creatorcontrib>\n <creatorcontrib>Von Coelln, C</creatorcontrib>\n <creatorcontrib>Christian von Coelln</creatorcontrib>\n <creatorcontrib>Herbert Bethge</creatorcontrib>\n <creatorcontrib>Hartmut Söhn Gutachter</creatorcontrib>\n <creatorcontrib>Bethge, H</creatorcontrib>\n <creatorcontrib>Söhn, H</creatorcontrib>\n <creatorcontrib>Coelln, Christian von</creatorcontrib>\n <creatorcontrib>Coelln C</creatorcontrib>\n <creatorcontrib>Bethge, Herbert</creatorcontrib>\n <creatorcontrib>Söhn, Hartmut [Gutachter]</creatorcontrib>\n <title>Zur Medienöffentlichkeit der Dritten Gewalt rechtliche Aspekte des Zugangs der Medien zur Rechtsprechung im Verfassungsstaat des Grundgesetzes</title>\n <description>Christian von Coelln behandelt die rechtlichen, insbesondere die verfassungsrechtlichen Fragen des Zugangs der Medien zur Rechtsprechung. Neben generellen Erwägungen zur Bedeutung der Medienöffentlichkeit der Dritten Gewalt für Demokratie und Rechtsstaat befaßt er sich u.a. mit der Teilnahme von Journalisten an mündlichen Verhandlungen und mit der Problematik von Bild- und Tonaufnahmen in Gerichtsgebäuden.(Quelle: Verlag).</description>\n <subject>Conduct of court proceedings Germany</subject>\n <subject>Constitutional law Germany</subject>\n <subject>Freedom of information Germany</subject>\n <subject>Hochschulschrift</subject>\n <subject>Deutschland</subject>\n <subject>Rechtsprechende Gewalt</subject>\n <subject>Öffentlichkeitsgrundsatz</subject>\n <subject>Informationsfreiheit</subject>\n <subject>Gerichtsberichterstattung</subject>\n <subject>Elektronische Medien</subject>\n <subject>Verbot</subject>\n <subject>Verfassungsmäßigkeit</subject>\n <subject>Gerichtsverhandlung</subject>\n <subject>Schallaufzeichnung</subject>\n <subject>Bildaufzeichnung</subject>\n <subject>Tonaufzeichnung</subject>\n <subject>Phonogramm</subject>\n <subject>Schallaufnahme</subject>\n <subject>Tonaufnahme</subject>\n <subject>Audioaufzeichnung</subject>\n <subject>Fonogramm</subject>\n <subject>Tondokument</subject>\n <subject>Schalldokument</subject>\n <subject>E-Medien</subject>\n <subject>Justizberichterstattung</subject>\n <subject>Prozessberichterstattung</subject>\n <subject>Prozess</subject>\n <subject>Deutsche Länder</subject>\n <subject>Germany</subject>\n <subject>Heiliges Römisches Reich</subject>\n <subject>Rheinbund</subject>\n <subject>Deutscher Bund</subject>\n <subject>Norddeutscher Bund</subject>\n <subject>Deutsches Reich</subject>\n <subject>BRD</subject>\n <subject>Federal Republic of Germany</subject>\n <subject>Republic of Germany</subject>\n <subject>Allemagne</subject>\n <subject>Ǧumhūrīyat Almāniyā al-Ittiḥādīya</subject>\n <subject>Bundesrepublik Deutschland</subject>\n <subject>Niemcy</subject>\n <subject>République Fédérale d'Allemagne</subject>\n <subject>Repubblica Federale di Germania</subject>\n <subject>Germanija</subject>\n <subject>Federativnaja Respublika Germanija</subject>\n <subject>FRG</subject>\n <subject>Deyizhi-Lianbang-Gongheguo</subject>\n <subject>Informationsanspruch</subject>\n <subject>Recht auf Information</subject>\n <subject>Grundrecht</subject>\n <subject>Gerichtsöffentlichkeit</subject>\n <subject>Öffentlichkeit</subject>\n <subject>Judikative</subject>\n <subject>Dritte Gewalt</subject>\n <subject>Bundesverfassungsgericht</subject>\n <subject>Federal Constitutional Court</subject>\n <subject>Constitutional Court</subject>\n <subject>Pressestelle</subject>\n <subject>Cour Constitutionnelle Fédérale</subject>\n <subject>Savezni Ustavni Sud</subject>\n <subject>Savezni Ustavni Sud Nemačke</subject>\n <subject>De guo lian bang xian fa fa yuan</subject>\n <subject>BVerfG</subject>\n <subject>BVerfGK</subject>\n <subject>Conduct of court proceedings -- Germany; Constitutional law -- Germany; Freedom of information -- Germany; Hochschulschrift</subject>\n <subject>Deutschland / Rechtsprechende Gewalt / Öffentlichkeitsgrundsatz / Informationsfreiheit</subject>\n <subject>Deutschland / Gerichtsberichterstattung / Elektronische Medien / Verbot / Verfassungsmäßigkeit</subject>\n <subject>Deutschland / Gerichtsverhandlung / Schallaufzeichnung / Bildaufzeichnung</subject>\n <general>Mohr Siebeck</general>\n <general>Zugl.: Passau, Univ., Habil.-Schr., 2004</general>\n <sourceid>MAN_ALMA</sourceid>\n <recordid>MAN_ALMA21126560510002561</recordid>\n <isbn>3161486617</isbn>\n <isbn>9783161486616</isbn>\n <rsrctype>book</rsrctype>\n <creationdate>2005</creationdate>\n <startdate>20050101</startdate>\n <enddate>20051231</enddate>\n <addtitle>Jus publicum 138</addtitle>\n <addtitle>Ius publicum 138</addtitle>\n <addsrcrecordid>990016187190402561</addsrcrecordid>\n <addsrcrecordid>KPLUS492418942</addsrcrecordid>\n <addsrcrecordid>BSZ118463411</addsrcrecordid>\n <addsrcrecordid>OCLC238724886</addsrcrecordid>\n <addsrcrecordid>OCLC62185846</addsrcrecordid>\n <searchscope>MAN_ALMA</searchscope>\n <searchscope>MAN</searchscope>\n <scope>MAN_ALMA</scope>\n <scope>MAN</scope>\n <lsr01>UP(DE-627)492418942</lsr01>\n <lsr02>DN990000639400402561</lsr02>\n <lsr02>DN990016187190402561</lsr02>\n <lsr07>SPE990016187190402561</lsr07>\n <lsr24>LS300</lsr24>\n <lsr25>341 PH 4520 C672</lsr25>\n <lsr25>341PH4520C672</lsr25>\n <lsr30>PG 430</lsr30>\n </search>\n <sort>\n <title>Zur Medienöffentlichkeit der Dritten Gewalt rechtliche Aspekte des Zugangs der Medien zur Rechtsprechung im Verfassungsstaat des Grundgesetzes</title>\n <creationdate>2005</creationdate>\n <author>Coelln, Christian von 1967-</author>\n </sort>\n <facets>\n <language>ger</language>\n <creationdate>2005</creationdate>\n <topic>Conduct of court proceedingsGermany</topic>\n <topic>Constitutional lawGermany</topic>\n <topic>Freedom of informationGermany</topic>\n <collection>MANLS300</collection>\n <toplevel>printmedia</toplevel>\n <prefilter>books</prefilter>\n <rsrctype>books</rsrctype>\n <creatorcontrib>Coelln, Christian von</creatorcontrib>\n <creatorcontrib>Bethge, Herbert</creatorcontrib>\n <creatorcontrib>Söhn, Hartmut</creatorcontrib>\n <genre>Hochschulschrift</genre>\n <atoz>Z</atoz>\n <lfc04>MAN09</lfc04>\n <lfc14>DOM11</lfc14>\n <newrecords>20160104_120</newrecords>\n <frbrgroupid>140711198</frbrgroupid>\n <frbrtype>6</frbrtype>\n </facets>\n <dedup>\n <t>1</t>\n <c2>3161486617</c2>\n <c3>zurmedienoeffentlichndgesetzes</c3>\n <c4>2005</c4>\n <c5>990016187190402561</c5>\n <f3>3161486617</f3>\n <f5>zurmedienoeffentlichndgesetzes</f5>\n <f6>2005</f6>\n <f7>zur medienoeffentlichkeit der dritten gewalt rechtliche aspekte des zugangs der medien zur rechtsprechung im verfassungsstaat des grundgesetzes</f7>\n <f8>xx</f8>\n <f9>XXX, 575 S.</f9>\n <f10>mohr siebeck</f10>\n <f11>coelln christian von 1967</f11>\n <f20>990016187190402561</f20>\n </dedup>\n <frbr>\n <t>1</t>\n <k1>$$Kcoelln christian von 1967$$AA</k1>\n <k3>$$Kzur medienoeffentlichkeit der dritten gewalt rechtliche aspekte des zugangs der medien zur rechtsprechung im verfassungsstaat des grundgesetzes$$AT</k3>\n </frbr>\n <delivery>\n <institution>MAN</institution>\n <delcategory>Alma-P</delcategory>\n </delivery>\n <enrichment>\n <classificationlcc>KK5162</classificationlcc>\n </enrichment>\n <ranking>\n <booster1>1</booster1>\n <booster2>1</booster2>\n </ranking>\n <addata>\n <aulast>Coelln</aulast>\n <aulast>Bethge</aulast>\n <aulast>Söhn</aulast>\n <aufirst>Christian von</aufirst>\n <aufirst>Herbert</aufirst>\n <aufirst>Hartmut</aufirst>\n <au>Coelln, Christian von</au>\n <addau>Bethge, Herbert</addau>\n <addau>Söhn, Hartmut</addau>\n <btitle>Zur Medienöffentlichkeit der Dritten Gewalt rechtliche Aspekte des Zugangs der Medien zur Rechtsprechung im Verfassungsstaat des Grundgesetzes</btitle>\n <seriestitle>Jus publicum; 138</seriestitle>\n <date>2005</date>\n <risdate>2005</risdate>\n <isbn>3161486617</isbn>\n <format>dissertation</format>\n <ristype>THES</ristype>\n <notes>Zugl.: Passau, Univ., Habil.-Schr., 2004</notes>\n <abstract>Christian von Coelln behandelt die rechtlichen, insbesondere die verfassungsrechtlichen Fragen des Zugangs der Medien zur Rechtsprechung. Neben generellen Erwägungen zur Bedeutung der Medienöffentlichkeit der Dritten Gewalt für Demokratie und Rechtsstaat befaßt er sich u.a. mit der Teilnahme von Journalisten an mündlichen Verhandlungen und mit der Problematik von Bild- und Tonaufnahmen in Gerichtsgebäuden.(Quelle: Verlag).</abstract>\n <cop>Tübingen</cop>\n <mis1>21126560510002561</mis1>\n <oclcid>238724886</oclcid>\n <oclcid>62185846</oclcid>\n </addata>\n <browse>\n <author>$$DCoelln, Christian von 1967-$$ECoelln, Christian von 1967-$$PY</author>\n <author>$$DBethge, Herbert 1939-$$EBethge, Herbert 1939-$$I121557006</author>\n <author>$$DSöhn, Hartmut$$ESöhn, Hartmut$$PY</author>\n <title>$$DZur Medienöffentlichkeit der Dritten Gewalt rechtliche Aspekte des Zugangs der Medien zur Rechtsprechung im Verfassungsstaat des Grundgesetzes$$EZur Medienöffentlichkeit der Dritten Gewalt rechtliche Aspekte des Zugangs der Medien zur Rechtsprechung im Verfassungsstaat des Grundgesetzes</title>\n <title>$$DJus publicum$$EJus publicum</title>\n <title>$$DIus publicum 13800$$EIus publicum 13800</title>\n <subject>$$DConduct of court proceedings -- Germany$$EConduct of court proceedings Germany</subject>\n <subject>$$DConstitutional law -- Germany$$EConstitutional law Germany</subject>\n <subject>$$DFreedom of information -- Germany$$EFreedom of information Germany</subject>\n <subject>$$DHochschulschrift$$EHochschulschrift$$Tgnd-content$$I(DE-588)4113937-9 (DE-627)105825778 (DE-576)209480580</subject>\n <institution>MAN</institution>\n </browse>\n</record>\n",
"items": [
{
"itemType": "book",
"title": "Zur Medienöffentlichkeit der Dritten Gewalt rechtliche Aspekte des Zugangs der Medien zur Rechtsprechung im Verfassungsstaat des Grundgesetzes",
"creators": [
{
"firstName": "Christian von",
"lastName": "Coelln",
"creatorType": "author"
},
{
"firstName": "Herbert",
"lastName": "Bethge",
"creatorType": "contributor"
},
{
"firstName": "Hartmut",
"lastName": "Söhn",
"creatorType": "contributor"
}
],
"date": "2005",
"ISBN": "3161486617",
"abstractNote": "Zugl.: Passau, Univ., Habil.-Schr., 2004, Christian von Coelln behandelt die rechtlichen, insbesondere die verfassungsrechtlichen Fragen des Zugangs der Medien zur Rechtsprechung. Neben generellen Erwägungen zur Bedeutung der Medienöffentlichkeit der Dritten Gewalt für Demokratie und Rechtsstaat befaßt er sich u.a. mit der Teilnahme von Journalisten an mündlichen Verhandlungen und mit der Problematik von Bild- und Tonaufnahmen in Gerichtsgebäuden.(Quelle: Verlag).",
"callNumber": "341 PH 4520 C672",
"language": "ger",
"numPages": "xxx+575",
"place": "Tübingen",
"publisher": "Mohr Siebeck",
"series": "Jus publicum",
"seriesNumber": "138",
"attachments": [],
"tags": [
{
"tag": "Bildaufzeichnung"
},
{
"tag": "Conduct of court proceedings"
},
{
"tag": "Deutschland"
},
{
"tag": "Deutschland"
},
{
"tag": "Deutschland"
},
{
"tag": "Elektronische Medien"
},
{
"tag": "Gerichtsberichterstattung"
},
{
"tag": "Gerichtsverhandlung"
},
{
"tag": "Germany; Constitutional law"
},
{
"tag": "Germany; Freedom of information"
},
{
"tag": "Germany; Hochschulschrift"
},
{
"tag": "Informationsfreiheit"
},
{
"tag": "Rechtsprechende Gewalt"
},
{
"tag": "Schallaufzeichnung"
},
{
"tag": "Verbot"
},
{
"tag": "Verfassungsmäßigkeit"
},
{
"tag": "Öffentlichkeitsgrundsatz"
}
],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "import",
"input": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<record xmlns=\"http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib\" xmlns:sear=\"http://www.exlibrisgroup.com/xsd/jaguar/search\">\n <control>\n <sourcerecordid>21150834900003766</sourcerecordid>\n <sourceid>01CTW_CC_ALMA</sourceid>\n <recordid>01CTW_CC_ALMA21150834900003766</recordid>\n <originalsourceid>01CTW_CC</originalsourceid>\n <sourceformat>MARC21</sourceformat>\n <sourcesystem>Alma</sourcesystem>\n <almaid>01CTW_CC/21150834900003766</almaid>\n <almaid>01CTW_CC:21150834900003766</almaid>\n </control>\n <display>\n <type>print_book</type>\n <title>The sea</title>\n <creator>John Crompton 1893-1972</creator>\n <publisher>New York, NY : Nick Lyons Books</publisher>\n <creationdate>1988</creationdate>\n <format>x, 233, [1] p. ; 21 cm..</format>\n <identifier>$$CISBN$$V0941130835 (pbk.) :</identifier>\n <subject>Marine biology</subject>\n <language>eng</language>\n <source>01CTW_CC_ALMA</source>\n <availlibrary>$$I01CTW_CC$$L01CTW_CC_CCSHAIN$$1CC - Main Book Collection (call numbers A-G level 2; H-Z level 3)$$2(QH91 C76 1988)$$Savailable$$X01CTW_CC$$YCCSHAIN$$ZCSTACKS$$P1</availlibrary>\n <notes>Bibliography: p. [234].</notes>\n <lds01>992232803503766</lds01>\n <lds02>01CTW_CC_ALMA21150834900003766</lds02>\n <lds03>Reprint. Originally published: New York : Doubleday, 1957. With new introd.</lds03>\n <lds03>Includes index.</lds03>\n <lds03>Armington Social Values Collection.</lds03>\n <lds07>Committed to retain for Eastern Academic Scholars' Trust</lds07>\n <availinstitution>$$I01CTW_CC$$Savailable</availinstitution>\n <availpnx>available</availpnx>\n </display>\n <links>\n <thumbnail>$$Tamazon_thumb</thumbnail>\n <thumbnail>$$Tgoogle_thumb</thumbnail>\n <linktouc>$$Tworldcat_isbn$$Eworldcat</linktouc>\n <uri>$$Aisbn$$V0941130835$$U(uri) http://www.isbnsearch.org/isbn/0941130835</uri>\n <uri>$$Aoclc_nr$$V(OCoLC)ocm17412356$$U(uri) http://www.worldcat.org/oclc/17412356</uri>\n <uri>$$Acreatorcontrib$$VCrompton, John$$U(uri) http://id.loc.gov/authorities/names/n85809864$$U(uri) http://viaf.org/viaf/sourceID/LC|n85809864</uri>\n <uri>$$Asubject$$VMarine biology$$U(uri) http://id.loc.gov/authorities/subjects/sh85081138</uri>\n </links>\n <search>\n <creatorcontrib>John, Crompton 1893-1972.</creatorcontrib>\n <creatorcontrib>John Battersby Crompton, Lamburn 1893-</creatorcontrib>\n <creatorcontrib>Crompton, J</creatorcontrib>\n <creatorcontrib>Lamburn, J</creatorcontrib>\n <creatorcontrib>John Crompton ; with 24 drawings by Denys Ovenden ; [introduction by Robert F. Jones].</creatorcontrib>\n <title>The sea /</title>\n <subject>Marine biology.</subject>\n <subject>Biological oceanography</subject>\n <subject>Ocean biology</subject>\n <subject>Oceanic biology</subject>\n <subject>Sea biology</subject>\n <general>Nick Lyons Books,</general>\n <general>Reprint. Originally published: New York : Doubleday, 1957. With new introd.</general>\n <general>Includes index.</general>\n <general>Armington Social Values Collection.</general>\n <sourceid>01CTW_CC_ALMA</sourceid>\n <recordid>01CTW_CC_ALMA21150834900003766</recordid>\n <isbn>0941130835</isbn>\n <rsrctype>print_book</rsrctype>\n <creationdate>1988</creationdate>\n <creationdate>1957</creationdate>\n <startdate>19880101</startdate>\n <enddate>19881231</enddate>\n <addsrcrecordid>992232803503766</addsrcrecordid>\n <searchscope>01CTW_CC_ALMA</searchscope>\n <searchscope>01CTW_CC</searchscope>\n <searchscope>CC_CC_P</searchscope>\n <searchscope>CC_WU_P</searchscope>\n <searchscope>CC_TC_P</searchscope>\n <scope>01CTW_CC_ALMA</scope>\n <scope>01CTW_CC</scope>\n <scope>CC_CC_P</scope>\n <scope>CC_WU_P</scope>\n <scope>CC_TC_P</scope>\n <lsr02>(OCoLC)ocm17412356</lsr02>\n <lsr02>(CtNlC)223280-conndb-Voyager</lsr02>\n </search>\n <sort>\n <title>sea /</title>\n <creationdate>1988</creationdate>\n <author>Crompton, John, 1893-1972.</author>\n </sort>\n <facets>\n <language>eng</language>\n <creationdate>1988</creationdate>\n <topic>Marine biology</topic>\n <toplevel>available</toplevel>\n <prefilter>print_books</prefilter>\n <rsrctype>print_books</rsrctype>\n <creatorcontrib>Crompton, John</creatorcontrib>\n <library>01CTW_CC_CCSHAIN</library>\n <atoz>S</atoz>\n <lfc01>CC - Main Book Collection (call numbers A-G level 2; H-Z level 3)</lfc01>\n <lfc03>CC - Main Book Collection (call numbers A-G level 2; H-Z level 3)</lfc03>\n <lfc02>01CTW_CC</lfc02>\n <classificationlcc>Q - Science.Natural history (General)General Including nature conservation, geographical distribution</classificationlcc>\n <newrecords>20170628_481</newrecords>\n <frbrgroupid>1168449273</frbrgroupid>\n <frbrtype>6</frbrtype>\n </facets>\n <dedup>\n <t>99</t>\n <c1>88000538</c1>\n <c2>0941130835</c2>\n <c3>sea</c3>\n <c4>1988</c4>\n <c5>992232803503766</c5>\n <f1>88000538</f1>\n <f3>0941130835</f3>\n <f5>sea</f5>\n <f6>1988</f6>\n <f7>sea</f7>\n <f8>nyu</f8>\n <f9>x, 233, [1] p. ;</f9>\n <f10>nick lyons books</f10>\n <f11>crompton john 1893 1972</f11>\n <f20>992232803503766</f20>\n </dedup>\n <frbr>\n <t>99</t>\n <k1>$$K01CTW_CC_ALMA21150834900003766$$AA</k1>\n <k3>$$Ksea$$AT</k3>\n </frbr>\n <delivery>\n <institution>01CTW_CC</institution>\n <delcategory>Alma-P</delcategory>\n </delivery>\n <enrichment>\n <classificationlcc>QH91</classificationlcc>\n </enrichment>\n <ranking>\n <booster1>1</booster1>\n <booster2>1</booster2>\n </ranking>\n <addata>\n <aulast>Crompton</aulast>\n <aufirst>John,</aufirst>\n <au>Crompton, John</au>\n <btitle>The sea</btitle>\n <date>1988</date>\n <risdate>1988</risdate>\n <isbn>0941130835</isbn>\n <format>book</format>\n <genre>unknown</genre>\n <ristype>BOOK</ristype>\n <notes>Bibliography: p. [234].</notes>\n <cop>New York, NY</cop>\n <pub>Nick Lyons Books</pub>\n <mis1>21150834900003766</mis1>\n <oclcid>17412356</oclcid>\n <lccn>88000538</lccn>\n </addata>\n <browse>\n <author>$$DCrompton, John, 1893-1972$$ECrompton, John, 1893-1972$$I41-LIBRARY_OF_CONGRESS-n 85809864$$PY</author>\n <author>$$Dnna Lamburn, John Battersby Crompton, 1893-$$Enna Lamburn, John Battersby Crompton, 1893-$$I41-LIBRARY_OF_CONGRESS-n 85809864$$PN</author>\n <title>$$DThe sea$$Esea</title>\n <subject>$$DMarine biology$$EMarine biology$$TLCSH$$I41-LIBRARY_OF_CONGRESS-sh 85081138$$PY</subject>\n <subject>$$DBiological oceanography$$EBiological oceanography$$TLCSH$$I41-LIBRARY_OF_CONGRESS-sh 85081138$$PN</subject>\n <subject>$$DOcean biology$$EOcean biology$$TLCSH$$I41-LIBRARY_OF_CONGRESS-sh 85081138$$PN</subject>\n <subject>$$DOceanic biology$$EOceanic biology$$TLCSH$$I41-LIBRARY_OF_CONGRESS-sh 85081138$$PN</subject>\n <subject>$$DSea biology$$ESea biology$$TLCSH$$I41-LIBRARY_OF_CONGRESS-sh 85081138$$PN</subject>\n <callnumber>$$I01CTW_CC$$DQH91 C76 1988$$E0qh 0009176000. 19880 $$T0</callnumber>\n <institution>01CTW_CC</institution>\n </browse>\n</record>",
"items": [
{
"itemType": "book",
"title": "The sea",
"creators": [
{
"firstName": "John",
"lastName": "Crompton",
"creatorType": "author"
}
],
"date": "1988",
"ISBN": "0941130835",
"callNumber": "QH91 C76 1988",
"language": "eng",
"numPages": "1",
"place": "New York, NY",
"publisher": "Nick Lyons Books",
"attachments": [],
"tags": [
{
"tag": "Marine biology"
}
],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "import",
"input": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<record xmlns=\"http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib\">\n <control>\n <sourceid>springer</sourceid>\n <recordid>cdi_springer_books_10_1007_978_3_030_63396_7_25</recordid>\n <sourceformat>XML</sourceformat>\n <sourcesystem>Other</sourcesystem>\n <sourcerecordid>springer_books_10_1007_978_3_030_63396_7_25</sourcerecordid>\n <originalsourceid>FETCH-LOGICAL-s1418-315a6625e206432bee12b281c3f312135a36281cc7330c5908f38a100fa2a693</originalsourceid>\n <addsrcrecordid>eNpFkM1OwzAQhM2fRCl9Aw5-AcPaGzsJtyripygIJHq3Nq6DAk1c2by_cAuC02hnpNHOx9iVhGsJUN7UZSVQAIIwiLURpVX6iF1gdg5GfcxmsjJaSNTm5D_QcPoXFNU5W6T0AQCqUKgLOWNPb8ENtOXPfjMQX407cl88THzpaOPHwfFXH_sQR5qcv-WtTylMKSvFyW94H8PIGxp9DGG6ZGc9bZNf_Oqcre_v1s2jaF8eVs2yFUkWMq-QmoxR2iswBarOe6k6VUmHPUqV3yc0-9OViOB0DVWPFWUIPSkyNc6Z-qlNuzhM7z7aLoTPZCXYPSmbSVm0eb49gLF7UvgNXsVVHQ</addsrcrecordid>\n <sourcetype>Publisher</sourcetype>\n <isCDI>true</isCDI>\n <recordtype>book_chapter</recordtype>\n </control>\n <display>\n <type>book_chapter</type>\n <title>Social Media Impact on Academic Performance: Lessons Learned from Cameroon</title>\n <source>Springer Books</source>\n <source>Springer Computer Science eBooks 2020 English/International</source>\n <creator>Kuika Watat, Josue ; Jonathan, Gideon Mekonnen ; Ntsafack Dongmo, Frank Wilson ; Zine El Abidine, Nour El Houda</creator>\n <creatorcontrib>Kuika Watat, Josue ; Jonathan, Gideon Mekonnen ; Ntsafack Dongmo, Frank Wilson ; Zine El Abidine, Nour El Houda</creatorcontrib>\n <description>The continuously improving Internet penetration in the continent, coupled with the increasing number of smartphone users in Africa has been considered as the reasons for the adoption of social media among students and other adolescents. Even though this development has been recognizing in the literature, only a few studies have investigated the acceptance, use, and retention of social media for academic purposes. However, findings of prior studies suggest that the use of social media has an influence on academic performance. To address the lack of knowledge on the adoption of social media among students, this study aims to explore the factors that are related to students acceptance and use of social media. We attempt to extend the Technology Acceptance Model by integrating relational engagement, Perceived Satisfaction, as well as the Perspective of the Use of Social Media in Education. The proposed theoretical model was evaluated using quantitative data collected from 460 students in Cameroon. We applied PLS-SEM technique to test the hypotheses and the theoretical model. Implications of the findings, as well as future research directions, are presented.</description>\n <identifier>ISSN: 1865-1348</identifier>\n <identifier>ISBN: 3030633950</identifier>\n <identifier>ISBN: 9783030633950</identifier>\n <identifier>EISSN: 1865-1356</identifier>\n <identifier>EISBN: 3030633969</identifier>\n <identifier>EISBN: 9783030633967</identifier>\n <identifier>DOI: 10.1007/978-3-030-63396-7_25</identifier>\n <language>eng</language>\n <publisher>Cham: Springer International Publishing</publisher>\n <subject>Academic performance ; Africa ; Relational commitment ; Social media ; TAM</subject>\n <ispartof>Information Systems, 2020-11-21, p.370-379</ispartof>\n <rights>Springer Nature Switzerland AG 2020</rights>\n <orcidid>0000-0003-4673-3800 ; 0000-0001-6360-7641</orcidid>\n <relation>Lecture Notes in Business Information Processing</relation>\n </display>\n <links>\n <openurl>$$Topenurl_article</openurl>\n <openurlfulltext>$$Topenurlfull_article</openurlfulltext>\n <thumbnail>$$Usyndetics_thumb_exl</thumbnail>\n <linktopdf>$$Uhttps://link.springer.com/content/pdf/10.1007/978-3-030-63396-7_25$$EPDF$$P50$$Gspringer$$H</linktopdf>\n <linktohtml>$$Uhttps://link.springer.com/10.1007/978-3-030-63396-7_25$$EHTML$$P50$$Gspringer$$H</linktohtml>\n </links>\n <search>\n <creatorcontrib>Kuika Watat, Josue</creatorcontrib>\n <creatorcontrib>Jonathan, Gideon Mekonnen</creatorcontrib>\n <creatorcontrib>Ntsafack Dongmo, Frank Wilson</creatorcontrib>\n <creatorcontrib>Zine El Abidine, Nour El Houda</creatorcontrib>\n <title>Social Media Impact on Academic Performance: Lessons Learned from Cameroon</title>\n <title>Information Systems</title>\n <description>The continuously improving Internet penetration in the continent, coupled with the increasing number of smartphone users in Africa has been considered as the reasons for the adoption of social media among students and other adolescents. Even though this development has been recognizing in the literature, only a few studies have investigated the acceptance, use, and retention of social media for academic purposes. However, findings of prior studies suggest that the use of social media has an influence on academic performance. To address the lack of knowledge on the adoption of social media among students, this study aims to explore the factors that are related to students acceptance and use of social media. We attempt to extend the Technology Acceptance Model by integrating relational engagement, Perceived Satisfaction, as well as the Perspective of the Use of Social Media in Education. The proposed theoretical model was evaluated using quantitative data collected from 460 students in Cameroon. We applied PLS-SEM technique to test the hypotheses and the theoretical model. Implications of the findings, as well as future research directions, are presented.</description>\n <subject>Academic performance</subject>\n <subject>Africa</subject>\n <subject>Relational commitment</subject>\n <subject>Social media</subject>\n <subject>TAM</subject>\n <issn>1865-1348</issn>\n <issn>1865-1356</issn>\n <isbn>3030633950</isbn>\n <isbn>9783030633950</isbn>\n <isbn>3030633969</isbn>\n <isbn>9783030633967</isbn>\n <fulltext>true</fulltext>\n <rsrctype>book_chapter</rsrctype>\n <creationdate>2020</creationdate>\n <recordtype>book_chapter</recordtype>\n <sourceid/>\n <recordid>eNpFkM1OwzAQhM2fRCl9Aw5-AcPaGzsJtyripygIJHq3Nq6DAk1c2by_cAuC02hnpNHOx9iVhGsJUN7UZSVQAIIwiLURpVX6iF1gdg5GfcxmsjJaSNTm5D_QcPoXFNU5W6T0AQCqUKgLOWNPb8ENtOXPfjMQX407cl88THzpaOPHwfFXH_sQR5qcv-WtTylMKSvFyW94H8PIGxp9DGG6ZGc9bZNf_Oqcre_v1s2jaF8eVs2yFUkWMq-QmoxR2iswBarOe6k6VUmHPUqV3yc0-9OViOB0DVWPFWUIPSkyNc6Z-qlNuzhM7z7aLoTPZCXYPSmbSVm0eb49gLF7UvgNXsVVHQ</recordid>\n <startdate>20201121</startdate>\n <enddate>20201121</enddate>\n <creator>Kuika Watat, Josue</creator>\n <creator>Jonathan, Gideon Mekonnen</creator>\n <creator>Ntsafack Dongmo, Frank Wilson</creator>\n <creator>Zine El Abidine, Nour El Houda</creator>\n <general>Springer International Publishing</general>\n <scope/>\n <orcidid>https://orcid.org/0000-0003-4673-3800</orcidid>\n <orcidid>https://orcid.org/0000-0001-6360-7641</orcidid>\n </search>\n <sort>\n <creationdate>20201121</creationdate>\n <title>Social Media Impact on Academic Performance: Lessons Learned from Cameroon</title>\n <author>Kuika Watat, Josue ; Jonathan, Gideon Mekonnen ; Ntsafack Dongmo, Frank Wilson ; Zine El Abidine, Nour El Houda</author>\n </sort>\n <facets>\n <frbrtype>5</frbrtype>\n <frbrgroupid>cdi_FETCH-LOGICAL-s1418-315a6625e206432bee12b281c3f312135a36281cc7330c5908f38a100fa2a693</frbrgroupid>\n <rsrctype>book_chapters</rsrctype>\n <prefilter>book_chapters</prefilter>\n <language>eng</language>\n <creationdate>2020</creationdate>\n <topic>Academic performance</topic>\n <topic>Africa</topic>\n <topic>Relational commitment</topic>\n <topic>Social media</topic>\n <topic>TAM</topic>\n <toplevel>online_resources</toplevel>\n <creatorcontrib>Kuika Watat, Josue</creatorcontrib>\n <creatorcontrib>Jonathan, Gideon Mekonnen</creatorcontrib>\n <creatorcontrib>Ntsafack Dongmo, Frank Wilson</creatorcontrib>\n <creatorcontrib>Zine El Abidine, Nour El Houda</creatorcontrib>\n <jtitle>Information Systems</jtitle>\n </facets>\n <delivery>\n <delcategory>Remote Search Resource</delcategory>\n <fulltext>fulltext</fulltext>\n </delivery>\n <addata>\n <au>Kuika Watat, Josue</au>\n <au>Jonathan, Gideon Mekonnen</au>\n <au>Ntsafack Dongmo, Frank Wilson</au>\n <au>Zine El Abidine, Nour El Houda</au>\n <format>book</format>\n <genre>bookitem</genre>\n <ristype>GEN</ristype>\n <atitle>Social Media Impact on Academic Performance: Lessons Learned from Cameroon</atitle>\n <btitle>Information Systems</btitle>\n <seriestitle>Lecture Notes in Business Information Processing</seriestitle>\n <date>2020-11-21</date>\n <risdate>2020</risdate>\n <spage>370</spage>\n <epage>379</epage>\n <pages>370-379</pages>\n <issn>1865-1348</issn>\n <eissn>1865-1356</eissn>\n <isbn>3030633950</isbn>\n <isbn>9783030633950</isbn>\n <eisbn>3030633969</eisbn>\n <eisbn>9783030633967</eisbn>\n <abstract>The continuously improving Internet penetration in the continent, coupled with the increasing number of smartphone users in Africa has been considered as the reasons for the adoption of social media among students and other adolescents. Even though this development has been recognizing in the literature, only a few studies have investigated the acceptance, use, and retention of social media for academic purposes. However, findings of prior studies suggest that the use of social media has an influence on academic performance. To address the lack of knowledge on the adoption of social media among students, this study aims to explore the factors that are related to students acceptance and use of social media. We attempt to extend the Technology Acceptance Model by integrating relational engagement, Perceived Satisfaction, as well as the Perspective of the Use of Social Media in Education. The proposed theoretical model was evaluated using quantitative data collected from 460 students in Cameroon. We applied PLS-SEM technique to test the hypotheses and the theoretical model. Implications of the findings, as well as future research directions, are presented.</abstract>\n <cop>Cham</cop>\n <pub>Springer International Publishing</pub>\n <doi>10.1007/978-3-030-63396-7_25</doi>\n <orcidid>https://orcid.org/0000-0003-4673-3800</orcidid>\n <orcidid>https://orcid.org/0000-0001-6360-7641</orcidid>\n </addata>\n</record>",
"items": [
{
"itemType": "bookSection",
"title": "Social Media Impact on Academic Performance: Lessons Learned from Cameroon",
"creators": [
{
"firstName": "Josue",
"lastName": "Kuika Watat",
"creatorType": "author"
},
{
"firstName": "Gideon Mekonnen",
"lastName": "Jonathan",
"creatorType": "author"
},
{
"firstName": "Frank Wilson",
"lastName": "Ntsafack Dongmo",
"creatorType": "author"
},
{
"firstName": "Nour El Houda",
"lastName": "Zine El Abidine",
"creatorType": "author"
}
],
"date": "2020",
"ISBN": "3030633950",
"abstractNote": "The continuously improving Internet penetration in the continent, coupled with the increasing number of smartphone users in Africa has been considered as the reasons for the adoption of social media among students and other adolescents. Even though this development has been recognizing in the literature, only a few studies have investigated the acceptance, use, and retention of social media for academic purposes. However, findings of prior studies suggest that the use of social media has an influence on academic performance. To address the lack of knowledge on the adoption of social media among students, this study aims to explore the factors that are related to students acceptance and use of social media. We attempt to extend the Technology Acceptance Model by integrating relational engagement, Perceived Satisfaction, as well as the Perspective of the Use of Social Media in Education. The proposed theoretical model was evaluated using quantitative data collected from 460 students in Cameroon. We applied PLS-SEM technique to test the hypotheses and the theoretical model. Implications of the findings, as well as future research directions, are presented.",
"bookTitle": "Information Systems",
"language": "eng",
"pages": "370379",
"place": "Cham",
"publisher": "Springer International Publishing",
"series": "Lecture Notes in Business Information Processing",
"attachments": [],
"tags": [
{
"tag": "Academic performance"
},
{
"tag": "Africa"
},
{
"tag": "Relational commitment"
},
{
"tag": "Social media"
},
{
"tag": "TAM"
}
],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "import",
"input": "<?xml version=\"1.0\" encoding=\"UTF-8\"?><record xmlns=\"http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib\" xmlns:sear=\"http://www.exlibrisgroup.com/xsd/jaguar/search\"><delivery><availabilityLinks>detailsgetit1</availabilityLinks><displayLocation>true</displayLocation><recordOwner>49KOBV_FUB</recordOwner><physicalServiceId>null</physicalServiceId><sharedDigitalCandidates>null</sharedDigitalCandidates><link><displayLabel>thumbnail</displayLabel><linkURL>https://proxy-eu.hosted.exlibrisgroup.com/exl_rewrite/books.google.com/books?bibkeys=ISBN:9781784744069,OCLC:,LCCN:&amp;jscmd=viewapi&amp;callback=updateGBSCover</linkURL><linkType>thumbnail</linkType><id>:_0</id></link><availability>unavailable</availability><additionalLocations>false</additionalLocations><digitalAuxiliaryMode>false</digitalAuxiliaryMode><holding><matchForHoldings><holdingRecord>852##b</holdingRecord><matchOn>MainLocation</matchOn></matchForHoldings><subLocationCode>EB/1</subLocationCode><volumeFilter>null</volumeFilter><ilsApiId>9959861162102883</ilsApiId><callNumberType>8</callNumberType><libraryCode>920</libraryCode><yearFilter>null</yearFilter><boundWith>false</boundWith><stackMapUrl>http://infosystem.philbib.de?sig={call_number}</stackMapUrl><isValidUser>true</isValidUser><mainLocation>Philologische Bibliothek</mainLocation><callNumber/><adaptorid>ALMA_01</adaptorid><organization>49KOBV_FUB</organization><holdingURL>OVP</holdingURL><availabilityStatus>unavailable</availabilityStatus><id>_:0</id><subLocation>Ebene 1</subLocation><holdId>221106260200002883</holdId><holKey>HoldingResultKey [mid=221106260200002883, libraryId=398792270002883, locationCode=EB/1, callNumber=null]</holKey><singleUnavailableItemProcessType>null</singleUnavailableItemProcessType><relatedTitle>null</relatedTitle></holding><bestlocation><matchForHoldings><holdingRecord>852##b</holdingRecord><matchOn>MainLocation</matchOn></matchForHoldings><subLocationCode>EB/1</subLocationCode><volumeFilter>null</volumeFilter><ilsApiId>9959861162102883</ilsApiId><callNumberType>8</callNumberType><libraryCode>920</libraryCode><yearFilter>null</yearFilter><boundWith>false</boundWith><stackMapUrl>http://infosystem.philbib.de?sig={call_number}</stackMapUrl><isValidUser>true</isValidUser><mainLocation>Philologische Bibliothek</mainLocation><callNumber/><adaptorid>ALMA_01</adaptorid><organization>49KOBV_FUB</organization><holdingURL>OVP</holdingURL><availabilityStatus>unavailable</availabilityStatus><id>_:0</id><subLocation>Ebene 1</subLocation><holdId>221106260200002883</holdId><holKey>HoldingResultKey [mid=221106260200002883, libraryId=398792270002883, locationCode=EB/1, callNumber=null]</holKey><singleUnavailableItemProcessType>null</singleUnavailableItemProcessType><relatedTitle>null</relatedTitle></bestlocation><electronicServices>null</electronicServices><feDisplayOtherLocations>false</feDisplayOtherLocations><hasD>null</hasD><hideResourceSharing>false</hideResourceSharing><hasFilteredServices>null</hasFilteredServices><physicalItemTextCodes>null</physicalItemTextCodes><quickAccessService>null</quickAccessService><recordInstitutionCode>null</recordInstitutionCode><displayedAvailability>null</displayedAvailability><deliveryCategory>Alma-P</deliveryCategory><serviceMode>ovp</serviceMode><filteredByGroupServices>null</filteredByGroupServices><GetIt1><links><isLinktoOnline>false</isLinktoOnline><displayText>null</displayText><inst4opac>49KOBV_FUB</inst4opac><getItTabText>service_getit</getItTabText><adaptorid>ALMA_01</adaptorid><ilsApiId>9959861162102883</ilsApiId><link>OVP</link><id>_:0</id></links><category>Alma-P</category></GetIt1></delivery><search><creationdate>2021</creationdate><creator>Galgut, Damon 1963-</creator><sort_journal_title>&lt;&lt;The&gt;&gt; promise /</sort_journal_title><sort_title>&lt;&lt;The&gt;&gt; promise / Damon Galgut.</sort_title><sort_creationdate_full>2021</sort_creationdate_full><subject>Fiktionale Darstellung</subject><subject>South Africa / Fiction</subject><isbn>9781473584464</isbn><isbn>1473584469</isbn><isbn>1784744077</isbn><isbn>9781784744076</isbn><isbn>1784744069</isbn><isbn>9781784744069</isbn><local_fields>969 BV047362611</local_fields><local_fields>942 05</local_fields><local_fields>940 RDA-Aufnahme</local_fields><description>&quot;The Promise charts the crash and burn of a white South African family, living on a farm outside Pretoria. The Swarts are gathering for Ma&apos;s funeral. The younger generation, Anton and Amor, detest everything the family stand for - not least the failed promise to the Black woman who has worked for them her whole life. After years of service, Salome was promised her own house, her own land ... yet somehow, as each decade passes, that promise remains unfulfilled.&quot; Klappentext</description><language>eng</language><title>&lt;&lt;The&gt;&gt; promise /</title><startdate>2021</startdate><general>Chatto &amp; Windus,</general><rtype>books</rtype><contributor>Damon Galgut.</contributor><genre>Fiktionale Darstellung</genre><journal_title>&lt;&lt;The&gt;&gt; promise /</journal_title><facet_creatorcontrib>Galgut, Damon</facet_creatorcontrib><sort_author>Galgut, Damon 1963-</sort_author><sort_creationdate>2021</sort_creationdate></search><display><identifier>$$C&lt;b&gt;ISBN&lt;/b&gt;$$V978-1-784-74406-9;$$C&lt;b&gt;ISBN&lt;/b&gt;$$V978-1-784-74407-6</identifier><lds05>&lt;b&gt;DDC: &lt;/b&gt;&lt;a href=&quot;search?query=lds05,exact,823.92%2CAND&amp;tab=FUB&amp;search_scope=FUB&amp;vid=49KOBV_FUB%3AFUB&amp;mode=advanced&quot; class=&quot;arrow-link ddc_arrow-link&quot;&gt;823.92&lt;/a&gt;</lds05><lds05>&lt;b&gt;RVK: &lt;/b&gt;&lt;a href=&quot;search?query=lds05,exact,HP 9999%2CAND&amp;tab=FUB&amp;search_scope=FUB&amp;vid=49KOBV_FUB%3AFUB&amp;mode=advanced&quot; class=&quot;arrow-link rvk_arrow-link&quot;&gt;HP 9999&lt;/a&gt;</lds05><creationdate>2021.</creationdate><creator>Galgut, Damon [Verf.]$$QGalgut, Damon</creator><subject>South Africa / Fiction</subject><format>293 Seiten.</format><description>&quot;The Promise charts the crash and burn of a white South African family, living on a farm outside Pretoria. The Swarts are gathering for Ma&apos;s funeral. The younger generation, Anton and Amor, detest everything the family stand for - not least the failed promise to the Black woman who has worked for them her whole life. After years of service, Salome was promised her own house, her own land ... yet somehow, as each decade passes, that promise remains unfulfilled.&quot; Klappentext</description><description>Cover: &quot;Shortlisted The 2021 Booker Prize&quot;</description><language>eng</language><source>Alma</source><type>Buch</type><title>The promise / Damon Galgut.</title><version>0</version><mms>9959861162102883</mms><publisher>London : Chatto &amp; Windus</publisher><place>London :</place><lds01>BV047362611</lds01><lds12>&lt;b&gt;DDC: &lt;/b&gt;&lt;a href=&quot;search?query=lds05,exact,823.92%2CAND&amp;tab=CHA&amp;search_scope=CHA&amp;vid=49KOBV_FUB%3ACHA&amp;mode=advanced&quot; class=&quot;arrow-link&quot;&gt;823.92&lt;/a&gt;</lds12><lds12>&lt;b&gt;RVK: &lt;/b&gt;&lt;a href=&quot;search?query=lds05,exact,HP 9999%2CAND&amp;tab=CHA&amp;search_scope=CHA&amp;vid=49KOBV_FUB%3ACHA&amp;mode=advanced&quot; class=&quot;arrow-link&quot;&gt;HP 9999&lt;/a&gt;</lds12><lds04>Fiktionale Darstellung</lds04></display><control><recordid>alma9959861162102883</recordid><sourceid>alma</sourceid><score>3.0</score><originalsourceid>BV047362611</originalsourceid><sourceformat>MARC21</sourceformat><sourcerecordid>9959861162102883</sourcerecordid><sourcesystem>BVB</sourcesystem><isDedup>false</isDedup></control><addata><date>2021</date><date>2021.</date><aulast>Galgut</aulast><cop>London</cop><isbn>978-1-784-74406-9</isbn><isbn>978-1-784-74407-6</isbn><isbn>9781473584464</isbn><format>book</format><ristype>BOOK</ristype><oclcid>bv47362611</oclcid><oclcid>(xx-xxund)kxp1762351226</oclcid><oclcid>(de-604)bv047362611</oclcid><abstract>&quot;The Promise charts the crash and burn of a white South African family, living on a farm outside Pretoria. The Swarts are gathering for Ma&apos;s funeral. The younger generation, Anton and Amor, detest everything the family stand for - not least the failed promise to the Black woman who has worked for them her whole life. After years of service, Salome was promised her own house, her own land ... yet somehow, as each decade passes, that promise remains unfulfilled.&quot; Klappentext</abstract><auinit>D</auinit><aufirst>Damon</aufirst><au>Galgut, Damon</au><genre>book</genre><btitle>The promise</btitle><pub>Chatto &amp; Windus</pub></addata><sort><creationdate>2021</creationdate><author>Galgut, Damon 1963-</author><title>&lt;&lt;The&gt;&gt; promise / Damon Galgut.</title></sort></record>",
"items": [
{
"itemType": "book",
"title": "The promise / Damon Galgut.",
"creators": [
{
"firstName": "Damon",
"lastName": "Galgut",
"creatorType": "author"
}
],
"date": "2021",
"ISBN": "9781784744069",
"abstractNote": "\"The Promise charts the crash and burn of a white South African family, living on a farm outside Pretoria. The Swarts are gathering for Ma's funeral. The younger generation, Anton and Amor, detest everything the family stand for - not least the failed promise to the Black woman who has worked for them her whole life. After years of service, Salome was promised her own house, her own land ... yet somehow, as each decade passes, that promise remains unfulfilled.\" Klappentext, Cover: \"Shortlisted The 2021 Booker Prize\"",
"language": "eng",
"place": "London",
"publisher": "Chatto & Windus",
"attachments": [],
"tags": [
{
"tag": "Fiction"
},
{
"tag": "South Africa"
}
],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "import",
"input": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<record xmlns=\"http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib\" xmlns:sear=\"http://www.exlibrisgroup.com/xsd/jaguar/search\">\n <control>\n <sourcerecordid>005204170</sourcerecordid>\n <sourceid>07NLR_LMS</sourceid>\n <recordid>07NLR_LMS005204170</recordid>\n <originalsourceid>NLR01</originalsourceid>\n <ilsapiid>NLR01005204170</ilsapiid>\n <sourceformat>UNIMARC</sourceformat>\n <sourcesystem>Aleph</sourcesystem>\n </control>\n <display>\n <type>book</type>\n <title>Плавающий город : С рис.</title>\n <creator>Верн, Жюль (1828-1905) NLR10::RU\\NLR\\AUTH\\773453</creator>\n <publisher>Санкт-Петербург : С.В. Звонарев, 1872</publisher>\n <creationdate>1872</creationdate>\n <format>[2], 212, [2], 42 с., [14] л. ил. : ил. ; 22 см.</format>\n <language>rus</language>\n <source>07NLR_LMS</source>\n <availlibrary>$$I07NLR$$L07NLR_RFS$$2(18.104.6.29 )$$Savailable$$31$$40$$5N$$60$$XNLR50$$YRFS</availlibrary>\n <unititle>Восхождение на Монблан</unititle>\n <lds02>18.104.6.29</lds02>\n <lds05>Санкт-Петербург</lds05>\n <lds06>[2], 212, [2], 42 с., [14] л. ил.</lds06>\n <lds07>Верн Ж. Плавающий город : С рис / [Соч.] Жюля Верна ; Пер. под ред. Марка Вовчка [псевд.] С прил. Восхождение на Монблан Поля Верна Пер. Марка Вовчка [псевд.]. - Санкт-Петербург : С.В. Звонарев, 1872. - [2], 212, [2], 42 с., [14] л. ил. : ил. ; 22 см.</lds07>\n <lds08>[Соч.] Жюля Верна ; Пер. под ред. Марка Вовчка [псевд.] С прил. Восхождение на Монблан Поля Верна Пер. Марка Вовчка [псевд.]</lds08>\n <lds15>NLR01 005204170</lds15>\n <lds30>Вовчок, Марко (1834-1907) -- Редактор NLR10::RU\\NLR\\AUTH\\7716710</lds30>\n <availinstitution>$$I07NLR$$Savailable</availinstitution>\n <availpnx>available</availpnx>\n </display>\n <links>\n <openurl>$$Topenurl_journal</openurl>\n <backlink>$$Taleph_backlink$$DOPAC</backlink>\n <linktoholdings>$$Taleph_holdings</linktoholdings>\n <lln03>$$Tcatalogue_error$$Ecatalogueerror</lln03>\n <lln05>$$Trecord_view_format$$Erecordviewformat</lln05>\n <lln06>$$Tdownload_iso2709$$Edownloadiso2709</lln06>\n <lln04>$$Tscan_request$$Escanrequest</lln04>\n </links>\n <search>\n <creatorcontrib>Верн, Жюль (1828-1905) NLR10::RU\\NLR\\AUTH\\773453</creatorcontrib>\n <creatorcontrib>Верн Ж. Г. 1828-1905 Жюль Габриэль</creatorcontrib>\n <creatorcontrib>Вовчок М. 1834-1907 Марк</creatorcontrib>\n <creatorcontrib>Вовчек М. 1834-1907 Марко</creatorcontrib>\n <creatorcontrib>Маркович М. А. 1834-1907 Мария Александровна</creatorcontrib>\n <creatorcontrib>Вилинская М. А. 1834-1907 Мария Александровна</creatorcontrib>\n <creatorcontrib>Марко Вовчок 1834-1907</creatorcontrib>\n <creatorcontrib>Вилинская-Маркович М. А. 1834-1907 Мария Александровна</creatorcontrib>\n <creatorcontrib>Верн Ж. 1828-1905 Жюль</creatorcontrib>\n <title>Плавающий город С рис.</title>\n <general>rus</general>\n <general>С.В. Звонарев</general>\n <sourceid>07NLR_LMS</sourceid>\n <recordid>07NLR_LMS005204170</recordid>\n <rsrctype>book</rsrctype>\n <creationdate>1872</creationdate>\n <startdate>18720101</startdate>\n <enddate>18721231</enddate>\n <addtitle>Плавающий город С рис.</addtitle>\n <addtitle>Восхождение на Монблан</addtitle>\n <searchscope>07NLR_LMS</searchscope>\n <searchscope>MAIN_07NLR</searchscope>\n <searchscope>07NLR</searchscope>\n <scope>07NLR_LMS</scope>\n <scope>MAIN_07NLR</scope>\n <scope>07NLR</scope>\n <lsr01>Санкт-Петербург</lsr01>\n <lsr02>С.В. Звонарев</lsr02>\n <lsr06>18.104.6.29</lsr06>\n <lsr07>1872</lsr07>\n <lsr13>[Соч.] Жюля Верна; Пер. под ред. Марка Вовчка [псевд.] С прил. Восхождение на Монблан Поля Верна Пер. Марка Вовчка [псевд.]</lsr13>\n <lsr19>Вовчок М. 1834-1907 Марко</lsr19>\n <lsr19>Верн П. Поль</lsr19>\n <lsr20>rus</lsr20>\n <lsr20>русский</lsr20>\n <lsr23>Верн, Жюль (1828-1905) NLR10::RU\\NLR\\AUTH\\773453</lsr23>\n <lsr23>Верн Ж. Г. 1828-1905 Жюль Габриэль</lsr23>\n <lsr23>Вовчок М. 1834-1907 Марк</lsr23>\n <lsr23>Вовчек М. 1834-1907 Марко</lsr23>\n <lsr23>Маркович М. А. 1834-1907 Мария Александровна</lsr23>\n <lsr23>Вилинская М. А. 1834-1907 Мария Александровна</lsr23>\n <lsr23>Марко Вовчок 1834-1907</lsr23>\n <lsr23>Вилинская-Маркович М. А. 1834-1907 Мария Александровна</lsr23>\n <lsr23>Верн Ж. 1828-1905 Жюль</lsr23>\n <lsr23>Вовчок М. 1834-1907 Марко</lsr23>\n <lsr23>Верн П. Поль</lsr23>\n <lsr24>Верн, Жюль (1828-1905) NLR10::RU\\NLR\\AUTH\\773453</lsr24>\n <lsr24>Верн Ж. Г. 1828-1905 Жюль Габриэль</lsr24>\n <lsr24>Вовчок М. 1834-1907 Марк</lsr24>\n <lsr24>Вовчек М. 1834-1907 Марко</lsr24>\n <lsr24>Маркович М. А. 1834-1907 Мария Александровна</lsr24>\n <lsr24>Вилинская М. А. 1834-1907 Мария Александровна</lsr24>\n <lsr24>Марко Вовчок 1834-1907</lsr24>\n <lsr24>Вилинская-Маркович М. А. 1834-1907 Мария Александровна</lsr24>\n <lsr24>Верн Ж. 1828-1905 Жюль</lsr24>\n <lsr24>Вовчок М. 1834-1907 Марко</lsr24>\n <lsr24>Верн П. Поль</lsr24>\n <lsr24>Плавающий город С рис.</lsr24>\n <lsr24>Восхождение на Монблан</lsr24>\n <lsr24>book</lsr24>\n <lsr24>1872</lsr24>\n <lsr24>07NLR_LMS005204170</lsr24>\n <lsr24>Санкт-Петербург</lsr24>\n <lsr24>С.В. Звонарев</lsr24>\n <lsr24>18.104.6.29</lsr24>\n <lsr24>[Соч.] Жюля Верна; Пер. под ред. Марка Вовчка [псевд.] С прил. Восхождение на Монблан Поля Верна Пер. Марка Вовчка [псевд.]</lsr24>\n <lsr24>07NLR_LMS</lsr24>\n <lsr24>MAIN_07NLR</lsr24>\n <lsr24>07NLR</lsr24>\n <lsr24>rus</lsr24>\n <lsr24>русский</lsr24>\n <lsr24>французский</lsr24>\n <lsr24>Вовчок, Марко (1834-1907) -- Редактор NLR10::RU\\NLR\\AUTH\\7716710</lsr24>\n <lsr26>французский</lsr26>\n <lsr30>Вовчок, Марко (1834-1907) -- Редактор NLR10::RU\\NLR\\AUTH\\7716710</lsr30>\n <lsr30>Вовчок М. 1834-1907 Марко</lsr30>\n <lsr30>Верн П. Поль</lsr30>\n </search>\n <sort>\n <title>Плавающий город : С рис.</title>\n <creationdate>1872</creationdate>\n <author>Верн Ж. 1828-1905 Жюль</author>\n <lso02>aafcaebha</lso02>\n <lso04>18720000</lso04>\n <lso06>18720000</lso06>\n </sort>\n <facets>\n <language>rus</language>\n <creationdate>1872</creationdate>\n <collection>07NLR_RFS</collection>\n <toplevel>available</toplevel>\n <toplevel>physical_item</toplevel>\n <prefilter>books</prefilter>\n <rsrctype>books</rsrctype>\n <creatorcontrib>Верн, Ж (1828-1905)</creatorcontrib>\n <lfc03>С.В. Звонарев</lfc03>\n <newrecords>20150408_190</newrecords>\n <frbrgroupid>7542839</frbrgroupid>\n <frbrtype>6</frbrtype>\n </facets>\n <frbr>\n <t>99</t>\n <k1>$$Kверн ж 1828 1905$$AA</k1>\n <k3>$$Kплавающий город с рис$$AT</k3>\n </frbr>\n <delivery>\n <institution>07NLR</institution>\n <delcategory>Physical Item</delcategory>\n </delivery>\n <ranking>\n <booster1>1</booster1>\n <booster2>1</booster2>\n </ranking>\n <addata>\n <aulast>Верн</aulast>\n <aulast>Вовчок</aulast>\n <aufirst>Ж.</aufirst>\n <au>Верн Ж. 1828-1905</au>\n <addau>Вовчок М. 1834-1907</addau>\n <addau>Верн П</addau>\n <btitle>Плавающий город С рис.</btitle>\n <addtitle>Восхождение на Монблан</addtitle>\n <date>1872</date>\n <risdate>1872</risdate>\n <format>book</format>\n <genre>book</genre>\n <ristype>BOOK</ristype>\n <cop>Санкт-Петербург</cop>\n <pub>С.В. Звонарев</pub>\n </addata>\n <browse>\n <author>$$DВерн, Ж. (Жюль ) (1828-1905 )$$EВерн Ж. 1828-1905 Жюль</author>\n <author>$$DВовчок, М. (Марко ) (1834-1907 )$$EВовчок М. 1834-1907 Марко</author>\n <author>$$DВерн, П. (Поль )$$EВерн П. Поль</author>\n <title>$$DПлавающий город : С рис.$$EПлавающий город С рис.</title>\n <title>$$DВосхождение на Монблан$$EВосхождение на Монблан</title>\n <callnumber>$$I07NLR$$D18.104.6.29$$E18.104.6.29</callnumber>\n <institution>07NLR</institution>\n </browse>\n</record>",
"items": [
{
"itemType": "book",
"title": "Плавающий город: С рис.",
"creators": [
{
"firstName": "Жюль",
"lastName": "Верн",
"creatorType": "author"
}
],
"date": "1872",
"callNumber": "18.104.6.29",
"language": "rus",
"place": "Санкт-Петербург",
"publisher": "С.В. Звонарев",
"attachments": [],
"tags": [],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "import",
"input": "<?xml version=\"1.0\" encoding=\"UTF-8\"?><record xmlns=\"http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib\" xmlns:sear=\"http://www.exlibrisgroup.com/xsd/jaguar/search\"><delivery><availabilityLinks>detailsgetit1</availabilityLinks><displayLocation>true</displayLocation><recordOwner>01ALLIANCE_NETWORK</recordOwner><physicalServiceId>null</physicalServiceId><sharedDigitalCandidates>null</sharedDigitalCandidates><link><displayLabel>thumbnail</displayLabel><linkURL>https://proxy-na.hosted.exlibrisgroup.com/exl_rewrite/books.google.com/books?bibkeys=ISBN:,OCLC:,LCCN:71093813&amp;jscmd=viewapi&amp;callback=updateGBSCover</linkURL><linkType>thumbnail</linkType><id>:_0</id></link><availability>available_in_library</availability><additionalLocations>false</additionalLocations><digitalAuxiliaryMode>false</digitalAuxiliaryMode><holding><matchForHoldings><holdingRecord>852##b</holdingRecord><matchOn>MainLocation</matchOn></matchForHoldings><subLocationCode>pgst1</subLocationCode><volumeFilter>null</volumeFilter><ilsApiId>9933348101867</ilsApiId><callNumberType>0</callNumberType><libraryCode>WHITMAN</libraryCode><yearFilter>null</yearFilter><boundWith>false</boundWith><stackMapUrl> https://penroselib-php.herokuapp.com/apps/map/locate.php?loc=pgst1&amp;callno=TD174+.D95&amp;title=Pollution+%2F+Leonard+B.+Dworsky+%3B+with+an+introduction+by+Stewart+L.+Udall.</stackMapUrl><isValidUser>true</isValidUser><translateRelatedTitle>null</translateRelatedTitle><mainLocation>Whitman College Library</mainLocation><callNumber>TD174 .D95</callNumber><adaptorid>ALMA_01</adaptorid><organization>01ALLIANCE_WHITC</organization><holdingURL>OVP</holdingURL><availabilityStatus>available</availabilityStatus><id>_:0</id><subLocation>1st Floor Books</subLocation><holdId>2288279530001867</holdId><holKey>HoldingResultKey [mid=2288279530001867, libraryId=170730510001867, locationCode=pgst1, callNumber=TD174 .D95]</holKey><singleUnavailableItemProcessType>null</singleUnavailableItemProcessType><relatedTitle>null</relatedTitle></holding><bestlocation><matchForHoldings><holdingRecord>852##b</holdingRecord><matchOn>MainLocation</matchOn></matchForHoldings><subLocationCode>pgst1</subLocationCode><volumeFilter>null</volumeFilter><ilsApiId>9933348101867</ilsApiId><callNumberType>0</callNumberType><libraryCode>WHITMAN</libraryCode><yearFilter>null</yearFilter><boundWith>false</boundWith><stackMapUrl> https://penroselib-php.herokuapp.com/apps/map/locate.php?loc=pgst1&amp;callno=TD174+.D95&amp;title=Pollution+%2F+Leonard+B.+Dworsky+%3B+with+an+introduction+by+Stewart+L.+Udall.</stackMapUrl><isValidUser>true</isValidUser><translateRelatedTitle>null</translateRelatedTitle><mainLocation>Whitman College Library</mainLocation><callNumber>TD174 .D95</callNumber><adaptorid>ALMA_01</adaptorid><organization>01ALLIANCE_WHITC</organization><holdingURL>OVP</holdingURL><availabilityStatus>available</availabilityStatus><id>_:0</id><subLocation>1st Floor Books</subLocation><holdId>2288279530001867</holdId><holKey>HoldingResultKey [mid=2288279530001867, libraryId=170730510001867, locationCode=pgst1, callNumber=TD174 .D95]</holKey><singleUnavailableItemProcessType>null</singleUnavailableItemProcessType><relatedTitle>null</relatedTitle></bestlocation><electronicServices>null</electronicServices><feDisplayOtherLocations>false</feDisplayOtherLocations><hasD>null</hasD><hideResourceSharing>false</hideResourceSharing><hasFilteredServices>null</hasFilteredServices><physicalItemTextCodes>null</physicalItemTextCodes><almaInstitutionsList><instId>1857</instId><instCode>01ALLIANCE_UPORT</instCode><availabilityStatus>available_in_institution</availabilityStatus><instName>University of Portland</instName><envURL/><getitLink><displayText>Alma-P</displayText><linkRecordId>99177171740001451</linkRecordId></getitLink></almaInstitutionsList><almaInstitutionsList><instId>1856</instId><instCode>01ALLIANCE_WOU</instCode><availabilityStatus>available_in_institution</availabilityStatus><instName>Western Oregon University</instName><envURL/><getitLink><displayText>Alma-P</displayText><linkRecordId>99177171740001451</linkRecordId></getitLink></almaInstitutionsList><almaInstitutionsList><instId>1844</instId><instCode>01ALLIANCE_LCC</instCode><availabilityStatus>available_in_institution</availabilityStatus><instName>Lewis &amp; Clark</instName><envURL/><getitLink><displayText>Alma-P</displayText><linkRecordId>99177171740001451</linkRecordId></getitLink></almaInstitutionsList><almaInstitutionsList><instId>1855</instId><instCode>01ALLIANCE_SOU</instCode><availabilityStatus>available_in_institution</availabilityStatus><instName>Southern Oregon University</instName><envURL/><getitLink><displayText>Alma-P</displayText><linkRecordId>99177171740001451</linkRecordId></getitLink></almaInstitutionsList><almaInstitutionsList><instId>1865</instId><instCode>01ALLIANCE_OSU</instCode><availabilityStatus>available_in_institution</availabilityStatus><instName>Oregon State University Libraries and Press</instName><envURL/><getitLink><displayText>Alma-P</displayText><linkRecordId>99177171740001451</linkRecordId></getitLink></almaInstitutionsList><almaInstitutionsList><instId>1453</instId><instCode>01ALLIANCE_WWU</instCode><availabilityStatus>available_in_institution</availabilityStatus><instName>Western Washington University</instName><envURL/><getitLink><displayText>Alma-P</displayText><linkRecordId>99177171740001451</linkRecordId></getitLink></almaInstitutionsList><almaInstitutionsList><instId>1871</instId><instCode>01ALLIANCE_CHEMEK</instCode><availabilityStatus>available_in_institution</availabilityStatus><instName>Chemeketa Community College</instName><envURL/><getitLink><displayText>Alma-P</displayText><linkRecordId>99177171740001451</linkRecordId></getitLink></almaInstitutionsList><almaInstitutionsList><instId>1842</instId><instCode>01ALLIANCE_WSU</instCode><availabilityStatus>available_in_institution</availabilityStatus><instName>Washington State University</instName><envURL/><getitLink><displayText>Alma-P</displayText><linkRecordId>99177171740001451</linkRecordId></getitLink></almaInstitutionsList><almaInstitutionsList><instId>1875</instId><instCode>01ALLIANCE_WW</instCode><availabilityStatus>available_in_institution</availabilityStatus><instName>Whitworth University</instName><envURL/><getitLink><displayText>Alma-P</displayText><linkRecordId>99177171740001451</linkRecordId></getitLink></almaInstitutionsList><almaInstitutionsList><instId>1852</instId><instCode>01ALLIANCE_UO</instCode><availabilityStatus>available_in_institution</availabilityStatus><instName>University of Oregon</instName><envURL/><getitLink><displayText>Alma-P</displayText><linkRecordId>99177171740001451</linkRecordId></getitLink></almaInstitutionsList><almaInstitutionsList><instId>1851</instId><instCode>01ALLIANCE_UID</instCode><availabilityStatus>available_in_institution</availabilityStatus><instName>University of Idaho</instName><envURL/><getitLink><displayText>Alma-P</displayText><linkRecordId>99177171740001451</linkRecordId></getitLink></almaInstitutionsList><almaInstitutionsList><instId>1454</instId><instCode>01ALLIANCE_WU</instCode><availabilityStatus>available_in_institution</availabilityStatus><instName>Willamette University</instName><envURL/><getitLink><displayText>Alma-P</displayText><linkRecordId>99177171740001451</linkRecordId></getitLink></almaInstitutionsList><quickAccessService>null</quickAccessService><recordInstitutionCode>null</recordInstitutionCode><displayedAvailability>null</displayedAvailability><consolidatedCoverage>null</consolidatedCoverage><additionalElectronicServices>null</additionalElectronicServices><deliveryCategory>Alma-P</deliveryCategory><serviceMode>ovp</serviceMode><filteredByGroupServices>null</filteredByGroupServices><electronicContextObjectId>null</electronicContextObjectId><GetIt1><links><isLinktoOnline>false</isLinktoOnline><displayText>null</displayText><inst4opac>01ALLIANCE_WHITC</inst4opac><getItTabText>service_getit</getItTabText><adaptorid>ALMA_01</adaptorid><ilsApiId>9933348101867</ilsApiId><link>OVP</link><id>_:0</id></links><category>Alma-P</category></GetIt1></delivery><search><creationdate>1971</creationdate><creator>Dworsky, Leonard B., compiler.</creator><sort_journal_title>Pollution /</sort_journal_title><sort_title>Pollution /</sort_title><sort_creationdate_full>1971</sort_creationdate_full><subject>United States</subject><subject>Water Pollution</subject><subject>Environmental policy</subject><subject>Environmental law</subject><subject>Air Pollution</subject><subject>Environnement Politique gouvernementale États-Unis.</subject><subject>Environmental law United States.</subject><subject>Environmental policy United States.</subject><subject>Air Pollution.</subject><subject>Water Pollution.</subject><local_fields>973 pbooks</local_fields><local_fields>994 92 OCACL</local_fields><toc>Introduction -- Toward a Collective Conscience for Conservation -- Water Pollution -- Historical Prologue -- Water pollution: A Major Social Problem -- water and health: American Experience until 1900 -- Initial Efforts in Science and Public Policy: 1900-1919 -- Broadening the Base of Concern: 191-1948 -- Initiating a national water pollution Control Program: 1948-1966 -- Water Pollution Control: An element of multipurpose water resources development -- Interstate Compacts and water Pollution Control -- Water Pollution Control: The International Scene -- water pollution Problems and developments until 1948 -- Early Laws and conditions -- Science, water supply, and Epidemic Disease -- The Pollution of Interstate Waters: initial Investigations -- A Broadening base of concern -- President Franklin Delano Roosevelt and Water Pollution Control -- Developing a national Water pollution Control Program: 1948-1968 -- The water pollution Control Act of 1948 -- A Maturing Program: 1955-1968 -- Interstate agencies -- Sate Pollution Control: A case Study of Pennsylvania -- Air Pollution -- Introduction -- The Atmosphere: An Urgent Challenge -- Some historical Notes -- Tragic Signals: disasters in Europe and America -- Developing a National Air pollution Control program: 1948-1955 -- The First comprehensive Air Pollution Control law -- Developing Sate and Local Programs -- Summary -- Environment and Health -- Efforts to achieve effective legislation: 1954-1955 -- Expanding the sphere of control: 1955-1967 -- The Air Quality Act of 1967 -- New York City: A case Study in Air pollution -- Environmental Quality: A New National priority.</toc><language>eng</language><title>Pollution /</title><startdate>1971</startdate><addtitle>Conservation in the United States.</addtitle><addtitle>Pollution.</addtitle><addtitle>Conservation in the United States</addtitle><general>Chelsea House Publishers,</general><general>1971.</general><general>New York :</general><rtype>pbooks</rtype><contributor>Leonard B. Dworsky ; with an introduction by Stewart L. Udall.</contributor><series>Conservation in the United States.</series><series>Conservation in the United States</series><ocolc>(OCoLC)ocm00145772</ocolc><ocolc>(OCoLC)00145772</ocolc><ocolc>00145772</ocolc><place>United States</place><place>États-Unis.</place><place>United States.</place><journal_title>Pollution /</journal_title><facet_creatorcontrib>Dworsky, Leonard B.,</facet_creatorcontrib><sort_author>Dworsky, Leonard B., compiler.</sort_author><sort_creationdate>1971</sort_creationdate></search><display><creationdate>1971</creationdate><creator>Dworsky, Leonard B., compiler.$$QDworsky, Leonard B.</creator><subject>Water -- Pollution</subject><subject>Air -- Pollution</subject><subject>Environmental policy -- United States</subject><subject>Environmental law -- United States</subject><format>xl, 911 pages ; 24 cm.</format><description>Includes bibliographical references.</description><language>eng</language><source>Alma</source><type>pbooks</type><title>Pollution </title><version>1</version><relation>$$Cform$$VOnline version: Dworsky, Leonard B. Pollution. New York, Chelsea House Publishers, 1971$$QPollution.</relation><mms>9933348101867</mms><contents>Introduction -- Toward a Collective Conscience for Conservation -- Water Pollution -- Historical Prologue -- Water pollution: A Major Social Problem -- water and health: American Experience until 1900 -- Initial Efforts in Science and Public Policy: 1900-1919 -- Broadening the Base of Concern: 191-1948 -- Initiating a national water pollution Control Program: 1948-1966 -- Water Pollution Control: An element of multipurpose water resources development -- Interstate Compacts and water Pollution Control -- Water Pollution Control: The International Scene -- water pollution Problems and developments until 1948 -- Early Laws and conditions -- Science, water supply, and Epidemic Disease -- The Pollution of Interstate Waters: initial Investigations -- A Broadening base of concern -- President Franklin Delano Roosevelt and Water Pollution Control -- Developing a national Water pollution Control Program: 1948-1968 -- The water pollution Control Act of 1948 -- A Maturing Program: 1955-1968 -- Interstate agencies -- Sate Pollution Control: A case Study of Pennsylvania -- Air Pollution -- Introduction -- The Atmosphere: An Urgent Challenge -- Some historical Notes -- Tragic Signals: disasters in Europe and America -- Developing a National Air pollution Control program: 1948-1955 -- The First comprehensive Air Pollution Control law -- Developing Sate and Local Programs -- Summary -- Environment and Health -- Efforts to achieve effective legislation: 1954-1955 -- Expanding the sphere of control: 1955-1967 -- The Air Quality Act of 1967 -- New York City: A case Study in Air pollution -- Environmental Quality: A New National priority.</contents><series>Conservation in the United States$$QConservation in the United States</series><series>Conservation in the United States.$$QConservation in the United States.</series><lds100>00145772</lds100><publisher>New York : Chelsea House Publishers</publisher><lds88>Leonard B. Dworsky ; with an introduction by Stewart L. Udall</lds88><place>New York :</place></display><control><recordid>alma9933348101867</recordid><sourceid>alma</sourceid><score>5.1</score><originalsourceid>ocm00145772-01alliance_network</originalsourceid><sourceformat>MARC21</sourceformat><sourcerecordid>9933348101867</sourcerecordid><sourcesystem>OCLC</sourcesystem><isDedup>false</isDedup></control><addata><date>1971</date><aulast>Dworsky</aulast><notes>Includes bibliographical references.</notes><cop>New York</cop><ristype>GEN</ristype><oclcid>(ocolc)145772</oclcid><auinit>L</auinit><aufirst>Leonard B.</aufirst><lccn>71093813</lccn><seriestitle>Conservation in the United States</seriestitle><creatorfull>$$NDworsky, Leonard B.$$LDworsky$$FLeonard B.$$Rauthor</creatorfull><au>Dworsky, Leonard B.</au><originatingSystemIDAuthor>n82013408</originatingSystemIDAuthor><btitle>Pollution</btitle><pub>Chelsea House Publishers</pub></addata><sort><creationdate>1971</creationdate><author>Dworsky, Leonard B., compiler.</author><title>Pollution /</title></sort></record>",
"items": [
{
"itemType": "book",
"title": "Pollution",
"creators": [
{
"firstName": "Leonard B.",
"lastName": "Dworsky",
"creatorType": "author"
}
],
"date": "1971",
"abstractNote": "Includes bibliographical references.",
"language": "eng",
"place": "New York",
"publisher": "Chelsea House Publishers",
"series": "Conservation in the United States",
"attachments": [],
"tags": [
{
"tag": "Air"
},
{
"tag": "Environmental law"
},
{
"tag": "Environmental policy"
},
{
"tag": "Pollution"
},
{
"tag": "Pollution"
},
{
"tag": "United States"
},
{
"tag": "United States"
},
{
"tag": "Water"
}
],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "import",
"input": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<record xmlns=\"http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib\" xmlns:sear=\"http://www.exlibrisgroup.com/xsd/jaguar/search\">\n <control>\n <sourcerecordid>2174645960003337</sourcerecordid>\n <sourceid>WUW_alma</sourceid>\n <recordid>WUW_alma2174645960003337</recordid>\n <addsrcrecordid>AC03437319</addsrcrecordid>\n <sourceformat>MARC21</sourceformat>\n <sourcesystem>Alma</sourcesystem>\n <almaid>43ACC_WUW:2174645960003337</almaid>\n </control>\n <display>\n <type>book</type>\n <title>Theory of economic dynamics : an essay on cyclical and long-run changes in capitalist economy</title>\n <creator>Kalecki, Michał [VerfasserIn]$$QKalecki, Michał$$0(DE-588)118559494$$G(uri)http://d-nb.info/gnd/118559494</creator>\n <edition>1. publ.</edition>\n <publisher>London : Allen &amp; Unwin</publisher>\n <creationdate>1954</creationdate>\n <format>178 S., graph. Darst.</format>\n <subject>Kapitalismus ; Konjunkturzyklus ; Wirtschaftsentwicklung</subject>\n <description>Hier auch spätere, unveränderte Nachdrucke (1956)</description>\n <language>eng</language>\n <source>WU Bibliothekskatalog</source>\n <availlibrary>$$IWUW$$LWUW_B_JHB$$1Closed Stacks$$2503328-G$$Savailable$$X43ACC_WUW$$YJHB$$ZMG$$P1</availlibrary>\n <availlibrary>$$IWUW$$LWUW_B_JHB$$1Level -2 Books$$2320083-M$$Savailable$$X43ACC_WUW$$YJHB$$ZMAG$$P2</availlibrary>\n <availlibrary>$$IWUW$$LWUW_B_JHB$$1Steindl Collection$$2S/335.5/K14 T3$$Savailable$$X43ACC_WUW$$YJHB$$ZSST$$P3</availlibrary>\n <lds14>503328-G</lds14>\n <lds14>320083-M</lds14>\n <lds14>S/335.5/K14 T3</lds14>\n <lds16>by M. Kalecki</lds16>\n <lds30>AC03437319</lds30>\n <lds33>https://permalink.obvsg.at/wuw/AC03437319</lds33>\n <lds53>Kapitalismus | Konjunkturzyklus | Wirtschaftsentwicklung</lds53>\n <lds55>Theory of economic dynamics: an essay on cyclical and long-run changes in capitalist economy</lds55>\n <lds56>Allen &amp; Unwin</lds56>\n <lds58>WU Bibliothekszentrum LC, Signatur: 503328-G</lds58>\n <lds58>WU Bibliothekszentrum LC, Signatur: 320083-M</lds58>\n <lds58>WU Bibliothekszentrum LC, Signatur: S/335.5/K14 T3</lds58>\n <lds60>eng</lds60>\n <lds61>Kalecki, Michał</lds61>\n <availinstitution>$$IWUW$$Savailable</availinstitution>\n <availpnx>available</availpnx>\n <version>2</version>\n </display>\n <search>\n <creatorcontrib>Kalecki, Michał [VerfasserIn]</creatorcontrib>\n <creatorcontrib>Michał</creatorcontrib>\n <creatorcontrib>Kalecki 1899-1970 VerfasserIn</creatorcontrib>\n <creatorcontrib>M.</creatorcontrib>\n <creatorcontrib>Kalecki 1899-1970</creatorcontrib>\n <creatorcontrib>Michal</creatorcontrib>\n <creatorcontrib>Kaletskii 1899-1970</creatorcontrib>\n <creatorcontrib>Michel</creatorcontrib>\n <creatorcontrib>http://d-nb.info/gnd/118559494</creatorcontrib>\n <creatorcontrib>Kalecki, Michał 1899-1970 VerfasserIn</creatorcontrib>\n <creatorcontrib>Kalecki, M. 1899-1970</creatorcontrib>\n <creatorcontrib>Kaletskii, Michal 1899-1970</creatorcontrib>\n <creatorcontrib>Kalecki, Michal 1899-1970</creatorcontrib>\n <creatorcontrib>Kalecki, Michel 1899-1970</creatorcontrib>\n <creatorcontrib>Kalecki, M</creatorcontrib>\n <creatorcontrib>Kaletskii, M</creatorcontrib>\n <creatorcontrib>(uri)http://d-nb.info/gnd/118559494</creatorcontrib>\n <title>Theory of economic dynamics an essay on cyclical and long-run changes in capitalist economy</title>\n <description>Hier auch spätere, unveränderte Nachdrucke (1956)</description>\n <subject>Kapitalismus ; Konjunkturzyklus ; Wirtschaftsentwicklung</subject>\n <subject>Kapitalismus</subject>\n <subject>Konjunkturzyklus</subject>\n <subject>Wirtschaftsentwicklung</subject>\n <subject>Wirtschaftliche Entwicklung</subject>\n <subject>Wirtschaftsdynamik</subject>\n <subject>Wirtschaftswandel</subject>\n <subject>Wirtschaftlicher Wandel</subject>\n <subject>Ökonomische Entwicklung</subject>\n <subject>http://d-nb.info/gnd/4066438-7</subject>\n <subject>Zyklus</subject>\n <subject>Wachstumszyklus</subject>\n <subject>Konjunkturschwankung</subject>\n <subject>4032134-4</subject>\n <subject>Kapitalistische Gesellschaft</subject>\n <subject>Kapitalistische Wirtschaft</subject>\n <subject>Kapitalistisches Gesellschaftssystem</subject>\n <subject>Kapitalistisches Wirtschaftssystem</subject>\n <subject>Gesellschaftsordnung</subject>\n <subject>Antikapitalismus</subject>\n <subject>4029577-1</subject>\n <subject>(DE-588)4029577-1</subject>\n <subject>(DE-588)4032134-4</subject>\n <subject>(DE-588)4066438-7</subject>\n <general>1. publ.</general>\n <general>Allen &amp; Unwin</general>\n <sourceid>WUW_alma</sourceid>\n <recordid>WUW_alma2174645960003337</recordid>\n <rsrctype>book</rsrctype>\n <creationdate>1954</creationdate>\n <startdate>19540101</startdate>\n <enddate>19541231</enddate>\n <addsrcrecordid>AC03437319</addsrcrecordid>\n <addsrcrecordid>990006667950203337</addsrcrecordid>\n <searchscope>WUW_alma</searchscope>\n <searchscope>WUW_SST</searchscope>\n <searchscope>WUW</searchscope>\n <scope>WUW_alma</scope>\n <scope>WUW_SST</scope>\n <scope>WUW</scope>\n <alttitle>1956</alttitle>\n <lsr09>Allen &amp; Unwin</lsr09>\n <lsr14>503328-G</lsr14>\n <lsr14>320083-M</lsr14>\n <lsr14>S/335.5/K14 T3</lsr14>\n <lsr16>by M. Kalecki</lsr16>\n <lsr33>https://permalink.obvsg.at/wuw/AC03437319</lsr33>\n <lsr35>AC03437319</lsr35>\n </search>\n <sort>\n <title>THEORY OF ECONOMIC DYNAMICS AN ESSAY ON CYCLICAL AND LONGRUN CHANGES IN CAPITALIST ECONOMY</title>\n <creationdate>1954</creationdate>\n <author>Kalecki, Michał VerfasserIn</author>\n <lso01>1954</lso01>\n </sort>\n <facets>\n <language>eng</language>\n <creationdate>1954</creationdate>\n <topic>Kapitalismus</topic>\n <topic>Konjunkturzyklus</topic>\n <topic>Wirtschaftsentwicklung</topic>\n <toplevel>available</toplevel>\n <prefilter>books</prefilter>\n <rsrctype>books</rsrctype>\n <creatorcontrib>Kalecki, Michał</creatorcontrib>\n <library>WUW_B_JHB</library>\n <atoz>T</atoz>\n <lfc06>Ohne Angabe</lfc06>\n <newrecords>20170815_785</newrecords>\n <frbrgroupid>706492797</frbrgroupid>\n <frbrtype>5</frbrtype>\n </facets>\n <dedup>\n <t>99</t>\n <c3>WUWAC03437319</c3>\n <c4>1954</c4>\n <c5>WUW990006667950203337</c5>\n <f5>WUWAC03437319</f5>\n <f6>WUW_1954</f6>\n <f7>WUWAC03437319</f7>\n <f8>WUW_</f8>\n <f9>WUW_178 S.</f9>\n <f10>WUW_allen unwin</f10>\n <f11>WUW_kalecki michal 1899 1970</f11>\n <f20>WUW_990006667950203337</f20>\n </dedup>\n <frbr>\n <t>1</t>\n <k1>$$Kwuwwuwwuwkalecki michal$$AA</k1>\n <k3>$$Kwuwwuwwuwtheory of economic dynamics an essay on cyclical and long run changes in capitalist economy$$AT</k3>\n </frbr>\n <delivery>\n <institution>WUW</institution>\n <delcategory>Alma-P</delcategory>\n </delivery>\n <ranking>\n <booster1>1</booster1>\n <booster2>1</booster2>\n </ranking>\n <addata>\n <aulast>Kalecki</aulast>\n <au>Kalecki, Michał</au>\n <creatorfull>$$NKalecki, Michał$$LKalecki$$FMichał$$Rauthor</creatorfull>\n <creatorfull>$$NKalecki, M$$LKalecki$$FM</creatorfull>\n <creatorfull>$$NKaletskii, Michal$$LKaletskii$$FMichal</creatorfull>\n <creatorfull>$$NKalecki, Michal$$LKalecki$$FMichal</creatorfull>\n <creatorfull>$$NKalecki, Michel$$LKalecki$$FMichel</creatorfull>\n <creatorfull>$$Nhttp://d-nb.info/gnd/118559494$$Lhttp://d-nb.info/gnd/118559494$$F</creatorfull>\n <btitle>Theory of economic dynamics: an essay on cyclical and long-run changes in capitalist economy</btitle>\n <stitle>Theory of economic dynami</stitle>\n <addtitle>1956</addtitle>\n <date>1954</date>\n <risdate>1954</risdate>\n <spage>178 S.</spage>\n <format>book</format>\n <ristype>BOOK</ristype>\n <cop>London</cop>\n <pub>Allen &amp; Unwin</pub>\n <mis1>2174645960003337</mis1>\n <url>https://permalink.obvsg.at/wuw/AC03437319</url>\n <lad06>000666795</lad06>\n <lad24>-WUW-</lad24>\n <lad24>GND: 4029577-1 689 SSS TOP</lad24>\n <lad24>GND: 4032134-4 689 SSS TOP</lad24>\n <lad24>GND: 4066438-7 689 SSS TOP</lad24>\n <lad24>GND: 118559494 100 XXX CRE</lad24>\n </addata>\n <browse>\n <author>$$DKalecki, Michał, 1899-1970$$EKalecki, Michał, 1899-1970</author>\n <author>$$DKalecki, M., 1899-1970$$EKalecki, M., 1899-1970</author>\n <author>$$DKaletskii, Michal, 1899-1970$$EKaletskii, Michal, 1899-1970</author>\n <author>$$DKalecki, Michal, 1899-1970$$EKalecki, Michal, 1899-1970</author>\n <author>$$DKalecki, Michel, 1899-1970$$EKalecki, Michel, 1899-1970</author>\n <title>$$DTheory of economic dynamics an essay on cyclical and long-run changes in capitalist economy$$ETheory of economic dynamics an essay on cyclical and long-run changes in capitalist economy</title>\n <title>$$D1956$$E1956</title>\n <subject>$$TGND$$EKapitalismus$$DKapitalismus</subject>\n <subject>$$TGND$$EKonjunkturzyklus$$DKonjunkturzyklus</subject>\n <subject>$$TGND$$EWirtschaftsentwicklung$$DWirtschaftsentwicklung</subject>\n <subject>$$TGND$$EWirtschaftliche Entwicklung$$DWirtschaftliche Entwicklung</subject>\n <subject>$$TGND$$EWirtschaftsdynamik$$DWirtschaftsdynamik</subject>\n <subject>$$TGND$$EWirtschaftswandel$$DWirtschaftswandel</subject>\n <subject>$$TGND$$EWirtschaftlicher Wandel$$DWirtschaftlicher Wandel</subject>\n <subject>$$TGND$$EÖkonomische Entwicklung$$DÖkonomische Entwicklung</subject>\n <subject>$$TGND$$Ehttp://d-nb.info/gnd/4066438-7$$Dhttp://d-nb.info/gnd/4066438-7</subject>\n <subject>$$TGND$$EZyklus$$DZyklus</subject>\n <subject>$$TGND$$EWachstumszyklus$$DWachstumszyklus</subject>\n <subject>$$TGND$$EKonjunkturschwankung$$DKonjunkturschwankung</subject>\n <subject>$$TGND$$E4032134-4$$D4032134-4</subject>\n <subject>$$TGND$$EKapitalistische Gesellschaft$$DKapitalistische Gesellschaft</subject>\n <subject>$$TGND$$EKapitalistische Wirtschaft$$DKapitalistische Wirtschaft</subject>\n <subject>$$TGND$$EKapitalistisches Gesellschaftssystem$$DKapitalistisches Gesellschaftssystem</subject>\n <subject>$$TGND$$EKapitalistisches Wirtschaftssystem$$DKapitalistisches Wirtschaftssystem</subject>\n <subject>$$TGND$$EGesellschaftsordnung$$DGesellschaftsordnung</subject>\n <subject>$$TGND$$EAntikapitalismus$$DAntikapitalismus</subject>\n <subject>$$TGND$$E4029577-1$$D4029577-1</subject>\n <callnumber>$$IWUW$$D503328-G$$E503328-g$$T</callnumber>\n <callnumber>$$IWUW$$D320083-M$$E320083-m$$T</callnumber>\n <callnumber>$$IWUW$$DS/335.5/K14 T3$$Es/335.5/k14 t3$$T8</callnumber>\n </browse>\n</record>",
"items": [
{
"itemType": "book",
"title": "Theory of economic dynamics: an essay on cyclical and long-run changes in capitalist economy",
"creators": [
{
"firstName": "Michał",
"lastName": "Kalecki",
"creatorType": "author"
}
],
"date": "1954",
"abstractNote": "Hier auch spätere, unveränderte Nachdrucke (1956)",
"callNumber": "503328-G, 320083-M, S/335.5/K14 T3",
"edition": "1. publ.",
"language": "eng",
"numPages": "178",
"place": "London",
"publisher": "Allen & Unwin",
"attachments": [],
"tags": [
{
"tag": "Kapitalismus"
},
{
"tag": "Konjunkturzyklus"
},
{
"tag": "Wirtschaftsentwicklung"
}
],
"notes": [],
"seeAlso": []
}
]
}
]
/** END TEST CASES **/