This repository has been archived by the owner on Sep 29, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 41
/
springer.txt
1909 lines (1528 loc) · 59 KB
/
springer.txt
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
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
behavioral-science,anxiety
Social Anxiety and Social Phobia in Youth
By Christopher Kearney
http://link.springer.com/openurl?genre=book&isbn=978-0-387-22592-0
neuroscience,brain
Acquired Brain Injury
By Jean Elbaum, Deborah Benson
http://link.springer.com/openurl?genre=book&isbn=978-0-387-37575-5
psychology,religion,spirituality
Psychology, Religion, and Spirituality
By James M. Nelson
http://link.springer.com/openurl?genre=book&isbn=978-0-387-87573-6
psychology,neuropsychology
Child Neuropsychology
By Margaret Semrud-Clikeman, Phyllis Anne Teeter Ellison
http://link.springer.com/openurl?genre=book&isbn=978-0-387-88963-4
psychology
Clinical Assessment of Child and Adolescent Personality and Behavior
By Paul J. Frick, Christopher T. Barry, Randy W. Kamphaus
http://link.springer.com/openurl?genre=book&isbn=978-1-4419-0641-0
psychology,stress
A Clinical Guide to the Treatment of the Human Stress Response
By George S. Everly, Jr., Jeffrey M. Lating
http://link.springer.com/openurl?genre=book&isbn=978-1-4614-5538-7
psychology
The Psychology of Social Status
By Joey T. Cheng, Jessica L. Tracy, Cameron Anderson
http://link.springer.com/openurl?genre=book&isbn=978-1-4939-0867-7
psychology
Psychoeducational Assessment and Report Writing
By Stefan C. Dombrowski
http://link.springer.com/openurl?genre=book&isbn=978-1-4939-1911-6
behavioral-science
Evidence-Based Interventions for Children with Challenging Behavior
By Kathleen Hague Armstrong, Julia A. Ogg, Ashley N. Sundman-Wheat, Audra St. John Walsh
http://link.springer.com/openurl?genre=book&isbn=978-1-4614-7807-2
psychology,software-tools/matlab
MATLAB for Psychologists
By Mauro Borgo, Alessandro Soranzo, Massimo Grassi
http://link.springer.com/openurl?genre=book&isbn=978-1-4614-2197-9
psychology
International Perspectives on Psychotherapy
By Stefan G. Hofmann
http://link.springer.com/openurl?genre=book&isbn=978-3-319-56194-3
psychology
Applied Behavior Analysis
By Kimberly Maich, Darren Levine, Carmen Hall
http://link.springer.com/openurl?genre=book&isbn=978-3-319-44794-0
psychology,perception
Psychology of Perception
By Simon Grondin
http://link.springer.com/openurl?genre=book&isbn=978-3-319-31791-5
psychology,consumer-finance
Handbook of Consumer Finance Research
By Jing Jian Xiao
http://link.springer.com/openurl?genre=book&isbn=978-3-319-28887-1
psychology,medicine
Clinical Methods in Medical Family Therapy
By Tai Mendenhall, Angela Lamson, Jennifer Hodgson, Macaran Baird
http://link.springer.com/openurl?genre=book&isbn=978-3-319-68834-3
psychology,motivation
Motivation and Action
By Jutta Heckhausen, Heinz Heckhausen
http://link.springer.com/openurl?genre=book&isbn=978-3-319-65094-4
psychology
Perceptual Organization
By Stephen Handel
http://link.springer.com/openurl?genre=book&isbn=978-3-319-96337-2
behavioral-science
Foundations of Behavioral Health
By Bruce Lubotsky Levin, Ardis Hanson
http://link.springer.com/openurl?genre=book&isbn=978-3-030-18435-3
psychology
Social Psychology in Action
By Kai Sassenberg, Michael L.W. Vliek
http://link.springer.com/openurl?genre=book&isbn=978-3-030-13788-5
neurobiology
Developmental Neurobiology
By Mahendra S. Rao, Marcus Jacobson
http://link.springer.com/openurl?genre=book&isbn=978-0-387-28117-9
biomechanics,biology
Fundamentals of Biomechanics
By Duane Knudson
http://link.springer.com/openurl?genre=book&isbn=978-0-387-49312-1
botany,ecology
Plant Physiological Ecology
By Hans Lambers, F Stuart Chapin III, Thijs L. Pons
http://link.springer.com/openurl?genre=book&isbn=978-0-387-78341-3
evolution,biology,science
The Joy of Science
By Richard A. Lockshin
http://link.springer.com/openurl?genre=book&isbn=978-1-4020-6099-1
diseases,medicine
Metabolism of Human Diseases
By Eckhard Lammert, Martin Zeeb
http://link.springer.com/openurl?genre=book&isbn=978-3-7091-0715-7
medicine,biochemistry
Integrative Human Biochemistry
By Andrea T. da Poian, Miguel A. R. B. Castanho
http://link.springer.com/openurl?genre=book&isbn=978-1-4939-3058-6
biomechanics,biology
Fundamentals of Biomechanics
By Nihat Özkaya, Dawn Leger, David Goldsheyder, Margareta Nordin
http://link.springer.com/openurl?genre=book&isbn=978-3-319-44738-4
genetics
Human Chromosomes
By Orlando J. Miller, Eeva Therman
http://link.springer.com/openurl?genre=book&isbn=978-1-4613-0139-4
genetics
Phylogenomics
By Christoph Bleidorn
http://link.springer.com/openurl?genre=book&isbn=978-3-319-54064-1
ecology
Principles of Terrestrial Ecosystem Ecology
By F Stuart Chapin III, Pamela A. Matson, Peter Vitousek
http://link.springer.com/openurl?genre=book&isbn=978-1-4419-9504-9
ecology
Learning Landscape Ecology
By Sarah E. Gergel, Monica G. Turner
http://link.springer.com/openurl?genre=book&isbn=978-1-4939-6374-4
epidemiology
Epidemiological Research: Terms and Concepts
By O. S. Miettinen
http://link.springer.com/openurl?genre=book&isbn=978-94-007-1171-6
statistics,medicine
Statistical Analysis of Clinical Data on a Pocket Calculator
By Ton J. Cleophas, Aeilko H. Zwinderman
http://link.springer.com/openurl?genre=book&isbn=978-94-007-1211-9
statistics,medicine
Clinical Data Analysis on a Pocket Calculator
By Ton J. Cleophas, Aeilko H. Zwinderman
http://link.springer.com/openurl?genre=book&isbn=978-3-319-27104-0
neuroscience
Essentials of Cerebellum and Cerebellar Disorders
By Donna L. Gruol, Noriyuki Koibuchi, Mario Manto, Marco Molinari, Jeremy D. Schmahmann, Ying Shen
http://link.springer.com/openurl?genre=book&isbn=978-3-319-24551-5
anatomy
Handbook of Cardiac Anatomy, Physiology, and Devices
By Paul A. Iaizzo
http://link.springer.com/openurl?genre=book&isbn=978-3-319-19464-6
anatomy
The Gastrointestinal System
By Po Sing Leung
http://link.springer.com/openurl?genre=book&isbn=978-94-017-8771-0
statistics,software-tools/spss
SPSS for Starters and 2nd Levelers
By Ton J. Cleophas, Aeilko H. Zwinderman
http://link.springer.com/openurl?genre=book&isbn=978-3-319-20600-4
machine-learning,medicine
Machine Learning in Medicine - a Complete Overview
By Ton J. Cleophas, Aeilko H. Zwinderman
http://link.springer.com/openurl?genre=book&isbn=978-3-319-15195-3
pharmacy,biotechnology
Pharmaceutical Biotechnology
By Daan J. A. Crommelin, Robert D. Sindelar, Bernd Meibohm
http://link.springer.com/openurl?genre=book&isbn=978-1-4614-6486-0
biomechanics
An Introduction to Biomechanics
By Jay D. Humphrey, Sherry L. O’Rourke
http://link.springer.com/openurl?genre=book&isbn=978-1-4939-2623-7
bioinformatics
Bioinformatics for Evolutionary Biologists
By Bernhard Haubold, Angelika Börsch-Haubold
http://link.springer.com/openurl?genre=book&isbn=978-3-319-67395-0
biology
Lessons on Synthetic Bioarchitectures
By Eva-Kathrin Ehmoser-Sinner, Cherng-Wen Darren Tan
http://link.springer.com/openurl?genre=book&isbn=978-3-319-73123-0
bioinformatics
Applied Bioinformatics
By Paul M. Selzer, Richard J. Marhöfer, Oliver Koch
http://link.springer.com/openurl?genre=book&isbn=978-3-319-68301-0
biology
ENZYMES: Catalysis, Kinetics and Mechanisms
By N.S. Punekar
http://link.springer.com/openurl?genre=book&isbn=978-981-13-0785-0
botany
Plant Physiology, Development and Metabolism
By Satish C Bhatla, Manju A. Lal
http://link.springer.com/openurl?genre=book&isbn=978-981-13-2023-1
food
Food Fraud Prevention
By John W. Spink
http://link.springer.com/openurl?genre=book&isbn=978-1-4939-9621-6
ecology
Plant Ecology
By Ernst-Detlef Schulze, Erwin Beck, Nina Buchmann, Stephan Clemens, Klaus Müller-Hohenstein, Michael Scherer-Lorenzen
http://link.springer.com/openurl?genre=book&isbn=978-3-662-56233-8
marketing
Database Marketing
By Robert C. Blattberg, Byung-Do Kim, Scott A. Neslin
http://link.springer.com/openurl?genre=book&isbn=978-0-387-72579-6
microeconomics
Microeconomics
By Peter Dorman
http://link.springer.com/openurl?genre=book&isbn=978-3-642-37434-0
design,informatics
Design Research in Information Systems
By Alan Hevner, Samir Chatterjee
http://link.springer.com/openurl?genre=book&isbn=978-1-4419-5653-8
strategic-management
Strategic International Management
By Dirk Morschett, Hanna Schramm-Klein, Joachim Zentes
http://link.springer.com/openurl?genre=book&isbn=978-3-8349-6331-4
international-trade,business
International Trade Theory and Policy
By Giancarlo Gandolfo
http://link.springer.com/openurl?genre=book&isbn=978-3-642-37314-5
supply-chain
Supply Chain Management and Advanced Planning
By Hartmut Stadtler, Christoph Kilger, Herbert Meyr
http://link.springer.com/openurl?genre=book&isbn=978-3-642-55309-7
strategic-management
Strategic International Management
By Dirk Morschett, Hanna Schramm-Klein, Joachim Zentes
http://link.springer.com/openurl?genre=book&isbn=978-3-658-07884-3
operations-research,optimization
Search Methodologies
By Edmund K. Burke, Graham Kendall
http://link.springer.com/openurl?genre=book&isbn=978-1-4614-6940-7
linear-programming
Linear Programming
By Robert J Vanderbei
http://link.springer.com/openurl?genre=book&isbn=978-1-4614-7630-6
corporate-social-responsibility
Corporate Social Responsibility
By John O. Okpara, Samuel O. Idowu
http://link.springer.com/openurl?genre=book&isbn=978-3-642-40975-2
ecommerce
Electronic Commerce
By Efraim Turban, David King, Jae Kyu Lee, Ting-Peng Liang, Deborrah C. Turban
http://link.springer.com/openurl?genre=book&isbn=978-3-319-10091-3
econometrics
Econometrics
By Badi H. Baltagi
http://link.springer.com/openurl?genre=book&isbn=978-3-642-20059-5
logistics
Logistics
By Harald Gleissner, J. Christian Femerling
http://link.springer.com/openurl?genre=book&isbn=978-3-319-01769-3
statistics
New Introduction to Multiple Time Series Analysis
By Helmut Lütkepohl
http://link.springer.com/openurl?genre=book&isbn=978-3-540-27752-1
game-theory
Game Theory
By Hans Peters
http://link.springer.com/openurl?genre=book&isbn=978-3-662-46950-7
asset-management,business
Physical Asset Management
By Nicholas Anthony John Hastings
http://link.springer.com/openurl?genre=book&isbn=978-3-319-14777-2
operations-research,linear-programming,nonlinear-programming
Linear and Nonlinear Programming
By David G. Luenberger, Yinyu Ye
http://link.springer.com/openurl?genre=book&isbn=978-3-319-18842-3
risk-management,business
Enterprise Risk Management Models
By David L. Olson, Desheng Dash Wu
http://link.springer.com/openurl?genre=book&isbn=978-3-662-53785-5
ecommerce
Introduction to Electronic Commerce and Social Commerce
By Efraim Turban, Judy Whiteside, David King, Jon Outland
http://link.springer.com/openurl?genre=book&isbn=978-3-319-50091-1
business-process-management
Business Process Management Cases
By Jan vom Brocke, Jan Mendling
http://link.springer.com/openurl?genre=book&isbn=978-3-319-58307-5
social-media,business
Social Media Management
By Amy Van Looy
http://link.springer.com/openurl?genre=book&isbn=978-3-319-21990-5
business,management,international-business
Multinational Management
By Rien Segers
http://link.springer.com/openurl?genre=book&isbn=978-3-319-23012-2
leadership
Leadership Today
By Joan Marques, Satinder Dhiman
http://link.springer.com/openurl?genre=book&isbn=978-3-319-31036-7
supply-chain
Sustainable Supply Chains
By Yann Bouchery, Charles J. Corbett, Jan C. Fransoo, Tarkan Tan
http://link.springer.com/openurl?genre=book&isbn=978-3-319-29791-0
retail,strategic-management
Strategic Retail Management
By Joachim Zentes, Dirk Morschett, Hanna Schramm-Klein
http://link.springer.com/openurl?genre=book&isbn=978-3-658-10183-1
travel,business
Travel Marketing, Tourism Economics and the Airline Product
By Mark Anthony Camilleri
http://link.springer.com/openurl?genre=book&isbn=978-3-319-49849-2
ecommerce
Electronic Commerce 2018
By Efraim Turban, Jon Outland, David King, Jae Kyu Lee, Ting-Peng Liang, Deborrah C. Turban
http://link.springer.com/openurl?genre=book&isbn=978-3-319-58715-8
marketing,market-research
Market Research
By Erik Mooi, Marko Sarstedt, Irma Mooi-Reci
http://link.springer.com/openurl?genre=book&isbn=978-981-10-5218-7
business,sustainability
Managing Sustainable Business
By Gilbert G. Lenssen, N. Craig Smith
http://link.springer.com/openurl?genre=book&isbn=978-94-024-1144-7
knowledge-management
Knowledge Management
By Klaus North, Gita Kumta
http://link.springer.com/openurl?genre=book&isbn=978-3-319-59978-6
crm
Customer Relationship Management
By V. Kumar, Werner Reinartz
http://link.springer.com/openurl?genre=book&isbn=978-3-662-55381-7
human-resources,strategic-management
Strategic Human Resource Management and Employment Relations
By Ashish Malik
http://link.springer.com/openurl?genre=book&isbn=978-981-13-0399-9
entertainment
Entertainment Science
By Thorsten Hennig-Thurau, Mark B. Houston
http://link.springer.com/openurl?genre=book&isbn=978-3-319-89292-4
corporate-finance
Analytical Corporate Finance
By Angelo Corelli
http://link.springer.com/openurl?genre=book&isbn=978-3-319-95762-3
market-research,marketing
A Concise Guide to Market Research
By Marko Sarstedt, Erik Mooi
http://link.springer.com/openurl?genre=book&isbn=978-3-662-56707-4
supply-chain,operations-management
Global Supply Chain and Operations Management
By Dmitry Ivanov, Alexander Tsipoulanidis, Jörn Schönberger
http://link.springer.com/openurl?genre=book&isbn=978-3-319-94313-8
international-business
International Business Management
By Kamal Fatehi, Jeongho Choi
http://link.springer.com/openurl?genre=book&isbn=978-3-319-96622-9
software-tools/excel,data-analysis
Excel Data Analysis
By Hector Guerrero
http://link.springer.com/openurl?genre=book&isbn=978-3-030-01279-3
business
Digital Business Models
By Bernd W. Wirtz
http://link.springer.com/openurl?genre=book&isbn=978-3-030-13005-3
marketing
Social Marketing in Action
By Debra Z. Basil, Gonzalo Diaz-Meneses, Michael D. Basil
http://link.springer.com/openurl?genre=book&isbn=978-3-030-13020-6
material-science,ceramics
Ceramic Materials
By C. Barry Carter, M. Grant Norton
http://link.springer.com/openurl?genre=book&isbn=978-0-387-46271-4
material-science,composite-materials
Composite Materials
By Krishan K. Chawla
http://link.springer.com/openurl?genre=book&isbn=978-0-387-74365-3
electron-microscopy
Transmission Electron Microscopy
By David B. Williams, C. Barry Carter
http://link.springer.com/openurl?genre=book&isbn=978-0-387-76501-3
food
Sensory Evaluation of Food
By Harry T. Lawless, Hildegarde Heymann
http://link.springer.com/openurl?genre=book&isbn=978-1-4419-6488-5
heat,engineering
Engineering Flow and Heat Exchange
By Octave Levenspiel
http://link.springer.com/openurl?genre=book&isbn=978-1-4899-7454-9
chemistry,thermodynamics
Chemical Thermodynamics
By Ernö Keszei
http://link.springer.com/openurl?genre=book&isbn=978-3-642-19864-9
chemistry,electrochemistry
Electrochemistry
By Christine Lefrou, Pierre Fabry, Jean-Claude Poignet
http://link.springer.com/openurl?genre=book&isbn=978-3-642-30250-3
chemistry
Acid-Base Diagrams
By Heike Kahlert, Fritz Scholz
http://link.springer.com/openurl?genre=book&isbn=978-3-642-37902-4
brewing
Brewing Science: A Multidisciplinary Approach
By Michael Mosher, Kenneth Trantham
http://link.springer.com/openurl?genre=book&isbn=978-3-319-46394-0
chemistry,polymer-chemistry
Principles of Polymer Chemistry
By A. Ravve
http://link.springer.com/openurl?genre=book&isbn=978-1-4614-2212-9
nanotechnology
Nanotechnology: Principles and Practices
By Sulabha K. Kulkarni
http://link.springer.com/openurl?genre=book&isbn=978-3-319-09171-6
crystallography
Structure Determination by X-ray Crystallography
By Mark Ladd, Rex Palmer
http://link.springer.com/openurl?genre=book&isbn=978-1-4614-3954-7
material-science,ceramics
Ceramic Materials
By C. Barry Carter, M. Grant Norton
http://link.springer.com/openurl?genre=book&isbn=978-1-4614-3523-5
chemistry,analytical-chemistry
Foundations of Analytical Chemistry
By Miguel Valcárcel Cases, Ángela I. López-Lorente, Ma Ángeles López-Jiménez
http://link.springer.com/openurl?genre=book&isbn=978-3-319-62872-1
spectrometry
Mass Spectrometry
By Jürgen H Gross
http://link.springer.com/openurl?genre=book&isbn=978-3-319-54398-7
mechanics,statistical-mechanics
Statistical Mechanics for Engineers
By Isamu Kusaka
http://link.springer.com/openurl?genre=book&isbn=978-3-319-15018-5
magnetism
Magnetic Interactions in Molecules and Solids
By Coen de Graaf, Ria Broer
http://link.springer.com/openurl?genre=book&isbn=978-3-319-22951-5
material-science,polymers
Polymer Synthesis: Theory and Practice
By Dietrich Braun, Harald Cherdron, Matthias Rehahn, Helmut Ritter, Brigitte Voit
http://link.springer.com/openurl?genre=book&isbn=978-3-642-28980-4
food
Food Analysis Laboratory Manual
By S. Suzanne Nielsen
http://link.springer.com/openurl?genre=book&isbn=978-3-319-44127-6
spectroscopy
Electrochemical Impedance Spectroscopy and its Applications
By Andrzej Lasia
http://link.springer.com/openurl?genre=book&isbn=978-1-4614-8933-7
group-theory,chemistry
Group Theory Applied to Chemistry
By Arnout Jozef Ceulemans
http://link.springer.com/openurl?genre=book&isbn=978-94-007-6863-5
chemistry,food,food-chemistry
Food Chemistry
By H.-D. Belitz, Werner Grosch, Peter Schieberle
http://link.springer.com/openurl?genre=book&isbn=978-3-540-69934-7
chemistry,physical-chemistry
Exam Survival Guide: Physical Chemistry
By Jochen Vogt
http://link.springer.com/openurl?genre=book&isbn=978-3-319-49810-2
food
Food Analysis
By S. Suzanne Nielsen
http://link.springer.com/openurl?genre=book&isbn=978-3-319-45776-5
chemistry,physical-chemistry
Physical Chemistry from a Different Angle
By Georg Job, Regina Rüffler
http://link.springer.com/openurl?genre=book&isbn=978-3-319-15666-8
food,food-science
Essentials of Food Science
By Vickie A. Vaclavik, Elizabeth W. Christian
http://link.springer.com/openurl?genre=book&isbn=978-1-4614-9138-5
chemical-engineering,bioproces-engineering
Chemical and Bioprocess Engineering
By Ricardo Simpson, Sudhir K. Sastry
http://link.springer.com/openurl?genre=book&isbn=978-1-4614-9126-2
chemistry
Applied Chemistry
By Oleg Roussak, H. D. Gesser
http://link.springer.com/openurl?genre=book&isbn=978-1-4614-4262-2
chemistry,organic-chemistry
Advanced Organic Chemistry
By Francis A. Carey, Richard J. Sundberg
http://link.springer.com/openurl?genre=book&isbn=978-0-387-44899-2
chemistry,organic-chemistry
Advanced Organic Chemistry
By Francis A. Carey, Richard J. Sundberg
http://link.springer.com/openurl?genre=book&isbn=978-0-387-71481-3
electron-microscopy,x-ray
Scanning Electron Microscopy and X-Ray Microanalysis
By Joseph I. Goldstein, Dale E. Newbury, Joseph R. Michael, Nicholas W.M. Ritchie, John Henry J. Scott, David C. Joy
http://link.springer.com/openurl?genre=book&isbn=978-1-4939-6676-9
computer-science,evolutionary-computing
Introduction to Evolutionary Computing
By A.E. Eiben, J.E. Smith
http://link.springer.com/openurl?genre=book&isbn=978-3-662-44874-8
data-structures,programming-languages/python
Data Structures and Algorithms with Python
By Kent D. Lee, Steve Hubbard
http://link.springer.com/openurl?genre=book&isbn=978-3-319-13072-9
programming-languages/latex
LaTeX in 24 Hours
By Dilip Datta
http://link.springer.com/openurl?genre=book&isbn=978-3-319-47831-9
computer-science,automata
Automata and Computability
By Dexter C. Kozen
http://link.springer.com/openurl?genre=book&isbn=978-1-4612-1844-9
computer-science,algorithms
The Algorithm Design Manual
By Steven S Skiena
http://link.springer.com/openurl?genre=book&isbn=978-1-84800-070-4
data-mining
Principles of Data Mining
By Max Bramer
http://link.springer.com/openurl?genre=book&isbn=978-1-4471-7307-6
business-process-management
Fundamentals of Business Process Management
By Marlon Dumas, Marcello La Rosa, Jan Mendling, Hajo A. Reijers
http://link.springer.com/openurl?genre=book&isbn=978-3-642-33143-5
programming-languages/uml
UML @ Classroom
By Martina Seidl, Marion Scholz, Christian Huemer, Gerti Kappel
http://link.springer.com/openurl?genre=book&isbn=978-3-319-12742-2
design
Foundations for Designing User-Centered Systems
By Frank E. Ritter, Gordon D. Baxter, Elizabeth F. Churchill
http://link.springer.com/openurl?genre=book&isbn=978-1-4471-5134-0
computer-science,computer-vision
Computer Vision
By Richard Szeliski
http://link.springer.com/openurl?genre=book&isbn=978-1-84882-935-0
data-mining
Data Mining
By Charu C. Aggarwal
http://link.springer.com/openurl?genre=book&isbn=978-3-319-14142-8
geometry
Computational Geometry
By Mark de Berg, Otfried Cheong, Marc van Kreveld, Mark Overmars
http://link.springer.com/openurl?genre=book&isbn=978-3-540-77974-2
computer-science,cryptography
Cryptography Made Simple
By Nigel Smart
http://link.springer.com/openurl?genre=book&isbn=978-3-319-21936-3
eye-tracking
Eye Tracking Methodology
By Andrew T. Duchowski
http://link.springer.com/openurl?genre=book&isbn=978-3-319-57883-5
data-science
The Data Science Design Manual
By Steven S. Skiena
http://link.springer.com/openurl?genre=book&isbn=978-3-319-55444-0
machine-learning
An Introduction to Machine Learning
By Miroslav Kubat
http://link.springer.com/openurl?genre=book&isbn=978-3-319-63913-0
mathematics,discrete-mathematics
Guide to Discrete Mathematics
By Gerard O'Regan
http://link.springer.com/openurl?genre=book&isbn=978-3-319-44561-8
computer-science
Modelling Computing Systems
By Faron Moller, Georg Struth
http://link.springer.com/openurl?genre=book&isbn=978-1-84800-322-4
computer-science,cryptography
Understanding Cryptography
By Christof Paar, Jan Pelzl
http://link.springer.com/openurl?genre=book&isbn=978-3-642-04101-3
software-engineering
Concise Guide to Software Engineering
By Gerard O'Regan
http://link.springer.com/openurl?genre=book&isbn=978-3-319-57750-0
multimedia
Fundamentals of Multimedia
By Ze-Nian Li, Mark S. Drew, Jiangchuan Liu
http://link.springer.com/openurl?genre=book&isbn=978-3-319-05290-8
programming-languages/python
The Python Workbook
By Ben Stephenson
http://link.springer.com/openurl?genre=book&isbn=978-3-319-14240-1
machine-learning,recommender-systems
Recommender Systems
By Charu C. Aggarwal
http://link.springer.com/openurl?genre=book&isbn=978-3-319-29659-3
programming-languages/python
Python Programming Fundamentals
By Kent D. Lee
http://link.springer.com/openurl?genre=book&isbn=978-1-4471-6642-9
programming,object-oriented-programming
Object-Oriented Analysis, Design and Implementation
By Brahma Dathan, Sarnath Ramnath
http://link.springer.com/openurl?genre=book&isbn=978-3-319-24280-4
data-science
Introduction to Data Science
By Laura Igual, Santi Seguí
http://link.springer.com/openurl?genre=book&isbn=978-3-319-50017-1
computer-science,databases
Concise Guide to Databases
By Peter Lake, Paul Crowther
http://link.springer.com/openurl?genre=book&isbn=978-1-4471-5601-7
image-processing
Digital Image Processing
By Wilhelm Burger, Mark J. Burge
http://link.springer.com/openurl?genre=book&isbn=978-1-4471-6684-9
computer-science,computer-networks
Guide to Computer Network Security
By Joseph Migga Kizza
http://link.springer.com/openurl?genre=book&isbn=978-3-319-55606-2
computer-science,programming
Foundations of Programming Languages
By Kent D. Lee
http://link.springer.com/openurl?genre=book&isbn=978-3-319-70790-7
computer-science,probability,statistics
Probability and Statistics for Computer Science
By David Forsyth
http://link.springer.com/openurl?genre=book&isbn=978-3-319-64410-3
programming
Guide to Competitive Programming
By Antti Laaksonen
http://link.springer.com/openurl?genre=book&isbn=978-3-319-72547-5
computer-science,artificial-intelligence
Introduction to Artificial Intelligence
By Wolfgang Ertel
http://link.springer.com/openurl?genre=book&isbn=978-3-319-58487-4
machine-learning,deep-learning
Introduction to Deep Learning
By Sandro Skansi
http://link.springer.com/openurl?genre=book&isbn=978-3-319-73004-2
business-process-management
Fundamentals of Business Process Management
By Marlon Dumas, Marcello La Rosa, Jan Mendling, Hajo A. Reijers
http://link.springer.com/openurl?genre=book&isbn=978-3-662-56509-4
scientific-computing,programming-languages/c++
Guide to Scientific Computing in C++
By Joe Pitt-Francis, Jonathan Whiteley
http://link.springer.com/openurl?genre=book&isbn=978-3-319-73132-2
programming-languages/java
Fundamentals of Java Programming
By Mitsunori Ogihara
http://link.springer.com/openurl?genre=book&isbn=978-3-319-89491-1
cyber-physical-systems
Logical Foundations of Cyber-Physical Systems
By André Platzer
http://link.springer.com/openurl?genre=book&isbn=978-3-319-63588-0
machine-learning,neural-networks,deep-learning
Neural Networks and Deep Learning
By Charu C. Aggarwal
http://link.springer.com/openurl?genre=book&isbn=978-3-319-94463-0
computer-science,systems-programming,software-tools/unix,software-tools/linux
Systems Programming in Unix/Linux
By K.C. Wang
http://link.springer.com/openurl?genre=book&isbn=978-3-319-92429-8
computer-science,parallel-computing
Introduction to Parallel Computing
By Roman Trobec, Boštjan Slivnik, Patricio Bulić, Borut Robič
http://link.springer.com/openurl?genre=book&isbn=978-3-319-98833-7
computer-science
Analysis for Computer Scientists
By Michael Oberguggenberger, Alexander Ostermann
http://link.springer.com/openurl?genre=book&isbn=978-3-319-91155-7
computer-science,computer-forensics
Introductory Computer Forensics
By Xiaodong Lin
http://link.springer.com/openurl?genre=book&isbn=978-3-030-00581-8
civil-engineering,irrigation,drainage
Irrigation and Drainage Engineering
By Peter Waller, Muluneh Yitayew
http://link.springer.com/openurl?genre=book&isbn=978-3-319-05699-9
climate-change
Climate Change Science: A Modern Synthesis
By G. Thomas Farmer, John Cook
http://link.springer.com/openurl?genre=book&isbn=978-94-007-5757-8
geoscience
Petroleum Geoscience
By Knut Bjørlykke
http://link.springer.com/openurl?genre=book&isbn=978-3-642-34132-8
oceans
The Sea Floor
By Eugen Seibold, Wolfgang Berger
http://link.springer.com/openurl?genre=book&isbn=978-3-319-51412-3
soil-mechanics
An Introduction to Soil Mechanics
By Arnold Verruijt
http://link.springer.com/openurl?genre=book&isbn=978-3-319-61185-3
sustainability
Sustainability Science
By Harald Heinrichs, Pim Martens, Gerd Michelsen, Arnim Wiek
http://link.springer.com/openurl?genre=book&isbn=978-94-017-7242-6
gis,programming-languages/python
Python For ArcGIS
By Laura Tateosian
http://link.springer.com/openurl?genre=book&isbn=978-3-319-18398-5
gis
ArcGIS for Environmental and Water Issues
By William Bajjali
http://link.springer.com/openurl?genre=book&isbn=978-3-319-61158-7
simulation,modelling
System Dynamics
By Bilash Kanti Bala, Fatimah Mohamed Arshad, Kusairi Mohd Noh
http://link.springer.com/openurl?genre=book&isbn=978-981-10-2045-2
microeconomics
Principles of Microeconomics
By Martin Kolmar
http://link.springer.com/openurl?genre=book&isbn=978-3-319-57589-6
econometrics
Time Series Econometrics
By Klaus Neusser
http://link.springer.com/openurl?genre=book&isbn=978-3-319-32862-1
stochastic-processes,calculus
Stochastic Processes and Calculus
By Uwe Hassler
http://link.springer.com/openurl?genre=book&isbn=978-3-319-23428-1
economics,ethics
Economics as Applied Ethics
By Wilfred Beckerman
http://link.springer.com/openurl?genre=book&isbn=978-3-319-50319-6
grammar,teaching
Grammar for Teachers
By Andrea DeCapua
http://link.springer.com/openurl?genre=book&isbn=978-3-319-33916-0
writing,research
Writing for Publication
By Mary Renck Jalongo, Olivia N. Saracho
http://link.springer.com/openurl?genre=book&isbn=978-3-319-31650-5
languages/english
Language Across the Curriculum & CLIL in English as an Additional Language (EAL) Contexts
By Angel M.Y. Lin
http://link.springer.com/openurl?genre=book&isbn=978-981-10-1802-2
research,phd
The A-Z of the PhD Trajectory
By Eva O. L. Lantsoght
http://link.springer.com/openurl?genre=book&isbn=978-3-319-77425-1
languages/english
Conferencing and Presentation English for Young Academics
By Michael Guest
http://link.springer.com/openurl?genre=book&isbn=978-981-13-2475-8
social-justice,research
Research Methods for Social Justice and Equity in Education
By Kamden K. Strunk, Leslie Ann Locke
http://link.springer.com/openurl?genre=book&isbn=978-3-030-05900-2
education,edtech
Educational Technology
By Ronghuai Huang, J. Michael Spector, Junfeng Yang
http://link.springer.com/openurl?genre=book&isbn=978-981-13-6643-7
education,nations/singapore
School Leadership and Educational Change in Singapore
By Benjamin Wong, Salleh Hairon, Pak Tee Ng
http://link.springer.com/openurl?genre=book&isbn=978-3-319-74746-0
social-science
A Course in Rasch Measurement Theory
By David Andrich, Ida Marais
http://link.springer.com/openurl?genre=book&isbn=978-981-13-7496-8
electrical-engineering
Electrical Machines
By Slobodan N. Vukosavic
http://link.springer.com/openurl?genre=book&isbn=978-1-4614-0400-2
energy
Energy Storage
By Robert Huggins
http://link.springer.com/openurl?genre=book&isbn=978-3-319-21239-5
electrical-engineering
Reactive Power Control in AC Power Systems
By Naser Mahdavi Tabatabaei, Ali Jafari Aghbolaghi, Nicu Bizon, Frede Blaabjerg
http://link.springer.com/openurl?genre=book&isbn=978-3-319-51118-4
energy,economics
Energy Economics
By Peter Zweifel, Aaron Praktiknjo, Georg Erdmann
http://link.springer.com/openurl?genre=book&isbn=978-3-662-53022-1
solar-power,wind-power
Solar PV and Wind Energy Conversion Systems
By S. Sumathi, L. Ashok Kumar, P. Surekha
http://link.springer.com/openurl?genre=book&isbn=978-3-319-14941-7
pollution,climate-change,environmental-science
Air Pollution and Greenhouse Gases
By Zhongchao Tan
http://link.springer.com/openurl?genre=book&isbn=978-981-287-212-8
energy
Energy Harvesting and Energy Efficiency
By Nicu Bizon, Naser Mahdavi Tabatabaei, Frede Blaabjerg, Erol Kurt
http://link.springer.com/openurl?genre=book&isbn=978-3-319-49875-1
energy,economics
Energy and the Wealth of Nations
By Charles A.S. Hall, Kent Klitgaard
http://link.springer.com/openurl?genre=book&isbn=978-3-319-66219-0
energy
Building Energy Modeling with OpenStudio
By Larry Brackney, Andrew Parker, Daniel Macumber, Kyle Benne
http://link.springer.com/openurl?genre=book&isbn=978-3-319-77809-9
electrical-engineering
Off-Grid Electrical Systems in Developing Countries
By Henry Louie
http://link.springer.com/openurl?genre=book&isbn=978-3-319-91890-7
electrical-engineering,power-electronics
Fundamentals of Power Electronics
By Robert W. Erickson, Dragan Maksimovic
http://link.springer.com/openurl?genre=book&isbn=978-0-306-48048-5
probability,software-tools/matlab
Intuitive Probability and Random Processes using MATLAB®
By Steven Kay
http://link.springer.com/openurl?genre=book&isbn=978-0-387-24158-6
engineering,engineering-mechanics
Fatigue of Structures and Materials
By J. Schijve
http://link.springer.com/openurl?genre=book&isbn=978-1-4020-6808-9
engineering,robotics
Fundamentals of Robotic Mechanical Systems
By Jorge Angeles
http://link.springer.com/openurl?genre=book&isbn=978-3-319-01851-5
electronics,verilog
Introduction to Logic Circuits & Logic Design with Verilog
By Brock J. LaMeres
http://link.springer.com/openurl?genre=book&isbn=978-3-319-53883-9
engineering,structural-analysis
Structural Analysis
By O. A. Bauchau, J.I. Craig
http://link.springer.com/openurl?genre=book&isbn=978-90-481-2516-6
engineering,manufacturing
Additive Manufacturing Technologies
By Ian Gibson, David W. Rosen, Brent Stucker
http://link.springer.com/openurl?genre=book&isbn=978-1-4419-1120-9