anystyle 1.0.1 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: anystyle
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sylvester Keil
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-06-06 00:00:00.000000000 Z
11
+ date: 2018-07-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bibtex-ruby
@@ -82,13 +82,13 @@ extra_rdoc_files:
82
82
  - README.md
83
83
  - LICENSE
84
84
  files:
85
+ - ".gitattributes"
85
86
  - HISTORY.md
86
87
  - LICENSE
87
88
  - README.md
88
89
  - lib/anystyle.rb
89
90
  - lib/anystyle/dictionary.rb
90
91
  - lib/anystyle/dictionary/gdbm.rb
91
- - lib/anystyle/dictionary/lmdb.rb
92
92
  - lib/anystyle/dictionary/marshal.rb
93
93
  - lib/anystyle/dictionary/redis.rb
94
94
  - lib/anystyle/document.rb
@@ -130,6 +130,7 @@ files:
130
130
  - lib/anystyle/normalizer/punctuation.rb
131
131
  - lib/anystyle/normalizer/quotes.rb
132
132
  - lib/anystyle/normalizer/type.rb
133
+ - lib/anystyle/normalizer/unicode.rb
133
134
  - lib/anystyle/normalizer/volume.rb
134
135
  - lib/anystyle/parser.rb
135
136
  - lib/anystyle/support.rb
@@ -158,9 +159,6 @@ files:
158
159
  - res/parser/core.xml
159
160
  - res/parser/gold.xml
160
161
  - res/parser/good.xml
161
- - res/parser/stanford-books.xml
162
- - res/parser/stanford-diss.xml
163
- - res/parser/stanford-theses.xml
164
162
  - res/parser/ugly.xml
165
163
  homepage: http://anystyle.io
166
164
  licenses:
@@ -1,67 +0,0 @@
1
- module AnyStyle
2
- require 'lmdb'
3
-
4
- class Dictionary
5
- class LMDB < Dictionary
6
- @defaults = {
7
- path: File.expand_path('../data', __FILE__),
8
- mapsize: 1 << 22,
9
- writemap: true,
10
- mapasync: true
11
- }
12
-
13
- attr_reader :env
14
-
15
- def initialize(options = {})
16
- super(self.class.defaults.merge(options))
17
- end
18
-
19
- def open
20
- unless open?
21
- @env = ::LMDB.new(path, lmdb_options)
22
- @db = @env.database create: true
23
- end
24
-
25
- self
26
- ensure
27
- populate! if empty?
28
- end
29
-
30
- def close
31
- env.close if open?
32
- end
33
-
34
- def open?
35
- !db.nil?
36
- end
37
-
38
- def empty?
39
- open? and db.size == 0
40
- end
41
-
42
- def truncate
43
- close
44
- %w{ data.mdb lock.mdb }.each do |mdb|
45
- mdb = File.join(path, mdb)
46
- File.unlink(mdb) if File.exists?(mdb)
47
- end
48
- end
49
-
50
- def get(key)
51
- db[key.to_s].to_i
52
- end
53
-
54
- def put(key, value)
55
- db[key.to_s] = value.to_i.to_s
56
- end
57
-
58
- def path
59
- options[:path]
60
- end
61
-
62
- def lmdb_options
63
- options.reject { |k| [:path, :source].include?(k) }
64
- end
65
- end
66
- end
67
- end
@@ -1,2280 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <dataset>
3
- <sequence>
4
- <author>Culler, Jonathan.</author>
5
- <date>1976.</date>
6
- <title>Saussure.</title>
7
- <location>London:</location>
8
- <publisher>Fontana Collins.</publisher>
9
- </sequence>
10
- <sequence>
11
- <author>———.</author>
12
- <date>1996.</date>
13
- <title>Classical Archaeology: Experiences of the Discipline.</title>
14
- <location>London:</location>
15
- <publisher>Routledge.</publisher>
16
- </sequence>
17
- <sequence>
18
- <author>Shelley, Percy Bysshe.</author>
19
- <date>2004.</date>
20
- <title>Complete Poetry.</title>
21
- <editor>Eds. Donald H Reiman and Neilm Fraistat.</editor>
22
- <location>Baltimore:</location>
23
- <publisher>Johns Hopkins University Press.</publisher>
24
- </sequence>
25
- <sequence>
26
- <author>Holtorf, Cornelius.</author>
27
- <date>2005.</date>
28
- <title>From Stonehenge to Las Vegas: Archaeology as Popular Culture.</title>
29
- <location>Walnut Creek, CA:</location>
30
- <publisher>AltaMira Press.</publisher>
31
- </sequence>
32
- <sequence>
33
- <author>Wainwright, Clive.</author>
34
- <date>1989.</date>
35
- <title>The Romantic Interior: The British Collector at Home, 1750–1850.</title>
36
- <location>New Haven, CT:</location>
37
- <publisher>Yale University Press.</publisher>
38
- </sequence>
39
- <sequence>
40
- <author>Burke, James.</author>
41
- <date>2000.</date>
42
- <title>Circles: 50 Round Trips Through History, Technology, Science, Culture.</title>
43
- <location>New York:</location>
44
- <publisher>Simon &amp; Schuster.</publisher>
45
- </sequence>
46
- <sequence>
47
- <author>Beck, Ulrich.</author>
48
- <date>1992.</date>
49
- <title>Risk Society: Towards a New Modernity.</title>
50
- <location>London:</location>
51
- <publisher>Sage.</publisher>
52
- </sequence>
53
- <sequence>
54
- <author>Gordon, Alexander.</author>
55
- <date>1726.</date>
56
- <title>Itinerarium septentrionale: or, A journey thro' most of the counties of Scotland, and those in the north of England. In two parts ... illus- trated with sixty-six copper plates.</title>
57
- <location>London:</location>
58
- <note>Printed for the author and sold by G. Strahan etc.</note>
59
- </sequence>
60
- <sequence>
61
- <author>———.</author>
62
- <date>1996.</date>
63
- <title>The Discovery of the Past: The Origins of Archaeology.</title>
64
- <location>London:</location>
65
- <publisher>British Museum Press.</publisher>
66
- </sequence>
67
- <sequence>
68
- <author>Gregory, Derek.</author>
69
- <date>1994.</date>
70
- <title>Geographical Imaginations.</title>
71
- <location>Oxford, UK:</location>
72
- <publisher>Blackwell.</publisher>
73
- </sequence>
74
- <sequence>
75
- <author>Hutton, James.</author>
76
- <date>1788.</date>
77
- <title>Theory of the earth; or, An investigation of the laws observ- able in the composition, dissolution, and restoration of land upon the globe.</title>
78
- <location>Edinburgh.</location>
79
- </sequence>
80
- <sequence>
81
- <author>———.</author>
82
- <date>1836.</date>
83
- <title>Tales of a Grandfather.</title>
84
- <location>Edinburgh:</location>
85
- <publisher>R. Cadell.</publisher>
86
- </sequence>
87
- <sequence>
88
- <author>———.</author>
89
- <date>1805.</date>
90
- <title>Biographical account of the late James Hutton, FRS Edinburgh.</title>
91
- <journal>Transactions of the Royal Society of Edinburgh</journal>
92
- <volume>5:</volume>
93
- <pages>39–99.</pages>
94
- </sequence>
95
- <sequence>
96
- <author>———.</author>
97
- <date>1973.</date>
98
- <title>Social Justice and the City.</title>
99
- <location>London:</location>
100
- <publisher>Edward Arnold.</publisher>
101
- </sequence>
102
- <sequence>
103
- <author>Tilley, Christopher.</author>
104
- <date>1994.</date>
105
- <title>A Phenomenology of Landscape: Places, Paths and Monuments.</title>
106
- <location>Oxford:</location>
107
- <publisher>Berg.</publisher>
108
- </sequence>
109
- <sequence>
110
- <author>Wallace, Jennifer.</author>
111
- <date>2004.</date>
112
- <title>Digging the Dirt: The Archaeological Imagination.</title>
113
- <location>London:</location>
114
- <publisher>Duckworth.</publisher>
115
- </sequence>
116
- <sequence>
117
- <author>———.</author>
118
- <date>1783.</date>
119
- <title>A Select Collection of English Songs.</title>
120
- <location>London:</location>
121
- <publisher>Printed for J. Johnson.</publisher>
122
- </sequence>
123
- <sequence>
124
- <author>———.</author>
125
- <date>1810.</date>
126
- <title>The Itinerary of Greece, with a commentary on Pausanias and Strabo, and an account of the Monuments of Antiquity at present existing in that country, compiled in the years 1801, 2, 5, 6 etc.</title>
127
- <location>London:</location>
128
- <publisher>T. Payne.</publisher>
129
- </sequence>
130
- <sequence>
131
- <author>Harvey, David.</author>
132
- <date>1969.</date>
133
- <title>Explanation in Geography.</title>
134
- <location>London:</location>
135
- <publisher>Edward Arnold.</publisher>
136
- </sequence>
137
- <sequence>
138
- <author>———.</author>
139
- <date>1788.</date>
140
- <title>Theory of the earth, or, an investigation of the laws observable in the composition, dissoultion, and restoration of land upon the globe.</title>
141
- <journal>Transactions of the Royal Society of Edinburgh</journal>
142
- <volume>1:</volume>
143
- <pages>209–304.</pages>
144
- </sequence>
145
- <sequence>
146
- <editor>Neville, Brian, and Johanne Villeneuve, eds.</editor>
147
- <date>2002.</date>
148
- <title>Waste-Site Stories: The Recycling of Memory.</title>
149
- <location>Albany, NY:</location>
150
- <publisher>SUNY.</publisher>
151
- </sequence>
152
- <sequence>
153
- <author>Piggott, Stuart.</author>
154
- <date>1950.</date>
155
- <title>William Stukeley, an Eighteenth-century Antiquary.</title>
156
- <location>Oxford, UK:</location>
157
- <publisher>Clarendon Press.</publisher>
158
- </sequence>
159
- <sequence>
160
- <author>Salzani, Carlo.</author>
161
- <date>2007.</date>
162
- <title>The city as crime scene: Walter Benjamin and the traces of the detective.</title>
163
- <journal>New German Critique</journal>
164
- <volume>34:</volume>
165
- <pages>165–87.</pages>
166
- </sequence>
167
- <sequence>
168
- <author>Latour, Bruno, and Shirley Strum.</author>
169
- <date>1986.</date>
170
- <title>Human social origins: Oh please, tell us another story!, .</title>
171
- <journal>Journal of Social and Biological Structures</journal>
172
- <volume>9:</volume>
173
- <pages>169–87.</pages>
174
- </sequence>
175
- <sequence>
176
- <author>———.</author>
177
- <date>2007.</date>
178
- <title>Archaeology is a Brand!: the Meaning of Archaeology in Contemporary Popular Culture.</title>
179
- <location>Walnut Creek, CA:</location>
180
- <publisher>Left Coast Press, Inc.</publisher>
181
- </sequence>
182
- <sequence>
183
- <author>Pearson, Mike.</author>
184
- <date>2007.</date>
185
- <title>In Comes I: Performance, Memory, and Landscape.</title>
186
- <location>Exeter:</location>
187
- <publisher>University of Exeter Press.</publisher>
188
- </sequence>
189
- <sequence>
190
- <author>Hutchinson, William.</author>
191
- <date>1778.</date>
192
- <title>A View of Northumberland, with an Excursion to the Abbey of Mailross in Scotland.</title>
193
- <location>Newcastle:</location>
194
- <publisher>Printed by T. Saint by W. Charnley, Vesey and Whitfield.</publisher>
195
- </sequence>
196
- <sequence>
197
- <author>Thomas, Julian.</author>
198
- <date>2004.</date>
199
- <title>Archaeology and Modernity.</title>
200
- <location>London:</location>
201
- <publisher>Routledge.</publisher>
202
- </sequence>
203
- <sequence>
204
- <author>Stengers, Isabelle.</author>
205
- <date>2005.</date>
206
- <title>Introductory notes on an ecology of practices.</title>
207
- <journal>Cultural Studies</journal>
208
- <volume>11:</volume>
209
- <pages>183–96.</pages>
210
- </sequence>
211
- <sequence>
212
- <author>Daniel, Glyn Edmund.</author>
213
- <date>1950.</date>
214
- <title>A Hundred Years of Archaeology.</title>
215
- <location>London:</location>
216
- <publisher>Duckworth.</publisher>
217
- </sequence>
218
- <sequence>
219
- <author>Giddens, Anthony.</author>
220
- <date>1991.</date>
221
- <title>Modernity and Self-Identity: Self and Society in the Late Modern Age.</title>
222
- <location>Cambridge, UK:</location>
223
- <publisher>Blackwell Polity.</publisher>
224
- </sequence>
225
- <sequence>
226
- <author>Sloterdijk, Peter.</author>
227
- <date>2004.</date>
228
- <title>Sphären III: Schäume, Plurale Sphärolgie.</title>
229
- <location>Frankfurt:</location>
230
- <publisher>Suhrkamp.</publisher>
231
- </sequence>
232
- <sequence>
233
- <author>———.</author>
234
- <date>1791.</date>
235
- <title>Pieces of Ancient Popular Poetry: from Authentic Manuscripts and Old Printed Copies.</title>
236
- <location>London,:</location>
237
- <note>Printed by C. Clarke, for T. and J. Egerton.</note>
238
- </sequence>
239
- <sequence>
240
- <author>———.</author>
241
- <date>1992.</date>
242
- <title>Experiencing the Past: On the Character of Archaeology.</title>
243
- <location>London:</location>
244
- <publisher>Routledge.</publisher>
245
- </sequence>
246
- <sequence>
247
- <author>Benjamin, Walter.</author>
248
- <date>1970.</date>
249
- <title>Theses on the philosophy of history, in Illuminations.</title>
250
- <location>London:</location>
251
- <publisher>Jonathan Cape.</publisher>
252
- </sequence>
253
- <sequence>
254
- <author>———.</author>
255
- <date>1820.</date>
256
- <title>Robin Hood: a collection of all the ancient poems, songs, and bal- lads, now extant, relative to that celebrated English outlaw.</title>
257
- <location>London:</location>
258
- <publisher>Printed for Longman, Hurst, Rees, Orme.</publisher>
259
- </sequence>
260
- <sequence>
261
- <author>———.</author>
262
- <date>2004.</date>
263
- <title>Past Poetic: Archaeology in the Poetry of W.B. Yeats and Seamus Heaney.</title>
264
- <location>London:</location>
265
- <publisher>Duckworth.</publisher>
266
- </sequence>
267
- <sequence>
268
- <author>Percy, Thomas.</author>
269
- <date>1765.</date>
270
- <title>Reliques of Ancient English Poetry.</title>
271
- <location>London:</location>
272
- <publisher>Printed for J. Dodsley.</publisher>
273
- </sequence>
274
- <sequence>
275
- <author>Ritson, Joseph.</author>
276
- <date>1782.</date>
277
- <title>Observations on the three first volumes of The history of English poetry.</title>
278
- <location>London:</location>
279
- <publisher>J. Stockdale etc.</publisher>
280
- </sequence>
281
- <sequence>
282
- <author>Macpherson, James.</author>
283
- <date>1765.</date>
284
- <title>The Works of Ossian, the Son of Fingal.</title>
285
- <location>London:</location>
286
- <publisher>Printed for T.Becket and P.A. Dehondt.</publisher>
287
- </sequence>
288
- <sequence>
289
- <author>Hutton, William.</author>
290
- <date>1781.</date>
291
- <title>An History of Birmingham to the end of the year 1780.</title>
292
- <location>Birmingham:</location>
293
- <publisher>Pearson.</publisher>
294
- </sequence>
295
- <sequence>
296
- <author>Hall, Peter.</author>
297
- <date>1998.</date>
298
- <title>Cities in Civilization: Culture, Innovation, and Urban Order.</title>
299
- <location>London:</location>
300
- <publisher>Weidenfeld &amp; Nicolson.</publisher>
301
- </sequence>
302
- <sequence>
303
- <author>———.</author>
304
- <date>1802.</date>
305
- <title>History of the Roman Wall, which crosses the island of Britain from the German Ocean to the Irish Sea. Describing its Ancient State, and its Appearance in the Year 1801.</title>
306
- <location>London:</location>
307
- <publisher>John Nichols etc.</publisher>
308
- </sequence>
309
- <sequence>
310
- <author>———.</author>
311
- <date>1807.</date>
312
- <title>The geography and antiquities of Ithaca.</title>
313
- <location>London:</location>
314
- <publisher>Printed by J. Wright for Longman, Hurst, Rees, and Orme.</publisher>
315
- </sequence>
316
- <sequence>
317
- <author>Horsley, John.</author>
318
- <date>1732.</date>
319
- <title>Britannia Romana, or, The Roman Antiquities of Britain.</title>
320
- <location>London:</location>
321
- <publisher>Printed for J. Osborn and T. Longman.</publisher>
322
- </sequence>
323
- <sequence>
324
- <author>Myrone, Martin, a nd Lucy Peltz.</author>
325
- <date>1999.</date>
326
- <title>Producing the Past: Aspects of Antiquarian Culture and Practice, 1700–1850.</title>
327
- <location>Brookfield, VT:</location>
328
- <publisher>Ashgate.</publisher>
329
- </sequence>
330
- <sequence>
331
- <author>———.</author>
332
- <date>1794.</date>
333
- <title>An Investigation of the principles of knowledge and of the progress of reason, from sense to science and philosophy.</title>
334
- <location>London:</location>
335
- <publisher>A. Strahan and T. Cadell.</publisher>
336
- </sequence>
337
- <sequence>
338
- <author>Shapin, S., and S. Schaffer.</author>
339
- <date>1986.</date>
340
- <title>Leviathan and the Air-Pump: Hobbes, Boyle and the Experimental Life.</title>
341
- <location>Princeton, NJ:</location>
342
- <publisher>Princeton University Press.</publisher>
343
- </sequence>
344
- <sequence>
345
- <author>Foucault, Michel.</author>
346
- <date>1972.</date>
347
- <title>The Archaeology of Knowledge.</title>
348
- <location>London:</location>
349
- <publisher>Tavistock/ Routledge.</publisher>
350
- </sequence>
351
- <sequence>
352
- <author>Lockhart, John Gibson.</author>
353
- <date>1850.</date>
354
- <title>Memoirs of the Life of Sir Walter Scott, Bart.</title>
355
- <location>Edinburgh:</location>
356
- <publisher>Cadell.</publisher>
357
- </sequence>
358
- <sequence>
359
- <author>Butterworth, George, &amp; Jarrett, Nicholas.</author>
360
- <date>1991.</date>
361
- <title>What minds have in common in space: Spatial mechanisms serving joint visual attention in infancy.</title>
362
- <journal>British Journal of Developmental Psychology</journal>
363
- <volume>9,</volume>
364
- <pages>55–72.</pages>
365
- </sequence>
366
- <sequence>
367
- <author>Maneva, Blagovesta, &amp; Genesee, Fred.</author>
368
- <date>2002.</date>
369
- <title>Bilingual babbling: Evidence for language differentiation in dual language acquisition.</title>
370
- <editor>In B. Skarabela, S. Fish, &amp; A. H.-J. Do (eds.),</editor>
371
- <container-title>Proceedings of the 26th Boston University Conference on Language Development</container-title>
372
- <pages>(383–392).</pages>
373
- <location>Somerville, MA:</location>
374
- <publisher>Cascadilla Press.</publisher>
375
- </sequence>
376
- <sequence>
377
- <author>Colas, Annie.</author>
378
- <date>1999.</date>
379
- <title>Introducing infants to referential events: A developmental study of material ostensive marking in French.</title>
380
- <journal>Journal of Child Language</journal>
381
- <volume>26,</volume>
382
- <pages>113–131.</pages>
383
- </sequence>
384
- <sequence>
385
- <author>Wernicke, Carl.</author>
386
- <date>1874.</date>
387
- <title>Der aphasische Symptomencomplex: Eine psychologische Studie auf anatomischer Basis.</title>
388
- <location>Breslan:</location>
389
- <publisher>Cohn &amp; Weigert.</publisher>
390
- </sequence>
391
- <sequence>
392
- <author>Mervis, Carolyn B., &amp; Greco, Carolyn.</author>
393
- <date>1984.</date>
394
- <title>Parts and early conceptual development: Comment on Tversky &amp; Hemenway.</title>
395
- <journal>Journal of Experimental Psychology: General</journal>
396
- <volume>113,</volume>
397
- <pages>194–197.</pages>
398
- </sequence>
399
- <sequence>
400
- <author>Mintz, Toben H.</author>
401
- <date>2002.</date>
402
- <title>Category induction from distributional cues in an artificial language.</title>
403
- <journal>Memory &amp; Cognition</journal>
404
- <volume>30,</volume>
405
- <pages>678–686.</pages>
406
- </sequence>
407
- <sequence>
408
- <author>Lieven, Elena V. M.</author>
409
- <date>1978.</date>
410
- <title>Turn-taking and pragmatics: Two issues in early child language.</title>
411
- <editor>In R. N. Campbell &amp; P. T. Smith (eds.),</editor>
412
- <container-title>Recent advances in the psychology of language</container-title>
413
- <pages>(215–236).</pages>
414
- <location>London:</location>
415
- <publisher>Plenum.</publisher>
416
- </sequence>
417
- <sequence>
418
- <author>Muller, Eric; Hollien, Harry; &amp; Murry, Thomas.</author>
419
- <date>1974.</date>
420
- <title>Perceptual responses to infant crying – identification of cry types.</title>
421
- <journal>Journal of Child Language</journal>
422
- <volume>1,</volume>
423
- <pages>89–95.</pages>
424
- </sequence>
425
- <sequence>
426
- <author>Purcell, April K.</author>
427
- <date>1984.</date>
428
- <title>Code shifting Hawaiian style: Children’s accommodations along a decreolizing continuum.</title>
429
- <journal>International Journal of the Sociology of Language</journal>
430
- <volume>46,</volume>
431
- <pages>71–86.</pages>
432
- </sequence>
433
- <sequence>
434
- <author>Bates, Elizabeth.</author>
435
- <date>1976.</date>
436
- <title>Language and context: The acquisition of pragmatics.</title>
437
- <location>New York:</location>
438
- <publisher>Academic Press.</publisher>
439
- </sequence>
440
- <sequence>
441
- <author>Shatz, Marilyn.</author>
442
- <date>1983.</date>
443
- <title>Communication.</title>
444
- <editor>In J. H. Flavell &amp; E. M. Markman (eds.),</editor>
445
- <container-title>Handbook of child psychology, vol. III: Cognitive development</container-title>
446
- <edition>(4th edn)</edition>
447
- <pages>(841–889).</pages>
448
- <location>New York:</location>
449
- <publisher>Wiley.</publisher>
450
- </sequence>
451
- <sequence>
452
- <author>Prince, Ellen.</author>
453
- <date>1981.</date>
454
- <title>Toward a taxonomy of given-new information.</title>
455
- <editor>In P. Cole (ed.),</editor>
456
- <container-title>Radical pragmatics</container-title>
457
- <pages>(223–255).</pages>
458
- <location>New York:</location>
459
- <publisher>Academic Press.</publisher>
460
- </sequence>
461
- <sequence>
462
- <author>Genesee, Fred.</author>
463
- <date>2006.</date>
464
- <title>Bilingual first language acquisition in perspective.</title>
465
- <editor>In P. McCardle &amp; E. Hoff (eds.),</editor>
466
- <container-title>Childhood bilingualism</container-title>
467
- <pages>(45–67).</pages>
468
- <location>Clevedon, UK:</location>
469
- <publisher>Multilingual Matters.</publisher>
470
- </sequence>
471
- <sequence>
472
- <author>Bates, Elizabeth; Camaioni, Luigia; &amp; Volterra, Virginia.</author>
473
- <date>1975.</date>
474
- <title>The acquisition of performatives prior to speech.</title>
475
- <journal>Merrill-Palmer Quarterly</journal>
476
- <volume>21,</volume>
477
- <pages>205–226.</pages>
478
- </sequence>
479
- <sequence>
480
- <author>Rosch, Eleanor.</author>
481
- <date>1973.</date>
482
- <title>On the internal structure of perceptual and semantic categories.</title>
483
- <editor>In T. E. Moore (ed.),</editor>
484
- <container-title>Cognitive development and the acquisition of language</container-title>
485
- <pages>(111–144).</pages>
486
- <location>New York:</location>
487
- <publisher>Academic Press.</publisher>
488
- </sequence>
489
- <sequence>
490
- <author>Maclay, Howard, &amp; Osgood, Charles E.</author>
491
- <date>1959.</date>
492
- <title>Hesitation phenomena in spontaneous English speech.</title>
493
- <journal>Word</journal>
494
- <volume>15,</volume>
495
- <pages>19–44.</pages>
496
- </sequence>
497
- <sequence>
498
- <author>Goodman, Judith C.; McDonough, Laraine; &amp; Brown, Natasha B.</author>
499
- <date>1998.</date>
500
- <title>The role of semantic context and memory in the acquisition of novel nouns.</title>
501
- <journal>Child Development</journal>
502
- <volume>69,</volume>
503
- <pages>1330–1344.</pages>
504
- </sequence>
505
- <sequence>
506
- <author>Baumgartner, Emma, &amp; Devescovi, Antonella.</author>
507
- <date>1996.</date>
508
- <title>Come e perché nelle favole raccontate dai bambini.</title>
509
- <location>Ripatransone:</location>
510
- <publisher>Edizioni Sestante.</publisher>
511
- </sequence>
512
- <sequence>
513
- <author>Philips, Susan U.</author>
514
- <date>1972.</date>
515
- <title>Participant structures and communicative competence: Warm Springs children in community and classroom.</title>
516
- <editor>In C. Cazden, V. John, &amp; D. Hymes (eds.),</editor>
517
- <container-title>Functions of language in the classroom</container-title>
518
- <pages>(370–394).</pages>
519
- <location>New York:</location>
520
- <publisher>Teachers College Press.</publisher>
521
- </sequence>
522
- <sequence>
523
- <author>Chambers, J. K.</author>
524
- <date>1992.</date>
525
- <title>Dialect acquisition.</title>
526
- <journal>Language</journal>
527
- <volume>68,</volume>
528
- <pages>673–705.</pages>
529
- </sequence>
530
- <sequence>
531
- <author>Gelman, Susan A.; Coley, John D.; Rosengren, Karl S.; Hartman, Erin; &amp; Pappas, Athina.</author>
532
- <date>1998a.</date>
533
- <title>Beyond labeling: The role of maternal input in the acquisition of richly structured categories.</title>
534
- <journal>Monographs of the Society for Research in Child Development</journal>
535
- <volume>63 (serial no. 253).</volume>
536
- </sequence>
537
- <sequence>
538
- <author>Wong Fillmore, Lily.</author>
539
- <date>1991.</date>
540
- <title>When learning a second language means losing the first.</title>
541
- <journal>Early Childhood Research Quarterly</journal>
542
- <volume>6,</volume>
543
- <pages>323–346.</pages>
544
- </sequence>
545
- <sequence>
546
- <author>Kroodsma, Donald E., &amp; Pickert, Roberta.</author>
547
- <date>1980.</date>
548
- <title>Environmentally dependent sensitive periods for avian vocal learning.</title>
549
- <journal>Nature</journal>
550
- <volume>288,</volume>
551
- <pages>477–479.</pages>
552
- </sequence>
553
- <sequence>
554
- <author>Jusczyk, Peter W.; Cutler, Anne; &amp; Redanz, Nancy J.</author>
555
- <date>1993.</date>
556
- <title>Infants’ preference for the predominant stress patterns of English words.</title>
557
- <journal>Child Development</journal>
558
- <volume>64,</volume>
559
- <pages>675–687.</pages>
560
- </sequence>
561
- <sequence>
562
- <author>Bowerman, Melissa.</author>
563
- <date>1985b.</date>
564
- <title>What shapes children’s grammars?</title>
565
- <editor>In D. I. Slobin (ed.),</editor>
566
- <container-title>The crosslinguistic study of language acquisition,</container-title>
567
- <volume>vol. II</volume>
568
- <pages>(1257–1319).</pages>
569
- <location>Hillsdale, NJ:</location>
570
- <publisher>Lawrence Erlbaum.</publisher>
571
- </sequence>
572
- <sequence>
573
- <author>Au, Terry K.-F., &amp; Markman, Ellen M.</author>
574
- <date>1987.</date>
575
- <title>Acquiring word meanings via linguistic contrast.</title>
576
- <journal>Cognitive Development</journal>
577
- <volume>2,</volume>
578
- <pages>217–236.</pages>
579
- </sequence>
580
- <sequence>
581
- <author>Merriman, William E., &amp; Bowman, Laura L.</author>
582
- <date>1989.</date>
583
- <title>The mutual exclusivity bias in children’s word learning.</title>
584
- <journal>Monographs of the Society for Research in Child Development</journal>
585
- <volume>54 (serial no. 220).</volume>
586
- </sequence>
587
- <sequence>
588
- <author>Capirci, Olga; Contaldo, Annarita; Caselli, M. Cristina; &amp; Volterra, Virginia.</author>
589
- <date>2005.</date>
590
- <title>From action to language through gesture.</title>
591
- <journal>Gesture</journal>
592
- <volume>5,</volume>
593
- <pages>155–177.</pages>
594
- </sequence>
595
- <sequence>
596
- <author>Preissler, Melissa A., &amp; Carey, Susan.</author>
597
- <date>2004.</date>
598
- <title>Do both pictures and words function as symbols for 18- and 24-month-old children?</title>
599
- <journal>Journal of Cognition &amp; Development</journal>
600
- <volume>5,</volume>
601
- <pages>185–212.</pages>
602
- </sequence>
603
- <sequence>
604
- <author>Dowty, David.</author>
605
- <date>1991.</date>
606
- <title>Thematic proto-roles and argument selection.</title>
607
- <journal>Language</journal>
608
- <volume>67,</volume>
609
- <pages>547–619.</pages>
610
- </sequence>
611
- <sequence>
612
- <author>Bloom, Paul.</author>
613
- <date>2000.</date>
614
- <title>How children learn the meanings of words.</title>
615
- <location>Cambridge, MA:</location>
616
- <publisher>MIT Press.</publisher>
617
- </sequence>
618
- <sequence>
619
- <author>Greenfield, Patricia M., &amp; Smith, Joshua.</author>
620
- <date>1976.</date>
621
- <title>The structure of communication in early language development.</title>
622
- <location>New York:</location>
623
- <publisher>Academic Press.</publisher>
624
- </sequence>
625
- <sequence>
626
- <author>Elman, Jeffrey L.; Bates, Elizabeth A.; Johnson, Mark H.; Karmiloff-Smith, Annette; Parisi, Domenico; &amp; Plunkett, Kim.</author>
627
- <date>1996.</date>
628
- <title>Rethinking innateness: A connectionist perspective on development.</title>
629
- <location>Cambridge, MA:</location>
630
- <publisher>MIT Press.</publisher>
631
- </sequence>
632
- <sequence>
633
- <author>Brent, Michael R., &amp; Cartwright, Timothy A.</author>
634
- <date>1996.</date>
635
- <title>Distributional regularity and phonotactic constraints are useful for segmentation.</title>
636
- <journal>Cognition</journal>
637
- <volume>61,</volume>
638
- <pages>93–125.</pages>
639
- </sequence>
640
- <sequence>
641
- <author>Clark, Eve V.</author>
642
- <date>1980.</date>
643
- <title>Here’s the top: Nonlinguistic strategies in the acquisition of orientational terms.</title>
644
- <journal>Child Development</journal>
645
- <volume>51,</volume>
646
- <pages>329–338.</pages>
647
- </sequence>
648
- <sequence>
649
- <author>Weisenburger, Janet L.</author>
650
- <date>1976.</date>
651
- <title>A choice of words: Two-year-old speech from a situational point of view.</title>
652
- <journal>Journal of Child Language</journal>
653
- <volume>3,</volume>
654
- <pages>275–281.</pages>
655
- </sequence>
656
- <sequence>
657
- <author>de Villiers, Jill G.</author>
658
- <date>1985.</date>
659
- <title>Learning how to use verbs: Lexical coding and the influence of input.</title>
660
- <journal>Journal of Child Language</journal>
661
- <volume>12,</volume>
662
- <pages>587–595.</pages>
663
- </sequence>
664
- <sequence>
665
- <author>Gleitman, Lila R.</author>
666
- <date>1990.</date>
667
- <title>The structural sources of verb meanings.</title>
668
- <journal>Language Acquisition</journal>
669
- <volume>1,</volume>
670
- <pages>3–55.</pages>
671
- </sequence>
672
- <sequence>
673
- <author>Waxman, Sandra R., &amp; Senghas, Ann.</author>
674
- <date>1992.</date>
675
- <title>Relations among word meanings in early lexical development.</title>
676
- <journal>Developmental Psychology</journal>
677
- <volume>28,</volume>
678
- <pages>862–873.</pages>
679
- </sequence>
680
- <sequence>
681
- <author>Hickmann, Maya.</author>
682
- <date>1991.</date>
683
- <title>The development of discourse cohesion: Some functional and cross-linguistic issues.</title>
684
- <editor>In G. Piéraut-Le-Bonniec &amp; M. Dolitsky (eds.),</editor>
685
- <container-title>Language bases, discourse bases: Some aspects of contemporary French-language psycholinguistics research</container-title>
686
- <pages>(157–185).</pages>
687
- <location>Amsterdam:</location>
688
- <publisher>John Benjamins.</publisher>
689
- </sequence>
690
- <sequence>
691
- <author>Schmidt, Chris L.</author>
692
- <date>1996.</date>
693
- <title>Scrutinizing reference: How gesture and speech are coordinated in mother-child interaction.</title>
694
- <journal>Journal of Child Language</journal>
695
- <volume>23,</volume>
696
- <pages>279–305.</pages>
697
- </sequence>
698
- <sequence>
699
- <author>Campbell, Robin N.</author>
700
- <date>2006.</date>
701
- <title>Prescientific studies of language development.</title>
702
- <editor>In K. Brown (gen. ed.),</editor>
703
- <container-title>Encyclopedia of Language &amp; Linguistics</container-title>
704
- <edition>(2nd edn),</edition>
705
- <volume>vol. VI</volume>
706
- <pages>(391–394).</pages>
707
- <location>Oxford:</location>
708
- <publisher>Oxford University Press.</publisher>
709
- </sequence>
710
- <sequence>
711
- <author>Bloom, Lois.</author>
712
- <date>1991.</date>
713
- <title>Language development from two to three.</title>
714
- <location>Cambridge:</location>
715
- <publisher>Cambridge University Press.</publisher>
716
- </sequence>
717
- <sequence>
718
- <author>Slobin, Dan I.</author>
719
- <date>1981.</date>
720
- <title>The origins of grammatical encoding of events.</title>
721
- <editor>In W. Deutsch (ed.),</editor>
722
- <container-title>The child’s construction of language</container-title>
723
- <pages>(185–199).</pages>
724
- <location>London and New York:</location>
725
- <publisher>Academic Press.</publisher>
726
- </sequence>
727
- <sequence>
728
- <author>Goodwyn, Susan W., &amp; Acredolo, Linda P.</author>
729
- <date>1993.</date>
730
- <title>Symbolic gesture vs. word: Is there a modality advantage for onset of symbol use?</title>
731
- <journal>Child Development</journal>
732
- <volume>55,</volume>
733
- <pages>903–910.</pages>
734
- </sequence>
735
- <sequence>
736
- <author>Stern, Clara, &amp; Stern, William.</author>
737
- <date>1928.</date>
738
- <title>Die Kindersprache: Eine psychologische und sprachtheoretische Untersuchung</title>
739
- <edition>(4th rev. edn; 1st edn, 1907).</edition>
740
- <location>Leipzig:</location>
741
- <publisher>Barth.</publisher>
742
- <note>(Reprinted Darmstadt: Wissenschaftliche Buchgesellschaft, 1965.)</note>
743
- </sequence>
744
- <sequence>
745
- <author>Clark, Eve V.</author>
746
- <date>1971.</date>
747
- <title>On the acquisition of before and after.</title>
748
- <journal>Journal of Verbal Learning &amp; Verbal Behavior</journal>
749
- <volume>10,</volume>
750
- <pages>266–275.</pages>
751
- </sequence>
752
- <sequence>
753
- <author>Estigarribia, Bruno, &amp; Clark, Eve V.</author>
754
- <date>2007.</date>
755
- <title>Getting and maintaining attention in talk to young children.</title>
756
- <journal>Journal of Child Language</journal>
757
- <volume>34,</volume>
758
- <pages>799–814.</pages>
759
- </sequence>
760
- <sequence>
761
- <author>Deuchar, Margaret, &amp; Quay, Suzanne.</author>
762
- <date>2000.</date>
763
- <title>Bilingual acquisition: Theoretical implications of a case study.</title>
764
- <location>Oxford:</location>
765
- <publisher>Oxford University Press.</publisher>
766
- </sequence>
767
- <sequence>
768
- <author>Cartmill, Erica A., &amp; Byrne, Richard W.</author>
769
- <date>2007.</date>
770
- <title>Orangutans modify their gestural signaling according to their audience’s comprehension.</title>
771
- <journal>Current Biology</journal>
772
- <volume>17,</volume>
773
- <pages>1345–1348.</pages>
774
- </sequence>
775
- <sequence>
776
- <author>Abbey, Edward.</author>
777
- <title>Desert Solitaire: A Season in the Wilderness.</title>
778
- <location>New York:</location>
779
- <publisher>Ballantine,</publisher>
780
- <date>1998.</date>
781
- </sequence>
782
- <sequence>
783
- <author>Abbey, Edward.</author>
784
- <title>The Monkey Wrench Gang.</title>
785
- <location>New York:</location>
786
- <publisher>Perennial,</publisher>
787
- <date>2000.</date>
788
- </sequence>
789
- <sequence>
790
- <author>Abram, David.</author>
791
- <title>The Spell of the Sensuous: Perception and Language in a More-Than-Human World.</title>
792
- <location>New York:</location>
793
- <publisher>Vintage,</publisher>
794
- <date>1996.</date>
795
- </sequence>
796
- <sequence>
797
- <author>Adams, Douglas.</author>
798
- <title>The More Than Complete Hitchhiker’s Guide: Complete and Unabridged.</title>
799
- <location>New York:</location>
800
- <publisher>Wings Books,</publisher>
801
- <date>1986.</date>
802
- </sequence>
803
- <sequence>
804
- <editor>Adamson, Joni, Mei Mei Evans, and Rachel Stein, eds.</editor>
805
- <title>The Environmental Justice Reader: Politics, Poetics, and Pedagogy.</title>
806
- <location>Tucson:</location>
807
- <publisher>University of Arizona Press,</publisher>
808
- <date>2002.</date>
809
- </sequence>
810
- <sequence>
811
- <author>Albrow, Martin.</author>
812
- <title>The Global Age: State and Society beyond Modernity.</title>
813
- <location>Cambridge:</location>
814
- <publisher>Polity Press,</publisher>
815
- <date>1996.</date>
816
- </sequence>
817
- <sequence>
818
- <author>Aldiss, Brian.</author>
819
- <title>Earthworks.</title>
820
- <location>Holborn, England:</location>
821
- <publisher>Four Square,</publisher>
822
- <date>1967.</date>
823
- </sequence>
824
- <sequence>
825
- <author>Aldiss, Brian.</author>
826
- <title>“Total Environment.”</title>
827
- <editor>In Clem, Greenberg, and Olander,</editor>
828
- <pages>24–65.</pages>
829
- </sequence>
830
- <sequence>
831
- <author>Alexander, Donald.</author>
832
- <title>“Bioregionalism: Science or Sensibility?”</title>
833
- <journal>Environmental Ethics</journal>
834
- <volume>12</volume>
835
- <date>(1990):</date>
836
- <pages>161–73.</pages>
837
- </sequence>
838
- <sequence>
839
- <author>Amery, Carl.</author>
840
- <title>Das Geheimnis der Krypta.</title>
841
- <location>Munich:</location>
842
- <publisher>List,</publisher>
843
- <date>1990.</date>
844
- </sequence>
845
- <sequence>
846
- <author>Anderson, Benedict.</author>
847
- <title>Imagined Communities: Reflections on the Origins and Spread of Nationalism.</title>
848
- <edition>Rev. ed.</edition>
849
- <location>London:</location>
850
- <publisher>Verso,</publisher>
851
- <date>2006.</date>
852
- </sequence>
853
- <sequence>
854
- <author>Andrade, Mário de.</author>
855
- <title>Macunaíma: O herói sem nenhum caráter.</title>
856
- <location>Belo Horizonte, Brazil:</location>
857
- <publisher>Itatiaia,</publisher>
858
- <date>1987.</date>
859
- </sequence>
860
- <sequence>
861
- <author>Andrade, Mário de.</author>
862
- <title>Macunaíma.</title>
863
- <translator>Translated by E. A. Goodland.</translator>
864
- <location>New York:</location>
865
- <publisher>Random House,</publisher>
866
- <date>1984.</date>
867
- </sequence>
868
- <sequence>
869
- <author>Antonetta, Susanne.</author>
870
- <title>Body Toxic: An Environmental Memoir.</title>
871
- <location>Washington, D.C.:</location>
872
- <publisher>Counterpoint,</publisher>
873
- <date>2002.</date>
874
- </sequence>
875
- <sequence>
876
- <author>Appadurai, Arjun.</author>
877
- <title>Modernity at Large: Cultural Dimensions of Globalization.</title>
878
- <location>Minneapolis:</location>
879
- <publisher>University of Minnesota Press,</publisher>
880
- <date>1996.</date>
881
- </sequence>
882
- <sequence>
883
- <author>Appiah, Kwame Anthony.</author>
884
- <title>Cosmopolitanism: Ethics in a World of Strangers.</title>
885
- <location>New York:</location>
886
- <publisher>Norton,</publisher>
887
- <date>2006.</date>
888
- </sequence>
889
- <sequence>
890
- <title>The Arrival.</title>
891
- <director>Dir. David Twohy.</director>
892
- <note>Perf. Charlie Sheen.</note>
893
- <publisher>Artisan,</publisher>
894
- <location>Santa Monica, Calif.,</location>
895
- <date>1996.</date>
896
- </sequence>
897
- <sequence>
898
- <author>Atkins, Robert.</author>
899
- <title>“Chernobyl and Beyond: Green Issues in the Recent Works of Gabriele Wohmann.”</title>
900
- <journal>Carleton Germanic Papers</journal>
901
- <volume>24</volume>
902
- <date>(1996):</date>
903
- <pages>197–214.</pages>
904
- </sequence>
905
- <sequence>
906
- <title>Back to Chernobyl.</title>
907
- <director>Dir. Bill Kurtis.</director>
908
- <publisher>WGBH Educational Foundation,</publisher>
909
- <date>1989.</date>
910
- </sequence>
911
- <sequence>
912
- <author>Bahn, Paul G., and John Flenley.</author>
913
- <title>Easter Island, Earth Island.</title>
914
- <location>New York:</location>
915
- <publisher>Thames and Hudson,</publisher>
916
- <date>1992.</date>
917
- </sequence>
918
- <sequence>
919
- <author>Ballard, J. G.</author>
920
- <title>“Billennium.”</title>
921
- <container-title>In The Best Short Stories of J. G. Ballard.</container-title>
922
- <location>New York:</location>
923
- <publisher>Holt,</publisher>
924
- <date>1995,</date>
925
- <pages>125–40.</pages>
926
- </sequence>
927
- <sequence>
928
- <author>Ballard, J.</author>
929
- <title>“The Concentration City.”</title>
930
- <container-title>In The Best Short Stories of J. G. Ballard.</container-title>
931
- <location>New York:</location>
932
- <publisher>Holt,</publisher>
933
- <date>1995,</date>
934
- <pages>1–20.</pages>
935
- </sequence>
936
- <sequence>
937
- <author>Basso, Keith.</author>
938
- <title>Wisdom Sits in Places: Landscape and Language among the Western Apache.</title>
939
- <location>Albuquerque:</location>
940
- <publisher>University of New Mexico Press,</publisher>
941
- <date>1996.</date>
942
- </sequence>
943
- <sequence>
944
- <author>Bate, Jonathan.</author>
945
- <title>Romantic Ecology: Wordsworth and the Environmental Tradition.</title>
946
- <location>London:</location>
947
- <publisher>Routledge,</publisher>
948
- <date>1991.</date>
949
- </sequence>
950
- <sequence>
951
- <author>Bauman, Zygmunt.</author>
952
- <title>Postmodern Ethics.</title>
953
- <location>Oxford:</location>
954
- <publisher>Blackwell,</publisher>
955
- <date>1993.</date>
956
- </sequence>
957
- <sequence>
958
- <author>Baumgarten, Lothar.</author>
959
- <genre>Personal communication,</genre>
960
- <date>March 25, 2005.</date>
961
- </sequence>
962
- <sequence>
963
- <author>Bawer, Bruce.</author>
964
- <title>“Bad Company.” Review of Gain, by Richard Powers.</title>
965
- <journal>New York Times Book Review,</journal>
966
- <date>June 21, 1998,</date>
967
- <pages>11.</pages>
968
- </sequence>
969
- <sequence>
970
- <author>Beck, Ulrich.</author>
971
- <title>Der kosmopolitische Blick oder: Krieg ist Frieden.</title>
972
- <location>Frankfurt:</location>
973
- <publisher>Suhrkamp,</publisher>
974
- <date>2004.</date>
975
- </sequence>
976
- <sequence>
977
- <author>Beck, Ulrich.</author>
978
- <title>Risikogesellschaft: Auf dem Weg in eine andere Moderne.</title>
979
- <location>Frankfurt:</location>
980
- <publisher>Suhrkamp,</publisher>
981
- <date>1986.</date>
982
- </sequence>
983
- <sequence>
984
- <author>Beck, Ulrich.</author>
985
- <title>World Risk Society.</title>
986
- <location>Cambridge:</location>
987
- <publisher>Polity Press,</publisher>
988
- <date>1999.</date>
989
- </sequence>
990
- <sequence>
991
- <author>Beck, Ulrich, Anthony Giddens, and Scott Lash.</author>
992
- <title>Reflexive Modernization: Politics, Tradition and Aesthetics in the Modern Social Order.</title>
993
- <location>Cambridge:</location>
994
- <publisher>Polity Press,</publisher>
995
- <date>1994.</date>
996
- </sequence>
997
- <sequence>
998
- <author>Berry, Wendell.</author>
999
- <title>“Farming and the Global Economy.”</title>
1000
- <container-title>In Another Turn of the Crank.</container-title>
1001
- <location>Washington, D.C.:</location>
1002
- <publisher>Counterpoint,</publisher>
1003
- <date>1995,</date>
1004
- <pages>1–7.</pages>
1005
- </sequence>
1006
- <sequence>
1007
- <author>Berry, Wendell.</author>
1008
- <title>“The Regional Motive.”</title>
1009
- <container-title>In A Continuous Harmony: Essays Cultural and Agricultural.</container-title>
1010
- <location>New York:</location>
1011
- <publisher>Harcourt Brace Jovanovich,</publisher>
1012
- <date>1972,</date>
1013
- <pages>63–70.</pages>
1014
- </sequence>
1015
- <sequence>
1016
- <author>Berry, Wendell.</author>
1017
- <title>“Word and Flesh.”</title>
1018
- <container-title>In What Are People For?</container-title>
1019
- <location>New York:</location>
1020
- <publisher>North Point Press,</publisher>
1021
- <date>1990,</date>
1022
- <pages>197–203.</pages>
1023
- </sequence>
1024
- <sequence>
1025
- <author>Berthold-Bond, Daniel.</author>
1026
- <title>“The Ethics of ‘Place’: Reflections on Bioregionalism.”</title>
1027
- <journal>Environmental Ethics</journal>
1028
- <volume>22</volume>
1029
- <date>(spring 2000):</date>
1030
- <pages>5–24.</pages>
1031
- </sequence>
1032
- <sequence>
1033
- <author>Bhabha, Homi K.</author>
1034
- <title>“Unsatisfied: Notes on Vernacular Cosmopolitanism.”</title>
1035
- <container-title>In Text and Nation: Cross-disciplinary Essays on Cultural and National Identities,</container-title>
1036
- <editor>edited by Laura García-Moreno and Peter C. Pfeiffer.</editor>
1037
- <location>Columbia, S.C.:</location>
1038
- <publisher>Camden House,</publisher>
1039
- <date>1996,</date>
1040
- <pages>191–207.</pages>
1041
- </sequence>
1042
- <sequence>
1043
- <author>Biehl, Janet.</author>
1044
- <title>“‘Ecology’ and the Modernization of Fascism in the German Ultra-Right.”</title>
1045
- <journal>Society and Nature</journal>
1046
- <volume>1</volume>
1047
- <date>(1993):</date>
1048
- <pages>130–70.</pages>
1049
- </sequence>
1050
- <sequence>
1051
- <author>Biehl, Janet, and Peter Staudenmaier.</author>
1052
- <title>Ecofascism: Lessons from the German Experience.</title>
1053
- <location>Edinburgh:</location>
1054
- <publisher>AK Press,</publisher>
1055
- <date>1995.</date>
1056
- </sequence>
1057
- <sequence>
1058
- <editor>Bird, Jon, Barry Curtis, Tim Putnam, George Robertson, and Lisa Tickner, eds.</editor>
1059
- <title>Mapping the Futures: Local Cultures, Global Change.</title>
1060
- <location>London:</location>
1061
- <publisher>Routledge,</publisher>
1062
- <date>1993.</date>
1063
- </sequence>
1064
- <sequence>
1065
- <author>Blair, Sara.</author>
1066
- <title>“Cultural Geography and the Place of the Literary.”</title>
1067
- <journal>American Literary History</journal>
1068
- <volume>10</volume>
1069
- <date>(1998):</date>
1070
- <pages>544–67.</pages>
1071
- </sequence>
1072
- <sequence>
1073
- <author>Blish, James.</author>
1074
- <title>“Statistician’s Day.”</title>
1075
- <editor>In Clem, Greenberg, and Olander,</editor>
1076
- <pages>212–22.</pages>
1077
- </sequence>
1078
- <sequence>
1079
- <author>Blish, James, and Norman L. Knight.</author>
1080
- <title>A Torrent of Faces.</title>
1081
- <location>Garden City, N.Y.:</location>
1082
- <publisher>Doubleday,</publisher>
1083
- <date>1967.</date>
1084
- </sequence>
1085
- <sequence>
1086
- <author>Botkin, Daniel B.</author>
1087
- <title>Discordant Harmonies: A New Ecology for the Twenty-first Century.</title>
1088
- <location>New York:</location>
1089
- <publisher>Oxford University Press,</publisher>
1090
- <date>1990.</date>
1091
- </sequence>
1092
- <sequence>
1093
- <author>Boulding, Kenneth E.</author>
1094
- <title>“The Economics of the Coming Spaceship Earth.”</title>
1095
- <container-title>In Environmental Quality in a Growing Economy: Essays from the Sixth RFF Forum,</container-title>
1096
- <pages>(p.227)</pages>
1097
- <editor>edited by Henry Jarrett.</editor>
1098
- <location>Baltimore:</location>
1099
- <publisher>Johns Hopkins University Press,</publisher>
1100
- <date>1966,</date>
1101
- <pages>3–14.</pages>
1102
- </sequence>
1103
- <sequence>
1104
- <author>Bramwell, Anna.</author>
1105
- <title>Blood and Soil: Richard Walther Darré and Hitler’s “Green Party”.</title>
1106
- <location>Bourne End, Buckinghamshire, England:</location>
1107
- <publisher>Kensal Press,</publisher>
1108
- <date>1985.</date>
1109
- </sequence>
1110
- <sequence>
1111
- <author>Brandes, Ute.</author>
1112
- <title>“Probing the Blind Spot: Utopia and Dystopia in Christa Wolf’s Störfall.”</title>
1113
- <container-title>In Selected Papers from the Fourteenth New Hampshire Symposium on the German Democratic Republic,</container-title>
1114
- <editor>edited by Margy Gerber et al.</editor>
1115
- <location>Lanham, Md.:</location>
1116
- <publisher>University Press of America,</publisher>
1117
- <date>1989,</date>
1118
- <pages>101–14.</pages>
1119
- </sequence>
1120
- <sequence>
1121
- <author>Brennan, Timothy.</author>
1122
- <title>At Home in the World: Cosmopolitanism Now.</title>
1123
- <location>Cambridge, Mass.:</location>
1124
- <publisher>Harvard University Press,</publisher>
1125
- <date>1997.</date>
1126
- </sequence>
1127
- <sequence>
1128
- <author>Brin, David.</author>
1129
- <title>Earth.</title>
1130
- <location>New York:</location>
1131
- <publisher>Bantam,</publisher>
1132
- <date>1991.</date>
1133
- </sequence>
1134
- <sequence>
1135
- <editor>Brown, Charles S., and Ted Toadvine, eds.</editor>
1136
- <title>Eco-Phenomenology: Back to the Earth Itself.</title>
1137
- <location>Albany:</location>
1138
- <publisher>State University of New York Press,</publisher>
1139
- <date>2003.</date>
1140
- </sequence>
1141
- <sequence>
1142
- <author>Brown, Lester R.</author>
1143
- <title>The Twenty-ninth Day: Accommodating Human Needs and Numbers to the Earth’s Resources.</title>
1144
- <location>New York:</location>
1145
- <publisher>Norton,</publisher>
1146
- <date>1978.</date>
1147
- </sequence>
1148
- <sequence>
1149
- <author>Brunner, John.</author>
1150
- <title>“The Genesis of ‘Stand on Zanzibar’ and Digressions.”</title>
1151
- <journal>Extrapolation</journal>
1152
- <volume>11.2</volume>
1153
- <date>(1970):</date>
1154
- <pages>34–43.</pages>
1155
- </sequence>
1156
- <sequence>
1157
- <author>Brunner, John.</author>
1158
- <title>The Sheep Look Up.</title>
1159
- <location>New York:</location>
1160
- <publisher>Harper and Row,</publisher>
1161
- <date>1972.</date>
1162
- </sequence>
1163
- <sequence>
1164
- <author>Brunner, John.</author>
1165
- <title>Stand on Zanzibar.</title>
1166
- <location>New York:</location>
1167
- <publisher>Ballantine,</publisher>
1168
- <date>1969.</date>
1169
- </sequence>
1170
- <sequence>
1171
- <author>Buell, Frederick.</author>
1172
- <title>From Apocalypse to Way of Life: Environmental Crisis in the American Century.</title>
1173
- <location>New York:</location>
1174
- <publisher>Routledge,</publisher>
1175
- <date>2003.</date>
1176
- </sequence>
1177
- <sequence>
1178
- <author>Buell, Lawrence.</author>
1179
- <title>The Environmental Imagination: Thoreau, Nature Writing, and the Formation of American Culture.</title>
1180
- <location>Cambridge, Mass.:</location>
1181
- <publisher>Harvard University Press,</publisher>
1182
- <date>1995.</date>
1183
- </sequence>
1184
- <sequence>
1185
- <author>Buell, Lawrence.</author>
1186
- <title>The Future of Environmental Criticism: Environmental Crisis and Literary Imagination.</title>
1187
- <location>Oxford:</location>
1188
- <publisher>Blackwell,</publisher>
1189
- <date>2005.</date>
1190
- </sequence>
1191
- <sequence>
1192
- <author>Buell, Lawrence.</author>
1193
- <title>Writing for an Endangered World: Literature, Culture, and Environment in the U.S. and Beyond.</title>
1194
- <location>Cambridge, Mass.:</location>
1195
- <publisher>Harvard University Press,</publisher>
1196
- <date>2001.</date>
1197
- </sequence>
1198
- <sequence>
1199
- <author>Burgess, Anthony.</author>
1200
- <title>The Wanting Seed.</title>
1201
- <location>London:</location>
1202
- <publisher>Heinemann,</publisher>
1203
- <date>1962.</date>
1204
- </sequence>
1205
- <sequence>
1206
- <author>Cage, John.</author>
1207
- <title>“Overpopulation and Art.”</title>
1208
- <container-title>In John Cage: Composed in America,</container-title>
1209
- <editor>edited by Marjorie Perloff and Charles Junkerman.</editor>
1210
- <location>Chicago:</location>
1211
- <publisher>University of Chicago Press,</publisher>
1212
- <date>1994,</date>
1213
- <pages>14–38.</pages>
1214
- </sequence>
1215
- <sequence>
1216
- <author>Caldwell, Gail.</author>
1217
- <title>“On the Soapbox.” Review of Gain, by Richard Powers.</title>
1218
- <journal>Boston Globe,</journal>
1219
- <date>June 7, 1998,</date>
1220
- <pages>C1+.</pages>
1221
- </sequence>
1222
- <sequence>
1223
- <author>Calvino, Italo.</author>
1224
- <title>Invisible Cities.</title>
1225
- <translator>Translated by William Weaver.</translator>
1226
- <location>San Diego:</location>
1227
- <publisher>Harcourt Brace Jovanovich,</publisher>
1228
- <date>1974.</date>
1229
- </sequence>
1230
- <sequence>
1231
- <author>Campos, Haroldo de.</author>
1232
- <title>Morfologia do Macunaíma.</title>
1233
- <location>São Paulo:</location>
1234
- <publisher>Perspectiva,</publisher>
1235
- <date>1973.</date>
1236
- </sequence>
1237
- <sequence>
1238
- <author>Cardis, Elisabeth, et al.</author>
1239
- <title>“Estimates of the Cancer Burden in Europe from Radioactive Fallout from Chernobyl.”</title>
1240
- <journal>International Journal of Cancer</journal>
1241
- <volume>119</volume>
1242
- <date>(2006):</date>
1243
- <pages>1224–35.</pages>
1244
- </sequence>
1245
- <sequence>
1246
- <author>Carroll, Joseph.</author>
1247
- <title>Evolution and Literary Theory.</title>
1248
- <location>Columbia:</location>
1249
- <publisher>University of Missouri Press,</publisher>
1250
- <date>1995.</date>
1251
- </sequence>
1252
- <sequence>
1253
- <author>Carroll, Joseph.</author>
1254
- <title>Literary Darwinism: Evolution, Human Nature, and Literature.</title>
1255
- <location>New York:</location>
1256
- <publisher>Routledge,</publisher>
1257
- <date>2004.</date>
1258
- </sequence>
1259
- <sequence>
1260
- <author>Carson, Rachel.</author>
1261
- <title>Silent Spring.</title>
1262
- <location>Boston:</location>
1263
- <publisher>Houghton Mifflin,</publisher>
1264
- <date>1962.</date>
1265
- </sequence>
1266
- <sequence>
1267
- <author>Casey, Edward S.</author>
1268
- <title>The Fate of Place: A Philosophical History.</title>
1269
- <location>Berkeley:</location>
1270
- <publisher>University of California Press,</publisher>
1271
- <date>1998.</date>
1272
- </sequence>
1273
- <sequence>
1274
- <author>Castel, R.</author>
1275
- <title>“From Dangerousness to Risk.”</title>
1276
- <container-title>In The Foucault Effect: Studies in Governmentality,</container-title>
1277
- <editor>edited by Graham Burchell, Colin Gordon, and Peter Miller.</editor>
1278
- <location>London:</location>
1279
- <publisher>Harvester,</publisher>
1280
- <date>1991,</date>
1281
- <pages>281–98.</pages>
1282
- </sequence>
1283
- <sequence>
1284
- <author>Certeau, Michel de, Luce Giard, and Pierre Mayol.</author>
1285
- <title>L’invention du quotidien.</title>
1286
- <location>Paris:</location>
1287
- <publisher>Union générale d’éditions,</publisher>
1288
- <date>1980.</date>
1289
- </sequence>
1290
- <sequence>
1291
- <author>Chang, Chris.</author>
1292
- <title>“Sound and Lothar Baumgarten.”</title>
1293
- <journal>Film Comment</journal>
1294
- <volume>40.1</volume>
1295
- <date>(January–February 2004):</date>
1296
- <pages>17.</pages>
1297
- </sequence>
1298
- <sequence>
1299
- <editor>Cheah, Pheng, and Bruce Robbins, eds.</editor>
1300
- <title>Cosmopolitics: Thinking and Feeling beyond the Nation.</title>
1301
- <location>Minneapolis:</location>
1302
- <publisher>University of Minnesota Press,</publisher>
1303
- <date>1998.</date>
1304
- </sequence>
1305
- <sequence>
1306
- <author>Chernobyl Forum 2003–2005.</author>
1307
- <title>The Legacy of Chernobyl: Health, Environmental, and Socio-economic Impacts and Recommendations to the Governments of Belarus, the Russian Federation and Ukraine.</title>
1308
- <edition>2nd rev. version.</edition>
1309
- <location>Vienna:</location>
1310
- <publisher>International Atomic Energy Agency,</publisher>
1311
- <date>2006.</date>
1312
- <url>www.iaea.org/Publications/Booklets/Chernobyl/chernobyl.pdf.</url>
1313
- </sequence>
1314
- <sequence>
1315
- <editor>Ching, Barbara, and Gerald W. Creed, eds.</editor>
1316
- <title>Knowing Your Place: Rural Identity and Cultural Hierarchy.</title>
1317
- <location>New York:</location>
1318
- <publisher>Routledge,</publisher>
1319
- <date>1997.</date>
1320
- </sequence>
1321
- <sequence>
1322
- <author>Chivers, C. J.</author>
1323
- <title>“New Sight in Chernobyl’s Dead Zone: Tourists.”</title>
1324
- <journal>New York Times,</journal>
1325
- <date>June 15, 2005.</date>
1326
- </sequence>
1327
- <sequence>
1328
- <title>A Civil Action.</title>
1329
- <director>Dir. Steven Zaillian.</director>
1330
- <note>Perf. John Travolta, Robert Duvall, Stephen Fry, James Gandolfini.</note>
1331
- <publisher>Touchstone Pictures,</publisher>
1332
- <location>Burbank, Calif.,</location>
1333
- <date>1999.</date>
1334
- </sequence>
1335
- <sequence>
1336
- <editor>Clem, Ralph S., Martin Harry Greenberg, and Joseph D. Olander, eds.</editor>
1337
- <title>No Room for Man: Population and the Future through Science Fiction.</title>
1338
- <location>Totowa, N.J.:</location>
1339
- <publisher>Rowman and Littlefield,</publisher>
1340
- <date>1979.</date>
1341
- </sequence>
1342
- <sequence>
1343
- <author>Clifford, James.</author>
1344
- <title>Routes: Travel and Translation in the Late Twentieth Century.</title>
1345
- <location>Cambridge, Mass.:</location>
1346
- <publisher>Harvard University Press,</publisher>
1347
- <date>1997.</date>
1348
- </sequence>
1349
- <sequence>
1350
- <author>Cohen, Joel E.</author>
1351
- <title>How Many People Can the Earth Support?</title>
1352
- <location>New York:</location>
1353
- <publisher>Norton,</publisher>
1354
- <date>1995.</date>
1355
- </sequence>
1356
- <sequence>
1357
- <author>Colborn, Theo, Dianne Dumanoski, and John Peterson Myers.</author>
1358
- <title>Our Stolen Future: Are We Threatening Our Fertility, Intelligence, and Survival? A Scientific Detective Story.</title>
1359
- <location>New York:</location>
1360
- <publisher>Dutton,</publisher>
1361
- <date>1996.</date>
1362
- </sequence>
1363
- <sequence>
1364
- <author>Conniff, Brian.</author>
1365
- <title>“The Dark Side of Magical Realism: Science, Oppression and Apocalypse in One Hundred Years of Solitude.”</title>
1366
- <journal>Modern Fiction Studies</journal>
1367
- <volume>36.2</volume>
1368
- <date>(1990):</date>
1369
- <pages>167–79.</pages>
1370
- </sequence>
1371
- <sequence>
1372
- <author>Crichton, Michael.</author>
1373
- <title>State of Fear.</title>
1374
- <location>New York:</location>
1375
- <publisher>HarperCollins,</publisher>
1376
- <date>2004.</date>
1377
- </sequence>
1378
- <sequence>
1379
- <author>Cronon, William.</author>
1380
- <title>“The Trouble with Wilderness; Or, Getting Back to the Wrong Nature.”</title>
1381
- <container-title>In Uncommon Ground: Rethinking the Human Place in Nature,</container-title>
1382
- <editor>edited by William Cronon.</editor>
1383
- <location>New York:</location>
1384
- <publisher>Norton,</publisher>
1385
- <date>1995,</date>
1386
- <pages>69–90.</pages>
1387
- </sequence>
1388
- <sequence>
1389
- <author>Crossette, Barbara.</author>
1390
- <title>“How to Fix a Crowded World: Add People.”</title>
1391
- <journal>New York Times,</journal>
1392
- <date>November 2, 1997,</date>
1393
- <pages>sec. 4, 1+.</pages>
1394
- </sequence>
1395
- <sequence>
1396
- <author>Cvetkovich, George, and Patricia L. Winter.</author>
1397
- <title>“Trust and Social Representations of the Management of Threatened and Endangered Species.”</title>
1398
- <journal>Environment and Behavior</journal>
1399
- <volume>35</volume>
1400
- <date>(2003):</date>
1401
- <pages>286–305.</pages>
1402
- </sequence>
1403
- <sequence>
1404
- <title>The Day after Tomorrow.</title>
1405
- <director>Dir. Roland Emmerich.</director>
1406
- <note>Perf. Dennis Quaid, Jake Gyllenhaal, Emmy Rossum, Dash Mihok.</note>
1407
- <publisher>Twentieth-Century Fox,</publisher>
1408
- <location>Beverly Hills, Calif.,</location>
1409
- <date>2004.</date>
1410
- </sequence>
1411
- <sequence>
1412
- <author>Deitering, Cynthia.</author>
1413
- <title>“The Postnatural Novel: Toxic Consciousness in Fiction of the 1980s.”</title>
1414
- <editor>In Glotfelty and Fromm,</editor>
1415
- <pages>196–203.</pages>
1416
- </sequence>
1417
- <sequence>
1418
- <author>Deleuze, Gilles, and Félix Guattari.</author>
1419
- <title>Anti-Oedipus: Capitalism and Schizophrenia.</title>
1420
- <translator>Translated by Robert Hurley, Helen R. Lane, and Mark Seem.</translator>
1421
- <location>New York:</location>
1422
- <publisher>Viking,</publisher>
1423
- <date>1977.</date>
1424
- </sequence>
1425
- <sequence>
1426
- <author>Deleuze, Gilles, and Félix Guattari.</author>
1427
- <title>A Thousand Plateaus: Capitalism and Schizophrenia.</title>
1428
- <translator>Translated by Brian Massumi.</translator>
1429
- <location>Minneapolis:</location>
1430
- <publisher>University of Minnesota Press,</publisher>
1431
- <date>1987.</date>
1432
- </sequence>
1433
- <sequence>
1434
- <author>DeLillo, Don.</author>
1435
- <title>The Names.</title>
1436
- <location>New York:</location>
1437
- <publisher>Knopf,</publisher>
1438
- <date>1982.</date>
1439
- </sequence>
1440
- <sequence>
1441
- <author>DeLillo, Don.</author>
1442
- <title>White Noise: Text and Criticism.</title>
1443
- <editor>Edited by Mark Osteen.</editor>
1444
- <edition>Viking critical edition.</edition>
1445
- <location>New York:</location>
1446
- <publisher>Penguin,</publisher>
1447
- <date>1998.</date>
1448
- </sequence>
1449
- <sequence>
1450
- <author>Del Rey, Lester.</author>
1451
- <title>The Eleventh Commandment.</title>
1452
- <location>Evanston, Ill.:</location>
1453
- <publisher>Regency,</publisher>
1454
- <date>1962.</date>
1455
- </sequence>
1456
- <sequence>
1457
- <author>Del Rey, Lester.</author>
1458
- <title>The Eleventh Commandment.</title>
1459
- <edition>Rev. ed.</edition>
1460
- <location>New York:</location>
1461
- <publisher>Ballantine,</publisher>
1462
- <date>1970.</date>
1463
- </sequence>
1464
- <sequence>
1465
- <editor>Diamond, Irene, and Gloria Feman Orenstein, eds.</editor>
1466
- <title>Reweaving the World: The Emergence of Ecofeminism.</title>
1467
- <location>San Francisco:</location>
1468
- <publisher>Sierra Club,</publisher>
1469
- <date>1990.</date>
1470
- </sequence>
1471
- <sequence>
1472
- <author>Diamond, Jared M.</author>
1473
- <title>Collapse: How Societies Choose to Fail or Succeed.</title>
1474
- <location>New York:</location>
1475
- <publisher>Viking,</publisher>
1476
- <date>2005.</date>
1477
- </sequence>
1478
- <sequence>
1479
- <author>Dimock, Wai Chee.</author>
1480
- <title>Through Other Continents: American Literature across Deep Time.</title>
1481
- <location>Princeton:</location>
1482
- <publisher>Princeton University Press,</publisher>
1483
- <date>2006.</date>
1484
- </sequence>
1485
- <sequence>
1486
- <author>Dirlik, Arif.</author>
1487
- <title>“Place-Based Imagination: Globalism and the Politics of Place.”</title>
1488
- <editor>In Prazniak and Dirlik,</editor>
1489
- <pages>15–51.</pages>
1490
- </sequence>
1491
- <sequence>
1492
- <editor>Disch, Thomas M., ed.</editor>
1493
- <title>The Ruins of Earth: An Anthology of Stories of the Immediate Future.</title>
1494
- <location>New York:</location>
1495
- <publisher>Berkley,</publisher>
1496
- <date>1971.</date>
1497
- </sequence>
1498
- <sequence>
1499
- <author>Disch, Thomas M.</author>
1500
- <title>334.</title>
1501
- <location>New York:</location>
1502
- <publisher>Avon,</publisher>
1503
- <date>1974.</date>
1504
- </sequence>
1505
- <sequence>
1506
- <author>Douglas, Mary.</author>
1507
- <title>Risk and Blame: Essays in Cultural Theory.</title>
1508
- <location>London:</location>
1509
- <publisher>Routledge,</publisher>
1510
- <date>1992.</date>
1511
- </sequence>
1512
- <sequence>
1513
- <author>Douglas, Mary, and Aaron Wildavsky.</author>
1514
- <title>Risk and Culture: An Essay on the Selection of Technological and Environmental Dangers.</title>
1515
- <location>Berkeley:</location>
1516
- <publisher>University of California Press,</publisher>
1517
- <date>1982.</date>
1518
- </sequence>
1519
- <sequence>
1520
- <author>Bakhtin, Mikhail,</author>
1521
- <title>The Dialogic Imagination: Four Essays,</title>
1522
- <editor>Michael Holquist (ed.),</editor>
1523
- <translator>Caryl Emerson and Michael Holquist (trans.)</translator>
1524
- <location>(Austin, TX:</location>
1525
- <publisher>University of Texas Press,</publisher>
1526
- <date>1981).</date>
1527
- </sequence>
1528
- <sequence>
1529
- <author>Perloff, Marjorie,</author>
1530
- <title>The Poetics of Indeterminacy: Rimbaud to Cage</title>
1531
- <publisher>(Princeton University Press,</publisher>
1532
- <date>1981).</date>
1533
- </sequence>
1534
- <sequence>
1535
- <author>Senici, Emanuele,</author>
1536
- <title>“‘Se potessimo tornare da capo’,”</title>
1537
- <editor>in Fabrizio Della Seta, Roberta Montemorra Marvin, and Marco Marica (eds.),</editor>
1538
- <container-title>Verdi 2001,</container-title>
1539
- <volume>2 vols.</volume>
1540
- <location>(Florence:</location>
1541
- <publisher>Olschki,</publisher>
1542
- <date>2003),</date>
1543
- <volume>vol. ii,</volume>
1544
- <pages>pp. 937–43.</pages>
1545
- </sequence>
1546
- <sequence>
1547
- <author>Adams, Nicholson B.,</author>
1548
- <title>“A Spanish Romanticist Parodies Himself: Los Hijos del Tı́o Tronera,”</title>
1549
- <container-title>Proceedings of the Modern Language Association,</container-title>
1550
- <volume>45</volume>
1551
- <date>(1930),</date>
1552
- <pages>pp. 573–77.</pages>
1553
- </sequence>
1554
- <sequence>
1555
- <author>Wilhelm, Kurt,</author>
1556
- <title>Richard Strauss persönlich: Eine Bibliographie</title>
1557
- <location>(Berlin:</location>
1558
- <publisher>Henschel,</publisher>
1559
- <date>1999).</date>
1560
- </sequence>
1561
- <sequence>
1562
- <author>Stravinsky, Igor, and Robert Craft,</author>
1563
- <title>Memories and Commentaries</title>
1564
- <location>(Berkeley, CA:</location>
1565
- <publisher>University of California Press,</publisher>
1566
- <date>1959).</date>
1567
- </sequence>
1568
- <sequence>
1569
- <author>Menon, Vinod, and Daniel J. Levitin,</author>
1570
- <title>“The Rewards of Music Listening: Response and Physiological Connectivity of the Mesolimbic System,”</title>
1571
- <journal>NeuroImage,</journal>
1572
- <volume>28</volume>
1573
- <date>(2005),</date>
1574
- <pages>pp. 175–84.</pages>
1575
- </sequence>
1576
- <sequence>
1577
- <author>Braider, Christopher,</author>
1578
- <title>Refiguring the Real: Picture and Modernity in Word and Image, 1400–1700</title>
1579
- <publisher>(Princeton University Press,</publisher>
1580
- <date>1992).</date>
1581
- </sequence>
1582
- <sequence>
1583
- <author>Mitterschiffthaler, Martina T., and Cynthia H. Y. Fu, Jeffrey A. Dalton, Christopher M. Andrew, and Steven C. R. Williams,</author>
1584
- <title>“A Functional MRI Study of Happy and Sad Affective States Induced by Classical Music,”</title>
1585
- <journal>Human Brain Mapping,</journal>
1586
- <volume>28</volume>
1587
- <date>(2007),</date>
1588
- <pages>pp. 1150–62.</pages>
1589
- </sequence>
1590
- <sequence>
1591
- <author>Griffiths, Paul,</author>
1592
- <title>“Saint François d’Assise,”</title>
1593
- <editor>in Peter Hill (ed.),</editor>
1594
- <container-title>The Messiaen Companion</container-title>
1595
- <location>(London:</location>
1596
- <publisher>Faber,</publisher>
1597
- <date>1995),</date>
1598
- <pages>pp. 488–509.</pages>
1599
- </sequence>
1600
- <sequence>
1601
- <author>Pater, Walter,</author>
1602
- <title>“Conclusion” to Studies in the History of the Renaissance,</title>
1603
- <editor>in M. H. Abrams (ed.),</editor>
1604
- <container-title>Norton Anthology of English Literature,</container-title>
1605
- <edition>5th edn.</edition>
1606
- <volume>2 vols.</volume>
1607
- <location>(New York, NY:</location>
1608
- <publisher>Norton,</publisher>
1609
- <date>1986),</date>
1610
- <volume>vol. ii,</volume>
1611
- <pages>pp. 1565–68.</pages>
1612
- </sequence>
1613
- <sequence>
1614
- <author>Christov-Bakargiev, Carolyn,</author>
1615
- <title>William Kentridge</title>
1616
- <location>(Brussels:</location>
1617
- <publisher>Société des Expositions du Palais des Beaux-Arts de Bruxelles,</publisher>
1618
- <date>1998).</date>
1619
- </sequence>
1620
- <sequence>
1621
- <author>Messiaen, Olivier,</author>
1622
- <title>Saint François d’Assise,</title>
1623
- <volume>8 vols.</volume>
1624
- <location>(Paris:</location>
1625
- <publisher>Alphonse Leduc,</publisher>
1626
- <date>1988–1992).</date>
1627
- </sequence>
1628
- <sequence>
1629
- <author>McGuinness, Patrick,</author>
1630
- <title>Maurice Maeterlinck and the Making of Modern Theatre</title>
1631
- <publisher>(Oxford University Press,</publisher>
1632
- <date>2000).</date>
1633
- </sequence>
1634
- <sequence>
1635
- <author>Webb, Daniel,</author>
1636
- <title>Observations on the Correspondence between Poetry and Music (1769),</title>
1637
- <editor>in Ruth Katz and Ruth HaCohen (eds.),</editor>
1638
- <container-title>The Arts in Mind: Pioneering Texts of a Coterie of British Men of Letters</container-title>
1639
- <location>(New Brunswick, NJ:</location>
1640
- <publisher>Transaction Publishers,</publisher>
1641
- <date>2003),</date>
1642
- <pages>pp. 255–324.</pages>
1643
- </sequence>
1644
- <sequence>
1645
- <author>Tomlinson, Gary,</author>
1646
- <title>Metaphysical Song: An Essay on Opera</title>
1647
- <publisher>(Princeton University Press,</publisher>
1648
- <date>1999).</date>
1649
- </sequence>
1650
- <sequence>
1651
- <author>Weber, William,</author>
1652
- <title>The Rise of Musical Classics in Eighteenth-Century England: A Study in Canon, Ritual, and Ideology</title>
1653
- <location>(Oxford:</location>
1654
- <publisher>Clarendon Press,</publisher>
1655
- <date>1992).</date>
1656
- </sequence>
1657
- <sequence>
1658
- <author>Freyhan, Michael,</author>
1659
- <title>The Authentic Magic Flute Libretto: Mozart’s Autograph or the First Full-Score Edition?</title>
1660
- <location>(Lanham, MD:</location>
1661
- <publisher>Scarecrow Press,</publisher>
1662
- <date>2009).</date>
1663
- </sequence>
1664
- <sequence>
1665
- <author>Hadlock, Heather,</author>
1666
- <title>“Tancredi and Semiramide,”</title>
1667
- <editor>in Emanuele Senici (ed.),</editor>
1668
- <container-title>The Cambridge Companion to Rossini</container-title>
1669
- <publisher>(Cambridge University Press,</publisher>
1670
- <date>2004),</date>
1671
- <pages>pp. 139–58.</pages>
1672
- </sequence>
1673
- <sequence>
1674
- <editor>Conati, Marcello (ed.),</editor>
1675
- <title>Encounters with Verdi,</title>
1676
- <translator>Richard Stokes (trans.)</translator>
1677
- <location>(Ithaca, NY:</location>
1678
- <publisher>Cornell University Press,</publisher>
1679
- <date>1984).</date>
1680
- </sequence>
1681
- <sequence>
1682
- <author>Debussy, Claude,</author>
1683
- <title>Pelléas et Mélisande</title>
1684
- <location>(New York, NY:</location>
1685
- <publisher>Dover,</publisher>
1686
- <date>1985).</date>
1687
- </sequence>
1688
- <sequence>
1689
- <editor>Csampai, Attila, and Dietmar Holland (eds.),</editor>
1690
- <title>Tannhäuser: Texte, Materialien, Kommentare</title>
1691
- <location>(Hamburg:</location>
1692
- <publisher>Rowohlt,</publisher>
1693
- <date>1986).</date>
1694
- </sequence>
1695
- <sequence>
1696
- <author>Jauss, Hans-Robert,</author>
1697
- <title>Toward an Aesthetic of Reception,</title>
1698
- <translator>Timothy Bahti (trans.)</translator>
1699
- <location>(Minneapolis, MN:</location>
1700
- <publisher>University of Minnesota Press,</publisher>
1701
- <date>1982).</date>
1702
- </sequence>
1703
- <sequence>
1704
- <author>Fulcher, Jane F.,</author>
1705
- <title>“Shifting the Paradigm from Adorno to Bourdieu,”</title>
1706
- <editor>in Victoria Johnson, Jane F. Fulcher, and Thomas Ertman (eds.),</editor>
1707
- <container-title>Opera and Society in Italy and France from Monteverdi to Bourdieu</container-title>
1708
- <publisher>(Cambridge University Press,</publisher>
1709
- <date>2007),</date>
1710
- <pages>pp. 312–29.</pages>
1711
- </sequence>
1712
- <sequence>
1713
- <author>Behler, Ernst,</author>
1714
- <title>“Schellings Ästhetik in der Überlieferung von Henry Crabb Robinson,”</title>
1715
- <journal>Philosophisches Jahrbuch,</journal>
1716
- <volume>83</volume>
1717
- <date>(1976),</date>
1718
- <pages>pp. 133–83.</pages>
1719
- </sequence>
1720
- <sequence>
1721
- <author>Marvin, Roberta Montemorra,</author>
1722
- <title>“Verdian Opera Burlesqued: A Glimpse into Mid-Victorian Theatrical Culture,”</title>
1723
- <journal>Cambridge Opera Journal,</journal>
1724
- <volume>15</volume>
1725
- <date>(2003),</date>
1726
- <pages>pp. 33–66.</pages>
1727
- </sequence>
1728
- <sequence>
1729
- <author>Mahler, Alma,</author>
1730
- <title>Gustav Mahler: Memories and Letters</title>
1731
- <location>(New York, NY:</location>
1732
- <publisher>Viking Press,</publisher>
1733
- <date>1969).</date>
1734
- </sequence>
1735
- <sequence>
1736
- <author>Shreffler, Anne C.,</author>
1737
- <title>Webern and the Lyric Impulse: Songs and Fragments on Poems of Georg Trakl</title>
1738
- <location>(Oxford:</location>
1739
- <publisher>Clarendon Press,</publisher>
1740
- <date>1994).</date>
1741
- </sequence>
1742
- <sequence>
1743
- <author>Lindenberger, Herbert,</author>
1744
- <title>Georg Trakl</title>
1745
- <location>(New York, NY:</location>
1746
- <publisher>Twayne,</publisher>
1747
- <date>1971).</date>
1748
- </sequence>
1749
- <sequence>
1750
- <author>Eldar, Eran, and Ori Ganor, Roee Admon, Avraham Bleich, and Talma Hendler,</author>
1751
- <title>“Feeling the Real World: Limbic Response to Music Depends on Related Content,”</title>
1752
- <journal>Cerebral Cortex,</journal>
1753
- <volume>17</volume>
1754
- <date>(2007),</date>
1755
- <pages>pp. 2828–40.</pages>
1756
- </sequence>
1757
- <sequence>
1758
- <author>Lawton, David,</author>
1759
- <title>“‘Le Trouvère’: Verdi’s Revision of Il trovatore for Paris,”</title>
1760
- <journal>Studi Verdiani,</journal>
1761
- <volume>3</volume>
1762
- <date>(1985),</date>
1763
- <pages>79–119.</pages>
1764
- </sequence>
1765
- <sequence>
1766
- <author>Wagner, Richard,</author>
1767
- <title>Mein Leben,</title>
1768
- <editor>Eike Middell (ed.),</editor>
1769
- <volume>2 vols.</volume>
1770
- <location>(Bremen:</location>
1771
- <publisher>Carl Schünemann Verlag,</publisher>
1772
- <date>1986).</date>
1773
- </sequence>
1774
- <sequence>
1775
- <author>Kubik, Reinhold,</author>
1776
- <title>Händels Rinaldo: Geschichte, Werk, Wirkung</title>
1777
- <location>(Neuhausen-Stuttgart:</location>
1778
- <publisher>Hänssler-Verlag,</publisher>
1779
- <date>1982).</date>
1780
- </sequence>
1781
- <sequence>
1782
- <author>Till, Nicholas,</author>
1783
- <title>Mozart and the Enlightenment: Truth, Virtue and Beauty in Mozart’s Operas</title>
1784
- <location>(London:</location>
1785
- <publisher>Faber and Faber,</publisher>
1786
- <date>1992).</date>
1787
- </sequence>
1788
- <sequence>
1789
- <author>Schelling, F. W. J.,</author>
1790
- <title>Philosophy of Art,</title>
1791
- <editor>Douglas W. Stott (ed. and trans.)</editor>
1792
- <location>(Minneapolis, MN:</location>
1793
- <publisher>University of Minnesota Press,</publisher>
1794
- <date>1989).</date>
1795
- </sequence>
1796
- <sequence>
1797
- <author>Lindau, Paul,</author>
1798
- <title>“The ‘Tannhäuser’ Scandal in March 1861,”</title>
1799
- <translator>Daphne Ellis (trans.),</translator>
1800
- <journal>Wagner,</journal>
1801
- <volume>24</volume>
1802
- <date>(September 2003),</date>
1803
- <pages>pp. 3–22.</pages>
1804
- </sequence>
1805
- <sequence>
1806
- <author>Basevi, Abramo,</author>
1807
- <title>Studio sulle opere di Giuseppe Verdi (1859),</title>
1808
- <editor>Ugo Piovano (ed.)</editor>
1809
- <location>(Milan:</location>
1810
- <publisher>Rugginente,</publisher>
1811
- <date>2001).</date>
1812
- </sequence>
1813
- <sequence>
1814
- <author>Hepokoski, James,</author>
1815
- <title>“Ottocento Opera as Cultural Drama: Generic Mixtures in Il trovatore,”</title>
1816
- <editor>in Martin Chusid (ed.),</editor>
1817
- <container-title>Verdi’s Middle Period: 1849–1859: Source Studies, Analysis, and Performance Practice</container-title>
1818
- <publisher>(University of Chicago Press,</publisher>
1819
- <date>1997),</date>
1820
- <pages>pp. 147–96.</pages>
1821
- </sequence>
1822
- <sequence>
1823
- <author>Levin, David,</author>
1824
- <title>Unsettling Opera: Staging Mozart, Verdi, Wagner, and Zemlinsky</title>
1825
- <publisher>(University of Chicago Press,</publisher>
1826
- <date>2007).</date>
1827
- </sequence>
1828
- <sequence>
1829
- <author>Herder, Johann Gottfried,</author>
1830
- <title>Die kritischen Wälder der Ästhetik,</title>
1831
- <editor>in Martin Bollacher (ed.),</editor>
1832
- <container-title>Werke,</container-title>
1833
- <volume>10 vols.</volume>
1834
- <location>(Frankfurt am Main:</location>
1835
- <publisher>Deutscher Klassiker Verlag,</publisher>
1836
- <date>1985–2000),</date>
1837
- <volume>vol. ii</volume>
1838
- <date>(1993),</date>
1839
- <container-title>Schriften zur Ästhetik und Literatur,</container-title>
1840
- <editor>ed. Gunter E. Grimm,</editor>
1841
- <pages>pp. 9–442.</pages>
1842
- </sequence>
1843
- <sequence>
1844
- <author>Bourdieu, Pierre,</author>
1845
- <title>Homo Academicus,</title>
1846
- <translator>Peter Collier (trans.)</translator>
1847
- <publisher>(Stanford University Press,</publisher>
1848
- <date>1988).</date>
1849
- </sequence>
1850
- <sequence>
1851
- <editor>Whenham, John (ed.),</editor>
1852
- <title>Claudio Monteverdi: Orfeo</title>
1853
- <publisher>(Cambridge University Press,</publisher>
1854
- <date>1986).</date>
1855
- </sequence>
1856
- <sequence>
1857
- <author>Della Seta, Fabrizio,</author>
1858
- <title>“Gli esordi della critica Verdiana – a proposito di Alberto Mazzucato”</title>
1859
- <editor>in Sieghart Döhring and Wolfgang Osthoff (eds.),</editor>
1860
- <container-title>Verdi-Studien: Pierluigi Petrobelli zum 60. Geburtstag</container-title>
1861
- <location>(Munich:</location>
1862
- <publisher>G. Ricordi,</publisher>
1863
- <date>2000),</date>
1864
- <pages>pp. 59–73.</pages>
1865
- </sequence>
1866
- <sequence>
1867
- <author>Trimpi, Wesley,</author>
1868
- <title>“The Meaning of Horace’s ut pictura poesis,”</title>
1869
- <journal>Journal of the Warburg and Courtauld Institutes,</journal>
1870
- <volume>37</volume>
1871
- <date>(1973),</date>
1872
- <pages>pp. 1–34.</pages>
1873
- </sequence>
1874
- <sequence>
1875
- <author>Auner, Joseph,</author>
1876
- <title>A Schoenberg Reader: Documents of a Life</title>
1877
- <location>(New Haven, CT:</location>
1878
- <publisher>Yale University Press,</publisher>
1879
- <date>2003).</date>
1880
- </sequence>
1881
- <sequence>
1882
- <author>Glixon, Beth L., and Jonathan E. Glixon,</author>
1883
- <title>Inventing the Business of Opera: The Impresario and His World in Seventeenth-Century Venice</title>
1884
- <publisher>(Oxford University Press,</publisher>
1885
- <date>2006).</date>
1886
- </sequence>
1887
- <sequence>
1888
- <author>Wordsworth, William,</author>
1889
- <title>The Prelude,</title>
1890
- <editor>Jonathan Wordsworth, M. H. Abrams, and Stephen Gill (eds.)</editor>
1891
- <location>(New York, NY:</location>
1892
- <publisher>Norton,</publisher>
1893
- <date>1979).</date>
1894
- </sequence>
1895
- <sequence>
1896
- <author>Rosen, David,</author>
1897
- <title>“Meter, Character, and Tinta in Verdi’s Operas,”</title>
1898
- <editor>in Martin Chusid (ed.),</editor>
1899
- <container-title>Verdi’s Middle Period: 1849–1859: Source Studies, Analysis, and Performance Practice</container-title>
1900
- <publisher>(University of Chicago Press,</publisher>
1901
- <date>1997),</date>
1902
- <pages>pp. 339–92.</pages>
1903
- </sequence>
1904
- <sequence>
1905
- <author>Thomas, Downing A.,</author>
1906
- <title>Aesthetics of Opera in the Ancien Régime, 1647–1785</title>
1907
- <publisher>(Cambridge University Press,</publisher>
1908
- <date>2002).</date>
1909
- </sequence>
1910
- <sequence>
1911
- <author>Baudelaire, Charles,</author>
1912
- <title>Oeuvres complètes,</title>
1913
- <editor>Y.-G. Le Dantec (ed.)</editor>
1914
- <location>(Paris:</location>
1915
- <publisher>Gallimard,</publisher>
1916
- <date>1951).</date>
1917
- </sequence>
1918
- <sequence>
1919
- <author>Esty, Joshua (Jed).</author>
1920
- <title>Unseasonable Youth: Modernism, Colonialism, and the Fiction of Development.</title>
1921
- <location>New York:</location>
1922
- <publisher>Oxford University Press,</publisher>
1923
- <date>2012.</date>
1924
- </sequence>
1925
- <sequence>
1926
- <author>Sommer, Doris.</author>
1927
- <title>Foundational Fictions: The National Romances of Latin America.</title>
1928
- <location>Berkeley:</location>
1929
- <publisher>University of California Press,</publisher>
1930
- <date>1991.</date>
1931
- </sequence>
1932
- <sequence>
1933
- <author>Balzac, Honoré de.</author>
1934
- <title>César Birotteau.</title>
1935
- <container-title>In La Comédie humaine</container-title>
1936
- <volume>6:</volume>
1937
- <pages>37–312.</pages>
1938
- </sequence>
1939
- <sequence>
1940
- <author>Triner, Gail D.</author>
1941
- <title>Banking and Economic Development: Brazil, 1889–1930.</title>
1942
- <location>New York:</location>
1943
- <publisher>Palgrave,</publisher>
1944
- <date>2000.</date>
1945
- </sequence>
1946
- <sequence>
1947
- <author>———.</author>
1948
- <title>Memorial de Aires.</title>
1949
- <container-title>In Obra Completa,</container-title>
1950
- <volume>1:</volume>
1951
- <pages>1095–1200.</pages>
1952
- </sequence>
1953
- <sequence>
1954
- <author>———.</author>
1955
- <title>Tese e Antítese.</title>
1956
- <location>São Paulo:</location>
1957
- <publisher>Companhia Editora Nacional,</publisher>
1958
- <date>1964.</date>
1959
- </sequence>
1960
- <sequence>
1961
- <author>———.</author>
1962
- <title>Dom Casmurro.</title>
1963
- <container-title>In Obra Completa,</container-title>
1964
- <volume>1:</volume>
1965
- <pages>807–944.</pages>
1966
- </sequence>
1967
- <sequence>
1968
- <author>Watt, Ian.</author>
1969
- <title>The Rise of the Novel: Studies in Defoe, Richardson, and Fielding.</title>
1970
- <location>Berkeley:</location>
1971
- <publisher>University of California Press,</publisher>
1972
- <date>2001.</date>
1973
- </sequence>
1974
- <sequence>
1975
- <author>Simmel, Georg.</author>
1976
- <title>On Individuality and Social Forms: Selected Writings.</title>
1977
- <location>Chicago:</location>
1978
- <publisher>University of Chicago Press,</publisher>
1979
- <date>1971.</date>
1980
- </sequence>
1981
- <sequence>
1982
- <author>———.</author>
1983
- <title>The Presentation of Self in Everyday Life.</title>
1984
- <location>New York:</location>
1985
- <publisher>Anchor Books,</publisher>
1986
- <date>1959.</date>
1987
- </sequence>
1988
- <sequence>
1989
- <author>Araripe, Júnior.</author>
1990
- <title>Obra Crítica,</title>
1991
- <volume>vol. 2.</volume>
1992
- <location>Rio de Janeiro:</location>
1993
- <publisher>Casa de Rui Barbosa,</publisher>
1994
- <date>1960.</date>
1995
- </sequence>
1996
- <sequence>
1997
- <author>———.</author>
1998
- <title>Speech Genres and Other Late Essays.</title>
1999
- <translator>Trans. Vern W. McGee.</translator>
2000
- <location>Austin:</location>
2001
- <publisher>University of Texas Press,</publisher>
2002
- <date>1986.</date>
2003
- </sequence>
2004
- <sequence>
2005
- <author>Auerbach, Erich.</author>
2006
- <title>Mimesis: The Representation of Reality in Western Literature.</title>
2007
- <location>Princeton, NJ:</location>
2008
- <publisher>Princeton University Press,</publisher>
2009
- <date>2003.</date>
2010
- </sequence>
2011
- <sequence>
2012
- <author>———.</author>
2013
- <title>O Primo Basílio.</title>
2014
- <container-title>In Obras de Eça de Queiroz,</container-title>
2015
- <volume>1:</volume>
2016
- <pages>865–1173.</pages>
2017
- </sequence>
2018
- <sequence>
2019
- <author>Stein, Stanley J.</author>
2020
- <title>Vassouras, a Brazilian Coffee County, 1850–1900.</title>
2021
- <location>Cambridge, MA:</location>
2022
- <publisher>Harvard University Press,</publisher>
2023
- <date>1957.</date>
2024
- </sequence>
2025
- <sequence>
2026
- <author>———.</author>
2027
- <title>A Viúvinha.</title>
2028
- <container-title>In Obra Completa,</container-title>
2029
- <volume>1:</volume>
2030
- <pages>229–92.</pages>
2031
- </sequence>
2032
- <sequence>
2033
- <author>———.</author>
2034
- <title>Epitaph of a Small Winner [Memórias Póstumas],</title>
2035
- <translator>trans. William Grossman.</translator>
2036
- <location>New York:</location>
2037
- <publisher>Noonday Press,</publisher>
2038
- <date>1952.</date>
2039
- </sequence>
2040
- <sequence>
2041
- <author>———.</author>
2042
- <title>Distant Reading.</title>
2043
- <location>London:</location>
2044
- <publisher>Verso,</publisher>
2045
- <date>2013.</date>
2046
- </sequence>
2047
- <sequence>
2048
- <author>Schorske, Carl.</author>
2049
- <title>Fin-de-Siècle Vienna.</title>
2050
- <location>New York:</location>
2051
- <publisher>Vintage Books,</publisher>
2052
- <date>1981.</date>
2053
- </sequence>
2054
- <sequence>
2055
- <author>Davis, Natalie Zemon.</author>
2056
- <title>The Return of Martin Guerre.</title>
2057
- <location>Cambridge, MA:</location>
2058
- <publisher>Harvard University Press,</publisher>
2059
- <date>1983.</date>
2060
- </sequence>
2061
- <sequence>
2062
- <author>Weber, Eugen.</author>
2063
- <title>Movements, Currents, Trends: Aspects of European Thought in the Nineteenth and Twentieth Centuries.</title>
2064
- <location>Lexington, MA:</location>
2065
- <publisher>D. C. Heath,</publisher>
2066
- <date>1992.</date>
2067
- </sequence>
2068
- <sequence>
2069
- <author>Silveira, Daniela Magalhaes da.</author>
2070
- <title>Fábrica de contos: Ciencia e Literatura em Machado de Assis.</title>
2071
- <location>Campinas:</location>
2072
- <publisher>Editora Unicamp,</publisher>
2073
- <date>2010.</date>
2074
- </sequence>
2075
- <sequence>
2076
- <author>———.</author>
2077
- <title>As Minas de Prata.</title>
2078
- <container-title>In Obra Completa,</container-title>
2079
- <volume>2:</volume>
2080
- <pages>407–1258.</pages>
2081
- </sequence>
2082
- <sequence>
2083
- <author>Dean, Warren.</author>
2084
- <title>The Industrialization of São Paulo, 1880–1945.</title>
2085
- <location>Austin:</location>
2086
- <publisher>University of Texas Press,</publisher>
2087
- <date>1969.</date>
2088
- </sequence>
2089
- <sequence>
2090
- <author>———.</author>
2091
- <title>Dom Casmurro,</title>
2092
- <translator>trans. John Gledson.</translator>
2093
- <location>New York:</location>
2094
- <publisher>Oxford University Press,</publisher>
2095
- <date>1997.</date>
2096
- </sequence>
2097
- <sequence>
2098
- <author>———.</author>
2099
- <title>Senhora.</title>
2100
- <container-title>In Obra Completa,</container-title>
2101
- <volume>1:</volume>
2102
- <pages>941–1214.</pages>
2103
- </sequence>
2104
- <sequence>
2105
- <author>———.</author>
2106
- <title>Lucíola.</title>
2107
- <container-title>In Obra Completa,</container-title>
2108
- <volume>1:</volume>
2109
- <pages>293–458.</pages>
2110
- </sequence>
2111
- <sequence>
2112
- <author>Goffman, Erving.</author>
2113
- <title>Encounters: Two Studies in the Sociology of Interaction.</title>
2114
- <location>Indianapolis:</location>
2115
- <publisher>Bobbs-Merrill,</publisher>
2116
- <date>1961.</date>
2117
- </sequence>
2118
- <sequence>
2119
- <author>Lobo, Eulalia Maria Lahmeyer.</author>
2120
- <title>História do Rio de Janeiro: do capital comercial ao capital industrial e financeiro.</title>
2121
- <location>Rio de Janeiro:</location>
2122
- <publisher>IBMEC,</publisher>
2123
- <date>1978.</date>
2124
- </sequence>
2125
- <sequence>
2126
- <author>Da Matta, Roberto.</author>
2127
- <title>Carnivals, Rogues, and Heroes: An Interpretation of the Brazilian Dilemma.</title>
2128
- <location>South Bend, IN:</location>
2129
- <publisher>University of Notre Dame Press,</publisher>
2130
- <date>1991.</date>
2131
- </sequence>
2132
- <sequence>
2133
- <author>Gledson, John.</author>
2134
- <title>The Deceptive Realism of Machado de Assis: A Dissenting Interpretation of Dom Casmurro.</title>
2135
- <location>Liverpool, UK:</location>
2136
- <publisher>F. Cairns,</publisher>
2137
- <date>1984.</date>
2138
- </sequence>
2139
- <sequence>
2140
- <author>Holloway, Thomas.</author>
2141
- <title>Policing Rio de Janeiro: Repression and Resistance in a Nineteenth-Century City.</title>
2142
- <location>Stanford, CA:</location>
2143
- <publisher>Stanford University Press,</publisher>
2144
- <date>1993.</date>
2145
- </sequence>
2146
- <sequence>
2147
- <author>———.</author>
2148
- <title>A Tropical Belle Époque: Elite Culture and Society in Turn-of-the-Century Rio de Janeiro.</title>
2149
- <location>Cambridge, UK:</location>
2150
- <publisher>Cambridge University Press,</publisher>
2151
- <date>1987.</date>
2152
- </sequence>
2153
- <sequence>
2154
- <author>Hanley, Anne G.</author>
2155
- <title>Native Capital: Financial Institutions and Economic Development in São Paulo, Brazil, 1850–1920.</title>
2156
- <location>Stanford, CA:</location>
2157
- <publisher>Stanford University Press,</publisher>
2158
- <date>2005.</date>
2159
- </sequence>
2160
- <sequence>
2161
- <author>———.</author>
2162
- <title>A Harlot of High and Low,</title>
2163
- <translator>trans. Rainer Heppenstall.</translator>
2164
- <location>New York:</location>
2165
- <publisher>Penguin,</publisher>
2166
- <date>1970.</date>
2167
- </sequence>
2168
- <sequence>
2169
- <author>———.</author>
2170
- <title>“Un roman anachevé.”</title>
2171
- <editor>In Manuel Bandeira, Aluísio Azevedo, Graciliano Ramos, Ariano Suassuna:</editor>
2172
- <container-title>Travaux présentés au séminaire de 1974 du Centre de Recherches Latino-Américaines de l’Université de Poitiers,</container-title>
2173
- <pages>97–116.</pages>
2174
- <location>Poitiers:</location>
2175
- <publisher>Université de Poitiers,</publisher>
2176
- <date>1974.</date>
2177
- </sequence>
2178
- <sequence>
2179
- <author>Pereira, Maria Aparecida Viana Schtine.</author>
2180
- <title>“‘O Coruja’ de Aluísio Azevedo: romance de formação sob o prisma do grotesco.”</title>
2181
- <genre>MA thesis,</genre>
2182
- <publisher>University of São Paulo,</publisher>
2183
- <date>2013.</date>
2184
- </sequence>
2185
- <sequence>
2186
- <author>Durkheim, Émile.</author>
2187
- <title>De la division du travail social.</title>
2188
- <location>Paris:</location>
2189
- <publisher>Les Presses universitaires de France,</publisher>
2190
- <date>1967.</date>
2191
- <url>classiques.uqac.ca/classiques/Durkheim_emile/division_du_travail/division_travail_1.pdf</url>
2192
- <note>(accessed June 7, 2015).</note>
2193
- </sequence>
2194
- <sequence>
2195
- <author>Vargas Llosa, Mario.</author>
2196
- <title>The Perpetual Orgy: Flaubert and Madame Bovary.</title>
2197
- <location>New York:</location>
2198
- <publisher>Farrar, Straus &amp; Giroux,</publisher>
2199
- <date>1986.</date>
2200
- </sequence>
2201
- <sequence>
2202
- <author>———.</author>
2203
- <title>Sense and Sensibility,</title>
2204
- <volume>2 vols.</volume>
2205
- <location>New York:</location>
2206
- <publisher>Frank S. Holby,</publisher>
2207
- <date>1906.</date>
2208
- </sequence>
2209
- <sequence>
2210
- <author>———.</author>
2211
- <title>“A Formação do Romance Brasileiro: 1808–1860 (vertentes inglesas).”</title>
2212
- <url>www.uni-camp.br/iel/memoria/Ensaios/Sandra/sandra.htm</url>
2213
- <note>(accessed June 8, 2015).</note>
2214
- </sequence>
2215
- <sequence>
2216
- <author>Forster, E.</author>
2217
- <title>M.Howards End.</title>
2218
- <location>New York:</location>
2219
- <publisher>Barnes &amp; Noble Classics,</publisher>
2220
- <date>2003 [1910].</date>
2221
- </sequence>
2222
- <sequence>
2223
- <author>Vasconcelos, Sandra G. T.</author>
2224
- <title>“Figurações do passado: o romance histórico em Walter Scott e José de Alencar.”</title>
2225
- <journal>Terceira Margem: Revista da Pós-Graduação em Ciência da Literatura</journal>
2226
- <volume>12.18</volume>
2227
- <date>(2008):</date>
2228
- <pages>15–37.</pages>
2229
- </sequence>
2230
- <sequence>
2231
- <author>Goethe, Johann Wolfgang von.</author>
2232
- <title>Wilhelm Meister’s Apprenticeship.</title>
2233
- <location>Princeton, NJ:</location>
2234
- <publisher>Princeton University Press,</publisher>
2235
- <date>1989.</date>
2236
- </sequence>
2237
- <sequence>
2238
- <author>Metcalf, Alida.</author>
2239
- <title>Family and Frontier in Colonial Brazil: Santana de Parnaíba, 1580–1822.</title>
2240
- <location>Berkeley:</location>
2241
- <publisher>University of California Press,</publisher>
2242
- <date>1992.</date>
2243
- </sequence>
2244
- <sequence>
2245
- <author>Blest Gana, Alberto.</author>
2246
- <title>Martín Rivas.</title>
2247
- <location>Santiago:</location>
2248
- <publisher>Origo,</publisher>
2249
- <date>2013.</date>
2250
- </sequence>
2251
- <sequence>
2252
- <author>Magalhães, Raimundo,</author>
2253
- <title>Jr.José de Alencar e sua época.</title>
2254
- <location>São Paulo:</location>
2255
- <publisher>Livros Irradiantes,</publisher>
2256
- <date>1971.</date>
2257
- </sequence>
2258
- <sequence>
2259
- <author>Buarque de Holanda, Sergio.</author>
2260
- <title>O Homem Cordial.</title>
2261
- <location>São Paulo:</location>
2262
- <publisher>Companhia das Letras,</publisher>
2263
- <date>2012.</date>
2264
- </sequence>
2265
- <sequence>
2266
- <author>———.</author>
2267
- <title>Da Senzala à Colonia.</title>
2268
- <location>São Paulo:</location>
2269
- <publisher>Difusão Europeia do Livro,</publisher>
2270
- <date>1966.</date>
2271
- </sequence>
2272
- <sequence>
2273
- <author>Summerhill, William.</author>
2274
- <title>“Sovereign Credibility With Financial Underdevelopment: The Case of Nineteenth-Century Brazil.”</title>
2275
- <note>Working draft prepared for the Hoover Seminar on Collective Choice,</note>
2276
- <date>March 6, 2007.</date>
2277
- <url>www.hoover.org/sites/default/files/uploads/documents/ Sovereign_Credibility.pdf</url>
2278
- <note>(accessed June 7, 2015).</note>
2279
- </sequence>
2280
- </dataset>