-
Notifications
You must be signed in to change notification settings - Fork 787
/
Copy pathSpringer Link.js
696 lines (681 loc) · 23.3 KB
/
Springer Link.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
{
"translatorID": "d6c6210a-297c-4b2c-8c43-48cb503cc49e",
"label": "Springer Link",
"creator": "Aurimas Vinckevicius",
"target": "^https?://link\\.springer\\.com/(search(/page/\\d+)?\\?|(article|chapter|book|referenceworkentry|protocol|journal|referencework)/.+)",
"minVersion": "3.0",
"maxVersion": "",
"priority": 100,
"inRepository": true,
"translatorType": 4,
"browserSupport": "gcsibv",
"lastUpdated": "2024-07-22 20:08:47"
}
/*
SpringerLink Translator
Copyright (C) 2020 Aurimas Vinckevicius and Sebastian Karcher
This program 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.
This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
*/
function detectWeb(doc, url) {
var action = getAction(url);
// Z.debug(action)
if (!action) return false;
if (!doc.head || !doc.head.getElementsByTagName('meta').length) {
Z.debug("Springer Link: No head or meta tags");
return false;
}
switch (action) {
case "search":
case "journal":
case "book":
case "referencework":
if (getResultList(doc).length > 0) {
return "multiple";
}
return false;
case "article":
return "journalArticle";
case "chapter":
case "referenceworkentry":
case "protocol":
if (ZU.xpathText(doc, '//meta[@name="citation_conference_title"]/@content')) {
return "conferencePaper";
}
else {
return "bookSection";
}
}
return false;
}
function getAction(url) {
return (url.match(/^https?:\/\/[^/]+\/([^/?#]+)/) || [])[1];
}
function getResultList(doc) {
var results = ZU.xpath(doc,
'//ol[@class="content-item-list"]/li/*[self::h3 or self::h2]/a');
if (!results.length) {
results = ZU.xpath(doc,
'//div[@class="toc"]/ol//div[contains(@class,"toc-item")]/h3/a');
}
if (!results.length) {
results = ZU.xpath(doc,
'//div[@class="book-toc-container"]/ol//div[contains(@class,"content-type-list__meta")]/div/a');
}
if (!results.length) {
results = ZU.xpath(doc, '//div[@class="toc"]/ol//li[contains(@class,"toc-item")]/p[@class="title"]/a');
}
// https://link.springer.com/journal/10344/volumes-and-issues/66-5
if (!results.length) {
results = ZU.xpath(doc, '//li[@class="c-list-group__item"]//h3/a');
}
// e.g. https://link.springer.com/book/10.1007/978-3-031-04248-5 -- Springer uses both h3 and h4 and sometimes
// the h3 link actually points to other volumes, so we're making sure we're in the right li element first
if (!results.length) {
results = doc.querySelectorAll('li[data-test="chapter"] h4.c-card__title > a, li[data-test="chapter"] h3.c-card__title > a');
}
// https://link.springer.com/book/10.1007/978-3-476-05742-6
// https://link.springer.com/book/10.1007/978-3-319-63324-4
if (!results.length) {
results = doc.querySelectorAll('li[data-test="chapter"] [data-test^="chapter-title"] > a');
}
// https://link.springer.com/journal/11192/volumes-and-issues/129-1
if (!results.length) {
results = doc.querySelectorAll('section ol article.c-card-open h3 > a');
}
return results;
}
function doWeb(doc, url) {
var type = detectWeb(doc, url);
if (type == "multiple") {
var list = getResultList(doc);
var items = {};
if (getAction(url) == 'book') {
items[url] = '[Full Book] ' + text(doc, 'header h1');
}
for (var i = 0, n = list.length; i < n; i++) {
items[list[i].href] = list[i].textContent;
}
Zotero.selectItems(items, function (selectedItems) {
if (!selectedItems) return;
for (let i in selectedItems) {
ZU.processDocuments(i, scrape);
}
});
}
else {
scrape(doc, url);
}
}
function complementItem(doc, item) {
var itemType = detectWeb(doc, doc.location.href);
// in case we're missing something, we can try supplementing it from page
if (!item.DOI) {
item.DOI = ZU.xpathText(doc, '//meta[@name="citation_doi"]/@content');
}
if (!item.language) {
item.language = ZU.xpathText(doc, '//meta[@name="citation_language"]/@content');
}
if (!item.publisher) {
item.publisher = ZU.xpathText(doc, '//dd[@id="abstract-about-publisher"]');
}
if (item.publisher && item.place) {
// delete places in publisher's name
// e.g. Springer Berlin Heidelberg
var places = item.place.split(/[\s,;]/);
for (let place of places) {
item.publisher = item.publisher.replace(place, '');
}
}
if (!item.date) {
item.date = ZU.xpathText(doc, '//dd[@id="abstract-about-cover-date"]') || ZU.xpathText(
doc, '//dd[@id="abstract-about-book-chapter-copyright-year"]');
}
if (item.date) {
item.date = ZU.strToISO(item.date);
}
// copyright
if (!item.rights) {
item.rights = ZU.xpathText(doc,
'//dd[@id="abstract-about-book-copyright-holder"]');
var year = ZU.xpathText(doc,
'//dd[@id="abstract-about-book-chapter-copyright-year"]');
if (item.rights && year) {
item.rights = '©' + year + ' ' + item.rights;
}
}
if (itemType == "journalArticle") {
if (!item.ISSN) {
item.ISSN = ZU.xpathText(doc, '//dd[@id="abstract-about-issn" or @id="abstract-about-electronic-issn"]');
}
if (!item.journalAbbreviation || item.publicationTitle == item.journalAbbreviation) {
item.journalAbbreviation = ZU.xpathText(doc, '//meta[@name="citation_journal_abbrev"]/@content');
}
}
if (itemType == 'bookSection' || itemType == "conferencePaper") {
// look for editors
var editors = ZU.xpath(doc, '//ul[@class="editors"]/li[@itemprop="editor"]/a[@class="person"]');
var m = item.creators.length;
for (var i = 0, n = editors.length; i < n; i++) {
var editor = ZU.cleanAuthor(editors[i].textContent.replace(/\s+Ph\.?D\.?/,
''), 'editor');
// make sure we don't already have this person in the list
var haveEditor = false;
for (var j = 0; j < m; j++) {
var creator = item.creators[j];
if (creator.creatorType == "editor" && creator.lastName == editor.lastName) {
// we should also check first name, but this could get
// messy if we only have initials in one case but not
// the other.
haveEditor = true;
break;
}
}
if (!haveEditor) {
item.creators.push(editor);
}
}
if (!item.ISBN) {
item.ISBN = ZU.xpathText(doc, '//dd[@id="abstract-about-book-print-isbn" or @id="abstract-about-book-online-isbn"]')
|| ZU.xpathText(doc, '//span[@id="print-isbn" or @id="electronic-isbn"]');
}
// series/seriesNumber
if (!item.series) {
item.series = ZU.xpathText(doc, '//dd[@id="abstract-about-book-series-title"]')
|| ZU.xpathText(doc, '//div[contains(@class, "ArticleHeader")]//a[contains(@href, "/bookseries/")]')
|| text(doc, '.c-chapter-book-series > a');
}
if (!item.seriesNumber) {
item.seriesNumber = ZU.xpathText(doc, '//dd[@id="abstract-about-book-series-volume"]');
}
}
// add the DOI to extra for non journal articles
if (item.itemType != "journalArticle" && item.itemType != "conferencePaper" && item.DOI) {
item.extra = "DOI: " + item.DOI;
item.DOI = "";
}
// series numbers get mapped to volume; fix this
if (item.volume == item.seriesNumber) {
item.volume = "";
}
// add abstract
var abs = ZU.xpathText(doc, '//div[contains(@class,"abstract-content")][1]');
if (!abs) {
abs = ZU.xpathText(doc, '//section[@class="Abstract" and @lang="en"]');
}
if (abs) item.abstractNote = ZU.trimInternal(abs).replace(/^Abstract[:\s]*/, "");
// add tags
var tags = ZU.xpathText(doc, '//span[@class="Keyword"]');
if (tags && (!item.tags || item.tags.length === 0)) {
item.tags = tags.split(',');
}
tags = doc.querySelectorAll('.c-article-subject-list__subject');
if (tags.length && !item.tags.length) {
item.tags = [...tags].map(el => el.innerText);
}
return item;
}
function scrape(doc, url) {
var DOI = url.match(/\/(10\.[^#?]+)/)[1];
var pdfURL = "/content/pdf/" + encodeURIComponent(DOI) + ".pdf";
// Z.debug("pdfURL: " + pdfURL);
if (getAction(url) == 'book') {
let search = Zotero.loadTranslator('search');
search.setSearch({ DOI });
search.setHandler('translators', (obj, translators) => {
search.setTranslator(translators);
search.setHandler('itemDone', (obj, item) => {
item = complementItem(doc, item);
item.attachments.push({
url: pdfURL,
title: "Full Text PDF",
mimeType: "application/pdf"
});
item.complete();
});
search.translate();
});
search.getTranslators();
return;
}
var risURL = "https://citation-needed.springer.com/v2/references/" + DOI + "?format=refman&flavour=citation";
// Z.debug("risURL" + risURL);
ZU.doGet(risURL, function (text) {
// Z.debug(text)
var translator = Zotero.loadTranslator("import");
translator.setTranslator("32d59d2d-b65a-4da4-b0a3-bdd3cfb979e7");
translator.setString(text);
translator.setHandler("itemDone", function (obj, item) {
item = complementItem(doc, item);
item.attachments.push({
url: pdfURL,
title: "Full Text PDF",
mimeType: "application/pdf"
});
item.complete();
});
translator.translate();
});
}
/** BEGIN TEST CASES **/
var testCases = [
{
"type": "web",
"url": "https://link.springer.com/chapter/10.1007/978-3-540-88682-2_1",
"items": [
{
"itemType": "conferencePaper",
"title": "Something Old, Something New, Something Borrowed, Something Blue",
"creators": [
{
"lastName": "Koenderink",
"firstName": "Jan J.",
"creatorType": "author"
},
{
"lastName": "Forsyth",
"firstName": "David",
"creatorType": "editor"
},
{
"lastName": "Torr",
"firstName": "Philip",
"creatorType": "editor"
},
{
"lastName": "Zisserman",
"firstName": "Andrew",
"creatorType": "editor"
}
],
"date": "2008",
"DOI": "10.1007/978-3-540-88682-2_1",
"ISBN": "9783540886822",
"abstractNote": "My first paper of a “Computer Vision” signature (on invariants related to optic flow) dates from 1975. I have published in Computer Vision (next to work in cybernetics, psychology, physics, mathematics and philosophy) till my retirement earlier this year (hence the slightly blue feeling), thus my career roughly covers the history of the field. “Vision” has diverse connotations. The fundamental dichotomy is between “optically guided action” and “visual experience”. The former applies to much of biology and computer vision and involves only concepts from science and engineering (e.g., “inverse optics”), the latter involves intention and meaning and thus additionally involves concepts from psychology and philosophy. David Marr’s notion of “vision” is an uneasy blend of the two: On the one hand the goal is to create a “representation of the scene in front of the eye” (involving intention and meaning), on the other hand the means by which this is attempted are essentially “inverse optics”. Although this has nominally become something of the “Standard Model” of CV, it is actually incoherent. It is the latter notion of “vision” that has always interested me most, mainly because one is still grappling with basic concepts. It has been my aspiration to turn it into science, although in this I failed. Yet much has happened (something old) and is happening now (something new). I will discuss some of the issues that seem crucial to me, mostly illustrated through my own work, though I shamelessly borrow from friends in the CV community where I see fit.",
"language": "en",
"libraryCatalog": "Springer Link",
"pages": "1-1",
"place": "Berlin, Heidelberg",
"proceedingsTitle": "Computer Vision – ECCV 2008",
"publisher": "Springer",
"series": "Lecture Notes in Computer Science",
"attachments": [
{
"title": "Full Text PDF",
"mimeType": "application/pdf"
}
],
"tags": [],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "https://link.springer.com/referenceworkentry/10.1007/978-0-387-79061-9_5173",
"items": [
{
"itemType": "bookSection",
"title": "Characterized by Commitment to Something Without Personal Exploration",
"creators": [
{
"lastName": "Goldstein",
"firstName": "Sam",
"creatorType": "editor"
},
{
"lastName": "Naglieri",
"firstName": "Jack A.",
"creatorType": "editor"
}
],
"date": "2011",
"ISBN": "9780387790619",
"bookTitle": "Encyclopedia of Child Behavior and Development",
"extra": "DOI: 10.1007/978-0-387-79061-9_5173",
"language": "en",
"libraryCatalog": "Springer Link",
"pages": "329-329",
"place": "Boston, MA",
"publisher": "Springer US",
"url": "https://doi.org/10.1007/978-0-387-79061-9_5173",
"attachments": [
{
"title": "Full Text PDF",
"mimeType": "application/pdf"
}
],
"tags": [],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "https://link.springer.com/protocol/10.1007/978-1-60761-839-3_22",
"items": [
{
"itemType": "bookSection",
"title": "What Do We Know?: Simple Statistical Techniques that Help",
"creators": [
{
"lastName": "Nicholls",
"firstName": "Anthony",
"creatorType": "author"
},
{
"lastName": "Bajorath",
"firstName": "Jürgen",
"creatorType": "editor"
}
],
"date": "2011",
"ISBN": "9781607618393",
"abstractNote": "An understanding of simple statistical techniques is invaluable in science and in life. Despite this, and despite the sophistication of many concerning the methods and algorithms of molecular modeling, statistical analysis is usually rare and often uncompelling. I present here some basic approaches that have proved useful in my own work, along with examples drawn from the field. In particular, the statistics of evaluations of virtual screening are carefully considered.",
"bookTitle": "Chemoinformatics and Computational Chemical Biology",
"extra": "DOI: 10.1007/978-1-60761-839-3_22",
"language": "en",
"libraryCatalog": "Springer Link",
"pages": "531-581",
"place": "Totowa, NJ",
"publisher": "Humana Press",
"series": "Methods in Molecular Biology",
"shortTitle": "What Do We Know?",
"url": "https://doi.org/10.1007/978-1-60761-839-3_22",
"attachments": [
{
"title": "Full Text PDF",
"mimeType": "application/pdf"
}
],
"tags": [
{
"tag": "ANOVA"
},
{
"tag": "AUC"
},
{
"tag": "Central Limit Theorem"
},
{
"tag": "Confidence limits"
},
{
"tag": "Correlation"
},
{
"tag": "Enrichment"
},
{
"tag": "Error bars"
},
{
"tag": "Propagation of error"
},
{
"tag": "ROC curves"
},
{
"tag": "Standard deviation"
},
{
"tag": "Statistics"
},
{
"tag": "Student’s t-test"
},
{
"tag": "Variance"
},
{
"tag": "Virtual screening"
},
{
"tag": "logit transform"
},
{
"tag": "p-Values"
}
],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "https://link.springer.com/search?query=zotero",
"items": "multiple"
},
{
"type": "web",
"url": "https://link.springer.com/journal/10922/2/1/page/1",
"items": "multiple"
},
{
"type": "web",
"url": "https://link.springer.com/referencework/10.1007/978-1-84996-169-1?page=1#toc",
"items": "multiple"
},
{
"type": "web",
"url": "https://link.springer.com/book/10.1007/978-3-540-88682-2",
"items": "multiple"
},
{
"type": "web",
"url": "https://link.springer.com/article/10.1007/s10040-009-0439-x",
"items": [
{
"itemType": "journalArticle",
"title": "Tide-induced head fluctuations in a coastal aquifer: effects of the elastic storage and leakage of the submarine outlet-capping",
"creators": [
{
"lastName": "Geng",
"firstName": "Xiaolong",
"creatorType": "author"
},
{
"lastName": "Li",
"firstName": "Hailong",
"creatorType": "author"
},
{
"lastName": "Boufadel",
"firstName": "Michel C.",
"creatorType": "author"
},
{
"lastName": "Liu",
"firstName": "Shuang",
"creatorType": "author"
}
],
"date": "2009-07-01",
"DOI": "10.1007/s10040-009-0439-x",
"ISSN": "1435-0157",
"abstractNote": "This paper considers the tidal head fluctuations in a single coastal confined aquifer which extends under the sea for a certain distance. Its submarine outlet is covered by a silt-layer with properties dissimilar to the aquifer. Recently, Li et al. (2007) gave an analytical solution for such a system which neglected the effect of the elastic storage (specific storage) of the outlet-capping. This article presents an analytical solution which generalizes their work by incorporating the elastic storage of the outlet-capping. It is found that if the outlet-capping is thick enough in the horizontal direction, its elastic storage has a significant enhancing effect on the tidal head fluctuation. Ignoring this elastic storage will lead to significant errors in predicting the relationship of the head fluctuation and the aquifer hydrogeological properties. Quantitative analysis shows the effect of the elastic storage of the outlet-capping on the groundwater head fluctuation. Quantitative conditions are given under which the effect of this elastic storage on the aquifer’s tide-induced head fluctuation is negligible. Li, H.L., Li, G.Y., Chen, J.M., Boufadel, M.C. (2007) Tide-induced head fluctuations in a confined aquifer with sediment covering its outlet at the sea floor. [Fluctuations du niveau piézométrique induites par la marée dans un aquifère captif à décharge sous-marine.] Water Resour. Res 43, doi:10.1029/2005WR004724",
"issue": "5",
"journalAbbreviation": "Hydrogeol J",
"language": "en",
"libraryCatalog": "Springer Link",
"pages": "1289-1296",
"publicationTitle": "Hydrogeology Journal",
"shortTitle": "Tide-induced head fluctuations in a coastal aquifer",
"url": "https://doi.org/10.1007/s10040-009-0439-x",
"volume": "17",
"attachments": [
{
"title": "Full Text PDF",
"mimeType": "application/pdf"
}
],
"tags": [
{
"tag": "Analytical solutions"
},
{
"tag": "Coastal aquifers"
},
{
"tag": "Elastic storage"
},
{
"tag": "Submarine outlet-capping"
},
{
"tag": "Tidal loading efficiency"
}
],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "https://link.springer.com/chapter/10.1007/0-387-24250-3_4",
"items": [
{
"itemType": "bookSection",
"title": "Whole-Class and Peer Interaction in an Activity of Writing and Revision",
"creators": [
{
"lastName": "Allal",
"firstName": "Linda",
"creatorType": "author"
},
{
"lastName": "Lopez",
"firstName": "Lucie Mottier",
"creatorType": "author"
},
{
"lastName": "Lehraus",
"firstName": "Katia",
"creatorType": "author"
},
{
"lastName": "Forget",
"firstName": "Alexia",
"creatorType": "author"
},
{
"lastName": "Kostouli",
"firstName": "Triantafillia",
"creatorType": "editor"
}
],
"date": "2005",
"ISBN": "9780387242507",
"abstractNote": "The perspective of situated cognition provides a conceptual framework for studying social mediation in activities of text production. The investigation presented here concerns two forms of social mediation: (1) whole-class interactions that prepare the students for drafting and revising their texts; (2) peer interactions occurring when dyads engage in joint revision of their drafts. The data collected in three fifth-grade classrooms include observations of whole-class interactions, recordings of dyadic interactions and classifications of text transformations that students carried out during individual and joint phases of revision. The analyses examine the relationships between qualitative indicators of interaction dynamics and quantitative data on text transformations. The findings show that differences in the whole-class interactions are reflected in the students’ revisions particularly with respect to the degree of rewriting that they undertake, as compared to simple error correction. Although analysis of the dyadic interactions reveals important variations in the dynamics of the exchanges, two general findings emerge. In the large majority of cases, the activity of joint revision leads to a substantial increase in the number of text transformations, beyond those made by each author individually. Even in cases where no new transformations occur, the authors engage actively in interaction about revision (e.g., they propose revisions of the other student’s text, explain revisions made individually to their own text, argue against proposals of the other student, etc.). Implications of the results for future research on writing instruction are discussed.",
"bookTitle": "Writing in Context(s): Textual Practices and Learning Processes in Sociocultural Settings",
"extra": "DOI: 10.1007/0-387-24250-3_4",
"language": "en",
"libraryCatalog": "Springer Link",
"pages": "69-91",
"place": "Boston, MA",
"publisher": "Springer US",
"series": "Studies in Writing",
"url": "https://doi.org/10.1007/0-387-24250-3_4",
"attachments": [
{
"title": "Full Text PDF",
"mimeType": "application/pdf"
}
],
"tags": [
{
"tag": "Social mediation"
},
{
"tag": "peer interaction"
},
{
"tag": "revision"
},
{
"tag": "whole-class interaction"
},
{
"tag": "writing"
}
],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "https://link.springer.com/journal/10344/volumes-and-issues/66-5",
"items": "multiple"
},
{
"type": "web",
"url": "https://link.springer.com/book/10.1007/978-3-031-04248-5",
"items": "multiple"
},
{
"type": "web",
"url": "https://link.springer.com/journal/11192/volumes-and-issues/129-1",
"items": "multiple"
},
{
"type": "web",
"url": "https://link.springer.com/journal/10473/volumes-and-issues/44-3",
"items": "multiple"
},
{
"type": "web",
"url": "https://link.springer.com/book/10.1007/978-3-319-63324-4",
"items": "multiple"
},
{
"type": "web",
"url": "https://link.springer.com/book/10.1007/978-3-476-05742-6",
"items": "multiple"
},
{
"type": "web",
"url": "https://link.springer.com/book/10.1007/978-3-319-63324-4",
"items": "multiple"
},
{
"type": "web",
"url": "https://link.springer.com/book/10.1007/978-94-6209-482-6",
"items": "multiple"
},
{
"type": "web",
"url": "https://link.springer.com/book/10.1007/b137952",
"items": "multiple"
},
{
"type": "web",
"url": "https://link.springer.com/book/10.1007/978-3-658-11545-6",
"items": "multiple"
},
{
"type": "web",
"url": "https://link.springer.com/book/10.1007/978-3-642-33191-6",
"items": "multiple"
},
{
"type": "web",
"url": "https://link.springer.com/book/10.1007/978-3-030-04759-7",
"items": "multiple"
}
]
/** END TEST CASES **/