Bibliographie et XeLatex

Le problème exposé dans ce sujet a été résolu.

Bonjour, Je teste XeLaTeX, et notamment la bibliographie. Or, elle ne semble pas s'afficher (rien dans le fichier généré). Je suis avec MiKTeX et TexWorks sous Win7.

Voici mes documents : Fichier source :

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
\documentclass[12pt,a4paper]{book}
\usepackage{fontspec}
\usepackage{xunicode}
\usepackage{polyglossia}
\usepackage[utf8]{inputenc}
\usepackage[maxlevel=3]{csquotes}
\usepackage[style=authoryear,natbib=true,backend=biber]{biblatex} 
\setmainlanguage{french}
\addbibresource{test.bib}
\begin{document}

\nocite{*}

\printbibliography
% La fin du document
\end{document}

test.bib

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
%%% ====================================================================
%%%  BibTeX-file{
%%%     author          = "David Rhead",
%%%     version         = "1.00",
%%%     date            = "17 Feb 1990",
%%%     time            = "17:00 GMT",
%%%     filename        = "test.bib",
%%%     address         = "Cripps Computing Centre,
%%%                        University of Nottingham,
%%%                        University Park,
%%%                        Nottingham,
%%%                        NG7 2RD,
%%%                        United Kingdom",
%%%     telephone       = "+44 602 484848 Ext 2670",
%%%     FAX             = "+44 602 588138",
%%%     checksum        = "05151 839 2908 25082",
%%%     email           = "David_Rhead at uk.ac.nott.vme (JANET)",
%%%     codetable       = "ISO/ASCII",
%%%     keywords        = "bibliography, citation, references",
%%%     supported       = "no",
%%%     docstring       = "This BibTeX database file contains entries
%%%                        designed for testing whether a BibTeX style
%%%                        file lays references out as recommended by
%%%                        certain authorities.  (Note, however, that
%%%                        the BS 1629 examples are from the 1976
%%%                        edition.  The file needs updating to use
%%%                        examples from the 1989 edition instead.)
%%%
%%%                        The checksum field above contains a CRC-16
%%%                        checksum as the first value, followed by the
%%%                        equivalent of the standard UNIX wc (word
%%%                        count) utility output of lines, words, and
%%%                        characters.  This is produced by Robert
%%%                        Solovay's checksum utility.",
%%%  }
%%% ====================================================================


%% @COMMENT{Some standard works describing conventions for citations
%%      and bibliographies}

@Techreport{bs-1629,
  author =       "BSI",
  title =        "Bibliographic References",
  institution =  "British Standards Institution",
  year =         "1976",
  type =         "BS",
  number =       "1629",
}

@Techreport{bs-5605,
  author =       "BSI",
  title =        "Citing Publications by Bibliographic References",
  institution =  "British Standards Institution",
  year =         "1978",
  type =         "BS",
  number =       "5606",
}

@Techreport{bs-6371,
  author =       "BSI",
  title =        "Citation of unpublished documents",
  institution =  "British Standards Institution",
  year =         "1983",
  type =         "BS",
  number =       "6371",
}

@Book{butcher-81,
  title =        "Copy-editing",
  author =       "Judith Butcher",
  publisher =    "Cambridge University Press",
  year =         "1981",
  edition =      "2nd",
}

@Book{chicago-82,
  title =        "The {C}hicago Manual of Style",
  author =       "`Chicago'",
  year =         "1982",
  publisher =    "University of Chicago Press",
  edition =      "13th",
}

%% @COMMENT{Some examples taken from the document describing BS 5605}

@Article{howells-51,
  author =       "W. W. Howells",
  title =        "Factors of Human Physique",
  journal =      "American Journal of Physical Anthropology",
  volume =       "9",
  pages =        "159--192",
  year =         "1951",
}

@Article{howells-66-pop,
  author =       "W. W. Howells",
  title =        "Population Distances: Biological, Linguistic,
                 Geographical and Environmental",
  journal =      "Current Anthropology",
  volume =       "7",
  pages =        "531--540",
  year =         "1966",
}

@Article{howells-66-var,
  author =       "W. W. Howells",
  title =        "Variability in Family Lines vs. Population
                 Variability",
  journal =      "Annals of the {New York Academy of Sciences}",
  volume =       "134",
  pages =        "624--631",
  year =         "1966",
}

@Article{johnson-74,
  author =       "G. B. Johnson",
  title =        "Enzyme Polymorphism",
  journal =      "Science",
  volume =       "184",
  pages =        "28--37",
  year =         "1974",
}

@Article{johnson-howells,
  author =       "G. B. Johnson and W. W. Howells",
  title =        "Title title title title title title title title title
                 title",
  journal =      "Journal journal journal",
  year =         "1974",
}

@Article{johnson-etc,
  author =       "G. B. Johnson and W. W. Howells and A. N. Other",
  title =        "Title title title title title title title title title
                 title",
  journal =      "Journal journal journal",
  year =         "1976",
}

@Manual{anon-67,
  author =       "Anon.",
  title =        "Title title title title title title title title title
                 title",
  organization = "Organization organization organization",
  year =         "1967",
}

@Article{aslin-49,
  author =       "E. J. Aslin",
  title =        "Photostat recording in library work",
  journal =      "Aslib Proceedings",
  year =         "1949",
  volume =       "1",
  pages =        "49--52",
}

@Article{fletcher-hopkins,
  author =       "W. M. Fletcher and F. G. Hopkins",
  title =        "Lactic Acid in Amphibian Muscle",
  journal =      "J. Physiol.",
  year =         "1907",
  volume =       "35",
  pages =        "247--309",
}

@Incollection{hanson-67,
  author =       "C. W. Hanson",
  title =        "Subject inquiries and literature searching",
  booktitle =    "Handbook of special librarianship and information
                 work",
  editor =       "W. Ashworth",
  year =         "1967",
  edition =      "3rd",
  pages =        "414--452",
}

@Inbook{wright-63,
  author =       "R. C. Wright",
  title =        "Report Literature",
  booktitle =    "Special Materials in the Library",
  editor =       "J. Burkett and T. S. Morgan",
  year =         "1963",
  pages =        "46--59",
}

@Book{BCM-59,
  author =       "{Association of British Chemical Manufacturers}",
  title =        "British chemicals and their manufacturers",
  year =         "1959",
}

@Inbook{feigl-58,
  author =       "F. Feigl",
  title =        "Spot Tests in Organic Analysis",
  year =         "1958",
  publisher =    "Publisher publisher",
  edition =      "5th",
  chapter =      "6",
}

%% @COMMENT{Some examples taken from document describing BS 1629}

@Book{hoel-71-whole,
  author =       "Paul Gerhard Hoel",
  title =        "Elementary Statistics",
  publisher =    "Wiley",
  year =         "1971",
  series =       "Wiley series in probability and mathematical
                 statistics",
  address =      "New York, Chichester",
  edition =      "3rd",
  note =         "ISBN 0~471~40300",
}

@Inbook{hoel-71-portion,
  author =       "Paul Gerhard Hoel",
  title =        "Elementary Statistics",
  publisher =    "Wiley",
  year =         "1971",
  series =       "Wiley series in probability and mathematical
                 statistics",
  address =      "New York, Chichester",
  edition =      "3rd",
  note =         "ISBN 0~471~40300",
  pages =        "19--33",
}

@Book{singer-whole,
  year =         "1954--58",
  editor =       "Charles Joseph Singer and E. J. Holmyard and A. R.
                 Hall",
  title =        "A history of technology",
  address =      "London",
  publisher =    "Oxford University Press",
  note =         "5 vol.",
}

@Incollection{singer-portion-chapter,
  title =        "The late nineteenth century",
  year =         "1954--58",
  editor =       "Charles Joseph Singer and E. J. Holmyard and A. R.
                 Hall",
  booktitle =    "A history of technology",
  address =      "London",
  publisher =    "Oxford University Press",
  type =         "Vol.",
  chapter =      "5",
}

@Incollection{singer-portion-volume,
  title =        "The late nineteenth century",
  year =         "1954--58",
  editor =       "Charles Joseph Singer and E. J. Holmyard and A. R.
                 Hall",
  booktitle =    "A history of technology",
  address =      "London",
  publisher =    "Oxford University Press",
  volume =       "5",
}

@Manual{bs-2570-manual,
  author =       "BSI",
  title =        "Natural Fibre Twines",
  organization = "British Standards Institution",
  address =      "London",
  edition =      "3rd",
  year =         "1973",
  note =         "BS 2570",
}

@Techreport{bs-2570-techreport,
  author =       "BSI",
  title =        "Natural Fibre Twines",
  institution =  "British Standards Institution",
  address =      "London",
  year =         "1973",
  type =         "BS",
  number =       "2570",
  note =         "3rd. edn.",
}

@Inbook{bs-2570-inbook,
  author =       "BSI",
  title =        "{BS} 2570: Natural Fibre Twines",
  publisher =    "British Standards Institution",
  address =      "London",
  year =         "1973",
  edition =      "3rd",
  chapter =      "5",
  type =         "{Table}",
}

@Techreport{ellis-walton,
  author =       "B. Ellis and A. K. Walton",
  title =        "A Bibliography on Optical Modulators",
  institution =  "Royal Aircraft Establishment",
  year =         "1971",
  number =       "RAE-TR-71009",
}

@Article{godfrey-59,
  author =       "G. Bernard Godfrey",
  title =        "Joints in Tubular Structures",
  journal =      "Struct. Eng.",
  year =         "1959",
  volume =       "37",
  number =       "4",
  pages =        "126--135",
}

@Incollection{ramsbottom-31,
  author =       "John Ramsbottom",
  title =        "Fungi Pathogenic to Man",
  booktitle =    "A System of Bacteriology in relation to Medicine",
  publisher =    "HMSO, for Medical Research Council",
  year =         "1931",
  volume =       "8",
  pages =        "11--70",
  address =      "London",
}

@Article{hanlon-72,
  author =       "Joseph Hanlon",
  title =        "Designing Buildings by Computer",
  journal =      "New Scientist",
  year =         "1972",
  month =        "31~" # aug,
  pages =        "429--432",
}

@Techreport{winget-67,
  author =       "{Winget Ltd.}",
  title =        "Detachable Bulldozer Attachment for Dumper Vehicles",
  year =         "1967",
  type =         "GB Patent Specification",
  number =       "1060631",
  month =        "8~" # mar,
}

@Article{bry-afflerbach,
  author =       "I. Bry and L. Afflerbach",
  title =        "In search of an organizing principle for behavioural
                 science literature",
  journal =      "Community Mental Health",
  year =         "1968",
  volume =       "4",
  number =       "1",
  pages =        "75--84",
}

@Incollection{ranganathan-51,
  author =       "S. R. Ranganthan",
  title =        "Colon classification and its approach to
                 documentation",
  booktitle =    "Bibliographic Organization",
  editor =       "Jesse H. Shera and Margaret E. Egan",
  year =         "1951",
  pages =        "94--105",
}

@Book{mccolvin-nodate,
  author =       "L. R. McColvin",
  title =        "Libraries in {Britain}",
  publisher =    "{Longmans Green, for the British Council}",
  address =      "London",
}

%% @COMMENT{Some examples taken from document describing BS 6371}

@Unpublished{exchequer-34-39,
  author =       "Exchequer",
  year =         "1634--1639",
  title =        "Act books",
  note =         "Edinburgh, Scottish Record Office, E.4/5",
}

@Unpublished{traquair-38,
  author =       "{Earl of} Traquair",
  year =         "1638",
  title =        "Letter to {Marquess of Hamilton, 28 Aug.}",
  note =         "Lennoxlove (E.~Lothian), Muniments of Duke of
                 Hamilton and Brandon, C.1, no. 963",
}

@Unpublished{pym-24,
  author =       "J. Pym",
  year =         "1624",
  title =        "Diary",
  note =         "Northampton, Northamptonshire Record Office,
                 Finch-Hatton 50",
}

@Phdthesis{croft-78,
  author =       "W. B. Croft",
  year =         "1978",
  title =        "Organizing and searching large files of document
                 descriptions",
  school =       "Cambridge University",
}

%% @COMMENT{Some examples taken from Chapter 10 of "Copy-editing"
%%       by Judith Butcher}

@Book{darcy-20-amaz,
  author =       "Firstname D'Arcy",
  title =        "Title title title title title title title title title
                 title",
  publisher =    "Publisher publisher publisher",
  year =         "1920",
}

@Book{darcy-20-again,
  author =       "Firstname D'Arcy",
  title =        "Title title title title title title title title title
                 title",
  publisher =    "Publisher publisher publisher",
  year =         "1920",
}

@Article{jones-n-h-r,
  author =       "Firstname Jones and Firstname Norman and Firstname
                 Hazel and Firstname Robinson",
  title =        "Title title title title title title title title title
                 title",
  year =         "1962",
  journal =      "Journal journal journal",
}

@Article{jones-s-r,
  author =       "Firstname Jones and Firstname Smith and Firstname
                 Robinson",
  title =        "Title title title title title title title title title
                 title",
  year =         "1962",
  journal =      "Journal journal journal",
}

@Article{jones-65,
  author =       "Firstname Jones",
  title =        "Title title title title title title title title title
                 title",
  year =         "1965",
  journal =      "Journal journal journal",
}

@Article{jones-69,
  author =       "Firstname Jones",
  title =        "Title title title title title title title title title
                 title",
  year =         "1969",
  journal =      "Journal journal journal",
}

@Article{jones-abrams,
  author =       "Firstname Jones and Firstname Abrams",
  title =        "Title title title title title title title title title
                 title",
  year =         "1968",
  journal =      "Journal journal journal",
}

@Article{jones-smith,
  author =       "Firstname Jones and Firstname Smith",
  title =        "Title title title title title title title title title
                 title",
  year =         "1965",
  journal =      "Journal journal journal",
}

@Article{jones-a-s,
  author =       "Firstname Jones and Firstname Abrams and Firstname
                 Smith",
  title =        "Title title title title title title title title title
                 title",
  year =         "1966",
  journal =      "Journal journal journal",
}

@Article{bloggs-60,
  author =       "A. J. Bloggs",
  title =        "Title title title title title title title title title
                 title",
  journal =      "Journal journal journal",
  year =         "1960",
}

@Article{bloggs-61,
  author =       "A. J. Bloggs",
  title =        "Title title title title title title title title title
                 title",
  journal =      "Journal journal journal",
  year =         "1961",
}

@Article{bloggs-jones,
  author =       "A. J. Bloggs and X. Y. Jones",
  title =        "Title title title title title title title title title
                 title",
  journal =      "Journal journal journal",
  year =         "1959",
}

@Article{bloggs-s-j,
  author =       "A. J. Bloggs and R. S. Smith and X. Y. Jones",
  title =        "Title title title title title title title title title
                 title",
  journal =      "Journal journal journal",
  year =         "1955",
}

@Article{brown-f-s,
  author =       "H. W. Brown and A. S. Forbes and S. D. Smith",
  title =        "Title title title title title title title title title
                 title",
  journal =      "Journal journal journal",
  year =         "1900",
}

@Incollection{eckstein-zuckerman,
  author =       "P. Eckstein and S. Zuckermann",
  title =        "Morphology of the Reproductive Tract",
  booktitle =    "Marshall's Physiology of Reproduction",
  publisher =    "Longman",
  year =         "1960",
  editor =       "A. S. Parkes",
  volume =       "1",
  pages =        "43--154",
  address =      "London",
}

@Article{heller-lederis,
  author =       "H. Heller and K. Lederis",
  title =        "Paper chromatography of small amounts of vasopressin
                 and oxytocin",
  year =         "1958",
  journal =      "Nature",
  address =      "London",
  volume =       "182",
  pages =        "1231--2",
}

@Book{wood-61,
  author =       "R. H. Wood",
  title =        "Plastic and Elastic Design of Slabs and Plates",
  publisher =    "Thames \& Hudson",
  address =      "London",
  year =         "1961",
}

%% @COMMENT{Some examples taken from Chapter 15 of the Chicago Manual of Style}

@Book{pratt-75,
  author =       "Firstname Pratt",
  title =        "Title title title title title title title title title
                 title",
  publisher =    "Publisher publisher publisher",
  year =         "1975",
}

@Article{light-72,
  author =       "Firstname Light",
  title =        "Title title title title title title title title title
                 title",
  journal =      "Journal journal journal",
  year =         "1972",
}

@Article{light-wong,
  author =       "Firstname Light and Firstname Wong",
  title =        "Title title title title title title title title title
                 title",
  journal =      "Journal journal journal",
  year =         "1975",
}

@Article{kingston-76,
  author =       "Firstname Kingston",
  title =        "Title title title title title title title title title
                 title",
  journal =      "Journal journal journal",
  year =         "1976",
}

@Article{kelley-96-spring,
  author =       "Firstname Kelley",
  title =        "Title title title title title title title title title
                 title",
  journal =      "Journal journal journal",
  year =         "1896",
}

@Article{kelley-96-autumn,
  author =       "Firstname Kelley",
  title =        "Title title title title title title title title title
                 title",
  journal =      "Journal journal journal",
  year =         "1896",
}

@Article{kelley-07,
  author =       "Firstname Kelley",
  title =        "Title title title title title title title title title
                 title",
  journal =      "Journal journal journal",
  year =         "1907",
}

@Book{strong-01,
  author =       "Firstname Strong",
  title =        "Title title title title title title title title title
                 title",
  publisher =    "Publisher publisher publisher",
  year =         "1901",
}

@Book{strong-02,
  author =       "Firstname Strong",
  title =        "Title title title title title title title title title
                 title",
  publisher =    "Publisher publisher publisher",
  year =         "1902",
}

@Book{shotwell-01,
  author =       "Firstname Shotwell",
  title =        "Title title title title title title title title title
                 title",
  publisher =    "Publisher publisher publisher",
  year =         "1901",
}

%% @COMMENT{Some examples taken from Chapter 16 of the Chicago Manual of Style}

@Techreport{brunswick-85,
  author =       "`Brunswick'",
  title =        "The piper and the rats: A musical experiment",
  institution =  "Rodent Activities Termination Section (RATS), Pest
                 Control Division, Brunswick Public Welfare Department",
  year =         "1985",
  number =       "1984",
  address =      "Hamelin",
}

@Book{kendeigh-52,
  author =       "S. C. Kendeigh",
  year =         "1952",
  title =        "Parental care and its evolution in birds",
  series =       "Illinois Biological Monographs",
  volume =       "22",
  number =       "1--3",
  address =      "Champaign",
  publisher =    "Univ. of Illinois Press",
}

@Book{chapman-75,
  author =       "Jefferson Chapman",
  year =         "1975",
  title =        "The {Icehouse Bottom} Site---{40MR23}",
  series =       "University of Tennessee Department of Anthropology
                 Publication",
  number =       "23",
  address =      "Knoxville",
  publisher =    "Univ. of Tennessee Press",
}

@Book{hershkovitz-62,
  author =       "P. Hershkovitz",
  year =         "1962",
  title =        "Evolution of {Neotropical} cricetine rodents
                 ({Muridae}) with special reference to the phyllotine
                 group",
  series =       "Fieldiana: Zoology",
  volume =       "46",
  address =      "Chicago",
  publisher =    "Field Museum of Natural History",
}

@Book{wright-78-book,
  title =        "Evolution and the genetics of populations",
  author =       "Sewall Wright",
  year =         "1978",
  address =      "Chicago",
  publisher =    "Univ. of Chicago Press",
  volume =       "4",
}

@Incollection{wright-78-incollection,
  title =        "Variability within and among natural populations",
  author =       "Sewall Wright",
  booktitle =    "Evolution and the genetics of populations",
  year =         "1978",
  address =      "Chicago",
  publisher =    "Univ. of Chicago Press",
  type =         "Vol.",
  chapter =      "4",
}

@Incollection{ogilvy-65,
  author =       "David Ogilvy",
  title =        "The Creative Chef",
  booktitle =    "The Creative Organization",
  year =         "1965",
  editor =       "Gary A. Steiner",
  address =      "Chicago",
  publisher =    "University of Chicago Press",
  pages =        "199--213",
}

@Incollection{mcneill-63,
  author =       "William H. McNeill",
  year =         "1963",
  title =        "The Era of {Middle Eastern} Dominance to 500 {\sc
                 b.c.}",
  booktitle =    "The Rise of the {West}",
  publisher =    "{University of Chicago Press}",
  address =      "Chicago",
  type =         "Part",
  chapter =      "1",
}

@Incollection{thomson-71,
  author =       "Virgil Thomson",
  title =        "Cage and the Collage of Noises",
  booktitle =    "American Music since 1910",
  address =      "New York",
  publisher =    "Holt, Rinehart and Winston",
  year =         "1971",
  chapter =      "8",
}

@Incollection{gordon-75,
  title =        "The Tunes of {Chicken Little}",
  author =       "Robert Gordon",
  year =         "1975",
  booktitle =    "Playwrights for Tomorrow: A Collection of Plays",
  editor =       "Arthur H. Ballet",
  volume =       "13",
  address =      "Minneapolis",
  publisher =    "University of Minnesota Press",
  note =         "One of four plays included in vol. 13",
}

@Incollection{milton-24,
  author =       "John Milton",
  title =        "Paradise Lost",
  booktitle =    "The Complete Poetical Works of {John Milton}",
  edition =      "{Student's Cambridge}",
  address =      "Boston",
  publisher =    "Houghton Mifflin",
  year =         "1924",
  editor =       "William Vaughn Moody",
}

@Inproceedings{chomsky-73,
  author =       "N. Chomsky",
  year =         "1973",
  title =        "Conditions on Transformations",
  booktitle =    "A festschrift for {Morris Halle}",
  editor =       "S. R. Anderson and P. Kiparsky",
  publisher =    "Holt, Rinehart \& Winston",
  address =      "New York",
}

@Inproceedings{chave-64,
  author =       "K. E. Chave",
  year =         "1964",
  title =        "Skeletal durability and preservation",
  booktitle =    "Approaches to paleoecology",
  editor =       "J. Imbrie and N. Newel",
  address =      "New York",
  publisher =    "Wiley",
  pages =        "377--87",
}

@Book{smart-76,
  author =       "Ninian Smart",
  year =         "1976",
  title =        "The religious experience of mankind",
  publisher =    "Schribner",
  address =      "New York",
  edition =      "2nd",
}

@Article{jackson-79,
  author =       "Richard Jackson",
  year =         "1979",
  title =        "Running down the up-escalator: Regional inequality in
                 {Papua New Guinea}",
  journal =      "Australian Geographer",
  volume =       "14",
  month =        may,
  pages =        "175--84",
}

@Article{prufer-64,
  author =       "Olaf Prufer",
  year =         "1964",
  title =        "The {Hopewell} Cult",
  journal =      "Scientific {American}",
  month =        dec,
  pages =        "90--102",
}

@Phdthesis{mann-68,
  author =       "A. E. Mann",
  year =         "1968",
  title =        "The palaeodemography of {Australopithecus}",
  type =         "Ph.D. diss.",
  school =       "University of California, Berkeley",
}

@Phdthesis{maguire-76,
  author =       "J. Maguire",
  year =         "1976",
  title =        "A taxonomic and ecological study of the living and
                 fossil {Hystricidae} with particular reference to
                 southern {Africa}",
  type =         "Ph.D. diss.",
  school =       "Department of Geology, University of the
                 Witwatersrand",
  address =      "Johannesburg",
}

@Unpublished{downes-74,
  title =        "Systemic grammar and structural sentence relatedness",
  author =       "W. J. Downes",
  year =         "1974",
  note =         "London School of Economics. Mimeo.",
}

@Misc{hunt-76,
  author =       "Horace [pseud.] Hunt",
  title =        "Interview",
  year =         "1976",
  howpublished = "Tape recording, Pennsylvania Historical and Museum
                 Commission, Harrisburg",
  note =         "Interview by {Ronald Schatz, 16 May 1976}",
}

Les logs

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
This is XeTeX, Version 3.14159265-2.6-0.99992 (MiKTeX 2.9 64-bit) (preloaded format=xelatex 2016.4.17)  17 APR 2016 14:02
entering extended mode
**./test.tex
(test.tex
LaTeX2e <2015/10/01> patch level 2
Babel <3.9n> and hyphenation patterns for 69 languages loaded.
(D:\Software\MiKTeX\tex\latex\base\book.cls
Document Class: book 2014/09/29 v1.4h Standard LaTeX document class
(D:\Software\MiKTeX\tex\latex\base\bk12.clo
File: bk12.clo 2014/09/29 v1.4h Standard LaTeX file (size option)
Requested font "cmr12" at 12.0pt
)
\c@part=\count79
\c@chapter=\count80
\c@section=\count81
\c@subsection=\count82
\c@subsubsection=\count83
\c@paragraph=\count84
\c@subparagraph=\count85
\c@figure=\count86
\c@table=\count87
\abovecaptionskip=\skip41
\belowcaptionskip=\skip42
\bibindent=\dimen102
)
(D:\Software\MiKTeX\tex\latex\fontspec\fontspec.sty
Package: fontspec 2015/09/24 v2.4e Font selection for XeLaTeX and LuaLaTeX

(D:\Software\MiKTeX\tex\latex\l3kernel\expl3.sty
Package: expl3 2016/01/19 v6377 L3 programming layer (loader) 

(D:\Software\MiKTeX\tex\latex\l3kernel\expl3-code.tex
Package: expl3 2016/01/19 v6377 L3 programming layer (code)
L3 Module: l3bootstrap 2016/01/01 v6339 L3 Bootstrap code
L3 Module: l3names 2015/12/21 v6328 L3 Namespace for primitives
L3 Module: l3basics 2015/11/22 v6315 L3 Basic definitions
L3 Module: l3expan 2015/09/10 v5983 L3 Argument expansion
L3 Module: l3tl 2015/09/29 v6121 L3 Token lists
L3 Module: l3str 2016/01/03 v6357 L3 Strings
L3 Module: l3seq 2015/08/05 v5777 L3 Sequences and stacks
L3 Module: l3int 2016/01/05 v6366 L3 Integers
\c_max_int=\count88
\l_tmpa_int=\count89
\l_tmpb_int=\count90
\g_tmpa_int=\count91
\g_tmpb_int=\count92
L3 Module: l3quark 2015/08/17 v5855 L3 Quarks
L3 Module: l3prg 2015/11/01 v6216 L3 Control structures
\g__prg_map_int=\count93
L3 Module: l3clist 2015/09/02 v5901 L3 Comma separated lists
L3 Module: l3token 2015/11/11 v6249 L3 Experimental token manipulation
L3 Module: l3prop 2016/01/05 v6366 L3 Property lists
L3 Module: l3msg 2015/09/28 v6113 L3 Messages
L3 Module: l3file 2015/12/03 v6317 L3 File and I/O operations
\l_iow_line_count_int=\count94
\l__iow_target_count_int=\count95
\l__iow_current_line_int=\count96
\l__iow_current_word_int=\count97
\l__iow_current_indentation_int=\count98
L3 Module: l3skip 2016/01/05 v6366 L3 Dimensions and skips
\c_zero_dim=\dimen103
\c_max_dim=\dimen104
\l_tmpa_dim=\dimen105
\l_tmpb_dim=\dimen106
\g_tmpa_dim=\dimen107
\g_tmpb_dim=\dimen108
\c_zero_skip=\skip43
\c_max_skip=\skip44
\l_tmpa_skip=\skip45
\l_tmpb_skip=\skip46
\g_tmpa_skip=\skip47
\g_tmpb_skip=\skip48
\c_zero_muskip=\muskip10
\c_max_muskip=\muskip11
\l_tmpa_muskip=\muskip12
\l_tmpb_muskip=\muskip13
\g_tmpa_muskip=\muskip14
\g_tmpb_muskip=\muskip15
L3 Module: l3keys 2015/11/17 v6284 L3 Key-value interfaces
\g__keyval_level_int=\count99
\l_keys_choice_int=\count100
L3 Module: l3fp 2015/08/25 v5890 L3 Floating points
\c__fp_leading_shift_int=\count101
\c__fp_middle_shift_int=\count102
\c__fp_trailing_shift_int=\count103
\c__fp_big_leading_shift_int=\count104
\c__fp_big_middle_shift_int=\count105
\c__fp_big_trailing_shift_int=\count106
\c__fp_Bigg_leading_shift_int=\count107
\c__fp_Bigg_middle_shift_int=\count108
\c__fp_Bigg_trailing_shift_int=\count109
L3 Module: l3box 2015/08/09 v5822 L3 Experimental boxes
\c_empty_box=\box26
\l_tmpa_box=\box27
\l_tmpb_box=\box28
\g_tmpa_box=\box29
\g_tmpb_box=\box30
L3 Module: l3coffins 2015/08/06 v5789 L3 Coffin code layer
\l__coffin_internal_box=\box31
\l__coffin_internal_dim=\dimen109
\l__coffin_offset_x_dim=\dimen110
\l__coffin_offset_y_dim=\dimen111
\l__coffin_x_dim=\dimen112
\l__coffin_y_dim=\dimen113
\l__coffin_x_prime_dim=\dimen114
\l__coffin_y_prime_dim=\dimen115
\c_empty_coffin=\box32
\l__coffin_aligned_coffin=\box33
\l__coffin_aligned_internal_coffin=\box34
\l_tmpa_coffin=\box35
\l_tmpb_coffin=\box36
\l__coffin_display_coffin=\box37
\l__coffin_display_coord_coffin=\box38
\l__coffin_display_pole_coffin=\box39
\l__coffin_display_offset_dim=\dimen116
\l__coffin_display_x_dim=\dimen117
\l__coffin_display_y_dim=\dimen118
L3 Module: l3color 2014/08/23 v5354 L3 Experimental color support
L3 Module: l3sys 2015/09/25 v6087 L3 Experimental system/runtime functions
L3 Module: l3candidates 2016/01/14 v6376 L3 Experimental additions to l3kernel
\l__box_top_dim=\dimen119
\l__box_bottom_dim=\dimen120
\l__box_left_dim=\dimen121
\l__box_right_dim=\dimen122
\l__box_top_new_dim=\dimen123
\l__box_bottom_new_dim=\dimen124
\l__box_left_new_dim=\dimen125
\l__box_right_new_dim=\dimen126
\l__box_internal_box=\box40
\l__coffin_bounding_shift_dim=\dimen127
\l__coffin_left_corner_dim=\dimen128
\l__coffin_right_corner_dim=\dimen129
\l__coffin_bottom_corner_dim=\dimen130
\l__coffin_top_corner_dim=\dimen131
\l__coffin_scaled_total_height_dim=\dimen132
\l__coffin_scaled_width_dim=\dimen133
L3 Module: l3luatex 2015/11/11 v6250 L3 Experimental LuaTeX-specific functions
)
(D:\Software\MiKTeX\tex\latex\l3kernel\l3xdvipdfmx.def
File: l3xdvidpfmx.def 2015/11/11 v6250 L3 Experimental driver: xdvipdfmx
))
(D:\Software\MiKTeX\tex\latex\l3packages\xparse\xparse.sty
Package: xparse 2016/01/19 v6377 L3 Experimental document command parser
\l__xparse_current_arg_int=\count110
\l__xparse_m_args_int=\count111
\l__xparse_mandatory_args_int=\count112
\l__xparse_processor_int=\count113
\l__xparse_v_nesting_int=\count114
)
\l_fontspec_script_int=\count115
\l_fontspec_language_int=\count116
\l_fontspec_strnum_int=\count117
\l__fontspec_tmpa_dim=\dimen134
\l__fontspec_tmpb_dim=\dimen135
\l__fontspec_tmpc_dim=\dimen136

(D:\Software\MiKTeX\tex\latex\fontspec\fontspec-patches.sty
Package: fontspec-patches 2015/09/24 v2.4e Font selection for XeLaTeX and LuaLa
TeX
LaTeX Info: Redefining \em on input line 49.
LaTeX Info: Redefining \emph on input line 57.
LaTeX Info: Redefining \- on input line 60.
.................................................
. LaTeX info: "xparse/redefine-command"
. 
. Redefining command \oldstylenums with sig. 'm' on line 155.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
. 
. Defining command \liningnums with sig. 'm' on line 159.
.................................................
)
(D:\Software\MiKTeX\tex\latex\fontspec\fontspec-xetex.sty
Package: fontspec-xetex 2015/09/24 v2.4e Font selection for XeLaTeX and LuaLaTe
X

(D:\Software\MiKTeX\tex\latex\base\fontenc.sty
Package: fontenc 2005/09/27 v1.99g Standard LaTeX package

(D:\Software\MiKTeX\tex\latex\euenc\eu1enc.def
File: eu1enc.def 2010/05/27 v0.1h Experimental Unicode font encodings
)
LaTeX Font Info:    Try loading font information for EU1+lmr on input line 105.


(D:\Software\MiKTeX\tex\latex\euenc\eu1lmr.fd
File: eu1lmr.fd 2009/10/30 v1.6 Font defs for Latin Modern
)
Requested font "[lmroman10-regular]:mapping=tex-text" at 10.0pt
 -> D:/Software/MiKTeX/fonts/opentype/public/lm/lmroman10-regular.otf
)
(D:\Software\MiKTeX\tex\xelatex\xunicode\xunicode.sty
File: xunicode.sty 2011/09/09 v0.981 provides access to latin accents and many 
other characters in Unicode lower plane

(D:\Software\MiKTeX\tex\latex\tipa\t3enc.def
File: t3enc.def 2001/12/31 T3 encoding
Requested font "[lmromanslant10-regular]:mapping=tex-text" at 10.0pt
 -> D:/Software/MiKTeX/fonts/opentype/public/lm/lmromanslant10-regular.otf
Requested font "[lmroman10-italic]:mapping=tex-text" at 10.0pt
 -> D:/Software/MiKTeX/fonts/opentype/public/lm/lmroman10-italic.otf
Requested font "[lmroman10-bold]:mapping=tex-text" at 10.0pt
 -> D:/Software/MiKTeX/fonts/opentype/public/lm/lmroman10-bold.otf
LaTeX Font Info:    Try loading font information for EU1+lmss on input line 357
.

(D:\Software\MiKTeX\tex\latex\euenc\eu1lmss.fd
File: eu1lmss.fd 2009/10/30 v1.6 Font defs for Latin Modern
)
Requested font "[lmsans10-regular]:mapping=tex-text" at 10.0pt
 -> D:/Software/MiKTeX/fonts/opentype/public/lm/lmsans10-regular.otf
)
\tipaTiiicode=\count118
\tipasavetokens=\toks14
\tipachecktokens=\toks15

(D:\Software\MiKTeX\tex\latex\graphics\graphicx.sty
Package: graphicx 2014/10/28 v1.0g Enhanced LaTeX Graphics (DPC,SPQR)

(D:\Software\MiKTeX\tex\latex\graphics\keyval.sty
Package: keyval 2014/10/28 v1.15 key=value parser (DPC)
\KV@toks@=\toks16
)
(D:\Software\MiKTeX\tex\latex\graphics\graphics.sty
Package: graphics 2014/10/28 v1.0p Standard LaTeX Graphics (DPC,SPQR)

(D:\Software\MiKTeX\tex\latex\graphics\trig.sty
Package: trig 1999/03/16 v1.09 sin cos tan (DPC)
)
(D:\Software\MiKTeX\tex\latex\00miktex\graphics.cfg
File: graphics.cfg 2007/01/18 v1.5 graphics configuration of teTeX/TeXLive
)
Package graphics Info: Driver file: xetex.def on input line 94.

(D:\Software\MiKTeX\tex\xelatex\xetex-def\xetex.def
File: xetex.def 2016/04/06 v4.08 LaTeX color/graphics driver for XeTeX (TeX Liv
e/RRM/JK)

(D:\Software\MiKTeX\tex\generic\oberdiek\infwarerr.sty
Package: infwarerr 2010/04/08 v1.3 Providing info/warning/error messages (HO)
)
(D:\Software\MiKTeX\tex\generic\oberdiek\ltxcmds.sty
Package: ltxcmds 2011/11/09 v1.22 LaTeX kernel commands for general use (HO)
)))
\Gin@req@height=\dimen137
\Gin@req@width=\dimen138
))
.................................................
. LaTeX info: "xparse/define-command"
. 
. Defining command \__fontspec_post_arg:w with sig. 'mmO{}' on line 42.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
. 
. Defining command \fontspec with sig. 'om' on line 44.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
. 
. Defining command \setmainfont with sig. 'om' on line 54.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
. 
. Defining command \setsansfont with sig. 'om' on line 64.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
. 
. Defining command \setmonofont with sig. 'om' on line 74.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
. 
. Defining command \setmathrm with sig. 'om' on line 88.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
. 
. Defining command \setboldmathrm with sig. 'om' on line 96.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
. 
. Defining command \setmathsf with sig. 'om' on line 104.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
. 
. Defining command \setmathtt with sig. 'om' on line 112.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
. 
. Defining command \newfontfamily with sig. 'mom' on line 126.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
. 
. Defining command \newfontface with sig. 'mom' on line 141.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
. 
. Defining command \defaultfontfeatures with sig. 't+om' on line 155.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
. 
. Defining command \addfontfeatures with sig. 'm' on line 210.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
. 
. Defining command \newfontfeature with sig. 'mm' on line 221.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
. 
. Defining command \newAATfeature with sig. 'mmmm' on line 229.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
. 
. Defining command \newopentypefeature with sig. 'mmm' on line 237.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
. 
. Defining command \aliasfontfeature with sig. 'mm' on line 258.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
. 
. Defining command \aliasfontfeatureoption with sig. 'mmm' on line 267.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
. 
. Defining command \newfontscript with sig. 'mm' on line 272.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
. 
. Defining command \newfontlanguage with sig. 'mm' on line 298.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
. 
. Defining command \DeclareFontsExtensions with sig. 'm' on line 318.
.................................................
\l__fontspec_tmp_int=\count119
LaTeX Info: Redefining \itshape on input line 2227.
LaTeX Info: Redefining \slshape on input line 2232.
LaTeX Info: Redefining \scshape on input line 2237.
LaTeX Info: Redefining \upshape on input line 2242.

(D:\Software\MiKTeX\tex\latex\fontspec\fontspec.cfg)))
(D:\Software\MiKTeX\tex\latex\polyglossia\polyglossia.sty
Package: polyglossia 2015/08/06 v1.42.0 Alternative to Babel for XeLaTeX and Lu
aLaTeX

(D:\Software\MiKTeX\tex\latex\etoolbox\etoolbox.sty
Package: etoolbox 2015/08/02 v2.2a e-TeX tools for LaTeX (JAW)
\etb@tempcnta=\count120
)
(D:\Software\MiKTeX\tex\latex\makecmds\makecmds.sty
Package: makecmds 2009/09/03 v1.0a extra command making commands
)
(D:\Software\MiKTeX\tex\latex\xkeyval\xkeyval.sty
Package: xkeyval 2014/12/03 v2.7a package option processing (HA)

(D:\Software\MiKTeX\tex\generic\xkeyval\xkeyval.tex
(D:\Software\MiKTeX\tex\generic\xkeyval\xkvutils.tex
\XKV@toks=\toks17
\XKV@tempa@toks=\toks18
)
\XKV@depth=\count121
File: xkeyval.tex 2014/12/03 v2.7a key=value parser (HA)
))
(D:\Software\MiKTeX\tex\generic\oberdiek\ifluatex.sty
Package: ifluatex 2010/03/01 v1.3 Provides the ifluatex switch (HO)
Package ifluatex Info: LuaTeX not detected.
)
(D:\Software\MiKTeX\tex\generic\ifxetex\ifxetex.sty
Package: ifxetex 2010/09/12 v0.6 Provides ifxetex conditional
)
\xpg@normalclass=\XeTeXcharclass4
)
(D:\Software\MiKTeX\tex\latex\base\inputenc.sty
Package: inputenc 2015/03/17 v1.2c Input encoding file
\inpenc@prehook=\toks19
\inpenc@posthook=\toks20


Package inputenc Warning: inputenc package ignored with utf8 based engines.

) (D:\Software\MiKTeX\tex\latex\csquotes\csquotes.sty
Package: csquotes 2016/01/31 v5.1g context-sensitive quotations (JAW)
\csq@reset=\count122
\csq@gtype=\count123
\csq@glevel=\count124
\csq@qlevel=\count125
\csq@maxlvl=\count126
\csq@tshold=\count127
\csq@ltx@everypar=\toks21

(D:\Software\MiKTeX\tex\latex\csquotes\csquotes.def
File: csquotes.def 2016/01/31 v5.1g csquotes generic definitions (JAW)
)
Package csquotes Info: Trying to load configuration file 'csquotes.cfg'...
Package csquotes Info: ... configuration file loaded successfully.

(D:\Software\MiKTeX\tex\latex\csquotes\csquotes.cfg
File: csquotes.cfg 
))
(D:\Software\MiKTeX\tex\latex\biblatex\biblatex.sty
Package: biblatex 2016/03/03 v3.3 programmable bibliographies (PK/JW/AB)

(D:\Software\MiKTeX\tex\latex\biblatex\biblatex_.sty
Package: biblatex_ 2016/03/03 v3.3 programmable bibliographies (biber) (PK/JW/A
B)

(D:\Software\MiKTeX\tex\latex\oberdiek\kvoptions.sty
Package: kvoptions 2011/06/30 v3.11 Key value format for package options (HO)

(D:\Software\MiKTeX\tex\generic\oberdiek\kvsetkeys.sty
Package: kvsetkeys 2012/04/25 v1.16 Key value parser (HO)

(D:\Software\MiKTeX\tex\generic\oberdiek\etexcmds.sty
Package: etexcmds 2011/02/16 v1.5 Avoid name clashes with e-TeX commands (HO)
Package etexcmds Info: Could not find \expanded.
(etexcmds)             That can mean that you are not using pdfTeX 1.50 or
(etexcmds)             that some package has redefined \expanded.
(etexcmds)             In the latter case, load this package earlier.
)))
(D:\Software\MiKTeX\tex\latex\logreq\logreq.sty
Package: logreq 2010/08/04 v1.0 xml request logger
\lrq@indent=\count128

(D:\Software\MiKTeX\tex\latex\logreq\logreq.def
File: logreq.def 2010/08/04 v1.0 logreq spec v1.0
))
(D:\Software\MiKTeX\tex\latex\base\ifthen.sty
Package: ifthen 2014/09/29 v1.1c Standard LaTeX ifthen package (DPC)
)
(D:\Software\MiKTeX\tex\latex\url\url.sty
\Urlmuskip=\muskip16
Package: url 2013/09/16  ver 3.4  Verb mode for urls, etc.
)
\c@tabx@nest=\count129
\c@listtotal=\count130
\c@listcount=\count131
\c@liststart=\count132
\c@liststop=\count133
\c@citecount=\count134
\c@citetotal=\count135
\c@multicitecount=\count136
\c@multicitetotal=\count137
\c@instcount=\count138
\c@maxnames=\count139
\c@minnames=\count140
\c@maxitems=\count141
\c@minitems=\count142
\c@citecounter=\count143
\c@savedcitecounter=\count144
\c@uniquelist=\count145
\c@uniquename=\count146
\c@refsection=\count147
\c@refsegment=\count148
\c@maxextratitle=\count149
\c@maxextratitleyear=\count150
\c@maxextrayear=\count151
\c@maxextraalpha=\count152
\c@abbrvpenalty=\count153
\c@highnamepenalty=\count154
\c@lownamepenalty=\count155
\c@maxparens=\count156
\c@parenlevel=\count157
\blx@tempcnta=\count158
\blx@tempcntb=\count159
\blx@tempcntc=\count160
\blx@maxsection=\count161
\blx@maxsegment@0=\count162
\blx@notetype=\count163
\blx@parenlevel@text=\count164
\blx@parenlevel@foot=\count165
\blx@sectionciteorder@0=\count166
\labelnumberwidth=\skip49
\labelalphawidth=\skip50
\biblabelsep=\skip51
\bibitemsep=\skip52
\bibnamesep=\skip53
\bibinitsep=\skip54
\bibparsep=\skip55
\bibhang=\skip56
\blx@bcfin=\read1
\blx@bcfout=\write3
\c@mincomprange=\count167
\c@maxcomprange=\count168
\c@mincompwidth=\count169
Package biblatex Info: Trying to load biblatex default data model...
Package biblatex Info: ... file 'blx-dm.def' found.

(D:\Software\MiKTeX\tex\latex\biblatex\blx-dm.def)
Package biblatex Info: Trying to load biblatex style data model...
Package biblatex Info: ... file 'authoryear.dbx' not found.
Package biblatex Info: Trying to load biblatex custom data model...
Package biblatex Info: ... file 'biblatex-dm.cfg' not found.
\c@afterword=\count170
\c@savedafterword=\count171
\c@annotator=\count172
\c@savedannotator=\count173
\c@author=\count174
\c@savedauthor=\count175
\c@bookauthor=\count176
\c@savedbookauthor=\count177
\c@commentator=\count178
\c@savedcommentator=\count179
\c@editor=\count180
\c@savededitor=\count181
\c@editora=\count182
\c@savededitora=\count183
\c@editorb=\count184
\c@savededitorb=\count185
\c@editorc=\count186
\c@savededitorc=\count187
\c@foreword=\count188
\c@savedforeword=\count189
\c@holder=\count190
\c@savedholder=\count191
\c@introduction=\count192
\c@savedintroduction=\count193
\c@namea=\count194
\c@savednamea=\count195
\c@nameb=\count196
\c@savednameb=\count197
\c@namec=\count198
\c@savednamec=\count199
\c@translator=\count266
\c@savedtranslator=\count267
\c@shortauthor=\count268
\c@savedshortauthor=\count269
\c@shorteditor=\count270
\c@savedshorteditor=\count271
\c@labelname=\count272
\c@savedlabelname=\count273
\c@institution=\count274
\c@savedinstitution=\count275
\c@lista=\count276
\c@savedlista=\count277
\c@listb=\count278
\c@savedlistb=\count279
\c@listc=\count280
\c@savedlistc=\count281
\c@listd=\count282
\c@savedlistd=\count283
\c@liste=\count284
\c@savedliste=\count285
\c@listf=\count286
\c@savedlistf=\count287
\c@location=\count288
\c@savedlocation=\count289
\c@organization=\count290
\c@savedorganization=\count291
\c@origlocation=\count292
\c@savedoriglocation=\count293
\c@origpublisher=\count294
\c@savedorigpublisher=\count295
\c@publisher=\count296
\c@savedpublisher=\count297
\c@language=\count298
\c@savedlanguage=\count299
\c@pageref=\count300
\c@savedpageref=\count301
\shorthandwidth=\skip57
\shortjournalwidth=\skip58
\shortserieswidth=\skip59
\shorttitlewidth=\skip60
\shortauthorwidth=\skip61
\shorteditorwidth=\skip62
Package biblatex Info: Trying to load compatibility code...
Package biblatex Info: ... file 'blx-compat.def' found.

(D:\Software\MiKTeX\tex\latex\biblatex\blx-compat.def
File: blx-compat.def 2016/03/03 v3.3 biblatex compatibility (PK/JW/AB)
)
Package biblatex Info: Trying to load generic definitions...
Package biblatex Info: ... file 'biblatex_.def' found.

(D:\Software\MiKTeX\tex\latex\biblatex\biblatex_.def
File: biblatex_.def 
\c@textcitecount=\count302
\c@textcitetotal=\count303
\c@textcitemaxnames=\count304
\c@biburlnumpenalty=\count305
\c@biburlucpenalty=\count306
\c@biburllcpenalty=\count307
\c@smartand=\count308
)
Package biblatex Info: Trying to load natbib compatibility...
Package biblatex Info: ... file 'blx-natbib.def' found.

(D:\Software\MiKTeX\tex\latex\biblatex\blx-natbib.def
File: blx-natbib.def 2016/03/03 v3.3 biblatex compatibility (PK/JW/AB)
)
Package biblatex Info: Trying to load bibliography style 'authoryear'...
Package biblatex Info: ... file 'authoryear.bbx' found.

(D:\Software\MiKTeX\tex\latex\biblatex\bbx\authoryear.bbx
File: authoryear.bbx 2016/03/03 v3.3 biblatex bibliography style (PK/JW/AB)
Package biblatex Info: Trying to load bibliography style 'standard'...
Package biblatex Info: ... file 'standard.bbx' found.

(D:\Software\MiKTeX\tex\latex\biblatex\bbx\standard.bbx
File: standard.bbx 2016/03/03 v3.3 biblatex bibliography style (PK/JW/AB)
\c@bbx:relatedcount=\count309
\c@bbx:relatedtotal=\count310
))
Package biblatex Info: Trying to load citation style 'authoryear'...
Package biblatex Info: ... file 'authoryear.cbx' found.

(D:\Software\MiKTeX\tex\latex\biblatex\cbx\authoryear.cbx
File: authoryear.cbx 2016/03/03 v3.3 biblatex citation style (PK/JW/AB)
Package biblatex Info: Redefining '\cite'.
Package biblatex Info: Redefining '\parencite'.
Package biblatex Info: Redefining '\footcite'.
Package biblatex Info: Redefining '\footcitetext'.
Package biblatex Info: Redefining '\smartcite'.
Package biblatex Info: Redefining '\textcite'.
Package biblatex Info: Redefining '\textcites'.
)
Package biblatex Info: Trying to load configuration file...
Package biblatex Info: ... file 'biblatex.cfg' found.

(D:\Software\MiKTeX\tex\latex\biblatex\biblatex.cfg
File: biblatex.cfg 
)))
(D:\Software\MiKTeX\tex\latex\polyglossia\gloss-french.ldf
File: gloss-french.ldf polyglossia: module for french
\french@punctthin=\XeTeXcharclass5
\french@punctthick=\XeTeXcharclass6
\french@punctguillstart=\XeTeXcharclass7
\french@punctguillend=\XeTeXcharclass8
)
Package polyglossia Info: Default language is french.
Package csquotes Info: Checking for multilingual support...
Package csquotes Info: ... found 'polyglossia' package.


Package csquotes Warning: Using preliminary 'polyglossia' interface.
(csquotes)                Some of the multilingual features may not
(csquotes)                work as expected.

Package csquotes Info: Adjusting default style.
Package csquotes Info: Redefining alias 'default' -> 'french'.

Package biblatex Warning: Upgrade package 'polyglossia' to >v1.42.0 recommended
.

Package biblatex Info: Trying to load language 'french'...
Package biblatex Info: ... file 'french.lbx' found.
(D:\Software\MiKTeX\tex\latex\biblatex\lbx\french.lbx
File: french.lbx 2016/03/03 v3.3 biblatex localization (PK/JW/AB)
) (test.aux)
\openout1 = `test.aux'.

LaTeX Font Info:    Checking defaults for OML/cmm/m/it on input line 10.
LaTeX Font Info:    ... okay on input line 10.
LaTeX Font Info:    Checking defaults for T1/cmr/m/n on input line 10.
LaTeX Font Info:    ... okay on input line 10.
LaTeX Font Info:    Checking defaults for OT1/cmr/m/n on input line 10.
LaTeX Font Info:    ... okay on input line 10.
LaTeX Font Info:    Checking defaults for OMS/cmsy/m/n on input line 10.
LaTeX Font Info:    ... okay on input line 10.
LaTeX Font Info:    Checking defaults for OMX/cmex/m/n on input line 10.
LaTeX Font Info:    ... okay on input line 10.
LaTeX Font Info:    Checking defaults for U/cmr/m/n on input line 10.
LaTeX Font Info:    ... okay on input line 10.
LaTeX Font Info:    Checking defaults for EU1/lmr/m/n on input line 10.
LaTeX Font Info:    ... okay on input line 10.
LaTeX Font Info:    Checking defaults for T3/cmr/m/n on input line 10.
LaTeX Font Info:    Try loading font information for T3+cmr on input line 10.

(D:\Software\MiKTeX\tex\latex\tipa\t3cmr.fd
File: t3cmr.fd 2001/12/31 TIPA font definitions
)
LaTeX Font Info:    ... okay on input line 10.
Requested font "[lmroman12-regular]:mapping=tex-text" at 12.0pt
 -> D:/Software/MiKTeX/fonts/opentype/public/lm/lmroman12-regular.otf

*** you should *not* be loading the inputenc package
*** XeTeX expects the source to be in UTF8 encoding
*** some features of other encodings may conflict, resulting in poor output.
.................................................
. fontspec info: "setup-math"
. 
. Adjusting the maths setup (use [no-math] to avoid this).
.................................................
\symlegacymaths=\mathgroup4
LaTeX Font Info:    Overwriting symbol font `legacymaths' in version `bold'
(Font)                  OT1/cmr/m/n --> OT1/cmr/bx/n on input line 10.
LaTeX Font Info:    Redeclaring math accent \acute on input line 10.
LaTeX Font Info:    Redeclaring math accent \grave on input line 10.
LaTeX Font Info:    Redeclaring math accent \ddot on input line 10.
LaTeX Font Info:    Redeclaring math accent \tilde on input line 10.
LaTeX Font Info:    Redeclaring math accent \bar on input line 10.
LaTeX Font Info:    Redeclaring math accent \breve on input line 10.
LaTeX Font Info:    Redeclaring math accent \check on input line 10.
LaTeX Font Info:    Redeclaring math accent \hat on input line 10.
LaTeX Font Info:    Redeclaring math accent \dot on input line 10.
LaTeX Font Info:    Redeclaring math accent \mathring on input line 10.
LaTeX Font Info:    Redeclaring math symbol \colon on input line 10.
LaTeX Font Info:    Redeclaring math symbol \Gamma on input line 10.
LaTeX Font Info:    Redeclaring math symbol \Delta on input line 10.
LaTeX Font Info:    Redeclaring math symbol \Theta on input line 10.
LaTeX Font Info:    Redeclaring math symbol \Lambda on input line 10.
LaTeX Font Info:    Redeclaring math symbol \Xi on input line 10.
LaTeX Font Info:    Redeclaring math symbol \Pi on input line 10.
LaTeX Font Info:    Redeclaring math symbol \Sigma on input line 10.
LaTeX Font Info:    Redeclaring math symbol \Upsilon on input line 10.
LaTeX Font Info:    Redeclaring math symbol \Phi on input line 10.
LaTeX Font Info:    Redeclaring math symbol \Psi on input line 10.
LaTeX Font Info:    Redeclaring math symbol \Omega on input line 10.
LaTeX Font Info:    Redeclaring math symbol \mathdollar on input line 10.
LaTeX Font Info:    Redeclaring symbol font `operators' on input line 10.
LaTeX Font Info:    Encoding `OT1' has changed to `EU1' for symbol font
(Font)              `operators' in the math version `normal' on input line 10.
LaTeX Font Info:    Overwriting symbol font `operators' in version `normal'
(Font)                  OT1/cmr/m/n --> EU1/lmr/m/n on input line 10.
LaTeX Font Info:    Encoding `OT1' has changed to `EU1' for symbol font
(Font)              `operators' in the math version `bold' on input line 10.
LaTeX Font Info:    Overwriting symbol font `operators' in version `bold'
(Font)                  OT1/cmr/bx/n --> EU1/lmr/m/n on input line 10.
LaTeX Font Info:    Overwriting symbol font `operators' in version `normal'
(Font)                  EU1/lmr/m/n --> EU1/lmr/m/n on input line 10.
LaTeX Font Info:    Overwriting math alphabet `\mathit' in version `normal'
(Font)                  OT1/cmr/m/it --> EU1/lmr/m/it on input line 10.
LaTeX Font Info:    Overwriting math alphabet `\mathbf' in version `normal'
(Font)                  OT1/cmr/bx/n --> EU1/lmr/bx/n on input line 10.
LaTeX Font Info:    Overwriting math alphabet `\mathsf' in version `normal'
(Font)                  OT1/cmss/m/n --> EU1/lmss/m/n on input line 10.
LaTeX Font Info:    Overwriting math alphabet `\mathtt' in version `normal'
(Font)                  OT1/cmtt/m/n --> EU1/lmtt/m/n on input line 10.
LaTeX Font Info:    Overwriting symbol font `operators' in version `bold'
(Font)                  EU1/lmr/m/n --> EU1/lmr/bx/n on input line 10.
LaTeX Font Info:    Overwriting math alphabet `\mathit' in version `bold'
(Font)                  OT1/cmr/bx/it --> EU1/lmr/bx/it on input line 10.
LaTeX Font Info:    Overwriting math alphabet `\mathsf' in version `bold'
(Font)                  OT1/cmss/bx/n --> EU1/lmss/bx/n on input line 10.
LaTeX Font Info:    Overwriting math alphabet `\mathtt' in version `bold'
(Font)                  OT1/cmtt/m/n --> EU1/lmtt/bx/n on input line 10.
Package biblatex Info: XeTeX detected.
(biblatex)             Assuming input encoding 'utf8'.
Package biblatex Info: Automatic encoding selection.
(biblatex)             Assuming data encoding 'utf8'.
\openout3 = `test.bcf'.

Package biblatex Info: Trying to load bibliographic data...
Package biblatex Info: ... file 'test.bbl' not found.
No file test.bbl.
Package biblatex Info: Reference section=0 on input line 10.
Package biblatex Info: Reference segment=0 on input line 10.

LaTeX Warning: Empty bibliography on input line 14.

(test.aux)

LaTeX Warning: There were undefined references.


Package biblatex Warning: Please (re)run Biber on the file:
(biblatex)                test
(biblatex)                and rerun LaTeX afterwards.

Package logreq Info: Writing requests to 'test.run.xml'.
\openout1 = `test.run.xml'.

 ) 
Here is how much of TeX's memory you used:
 20801 strings out of 428721
 407384 string characters out of 3165594
 765041 words of memory out of 3000000
 24073 multiletter control sequences out of 15000+200000
 3986 words of font info for 21 fonts, out of 3000000 for 9000
 1096 hyphenation exceptions out of 8191
 48i,1n,46p,10378b,715s stack positions out of 5000i,500n,10000p,200000b,50000s

No pages of output.

Si vous avez une idée, ça me prends un peu la tête !

+0 -0

Chez moi ça marche. Je ne sais pas comment tu t'y prends pour compiler, mais LaTeX (et dérivés) et Bibtex (et dérivés), pour des raisons d'efficacité (aujourd'hui obsolètes, mais héritées), demandent plusieurs passes de compilation : une passe du compilateur latex pour savoir quelles citations sont nécessaires, une passe de l'outil de bibliographie pour produire les citations, une passe du compilateur latex pour les inclure dans le document, et une dernière passe pour compléter les renvois à la bibliographie dans le document. C'est normalement expliqué par n'importe quel bon cours sur LaTeX.

En utilisant BibLAtex, tu as des alternatives au programme bibtex. Personnellement j'utilise biber, qu'il faut installer séparément. Encore une fois, je ne sais pas ce qu'il y a dans MikTeX.

De manière générale, pour éviter ces 4 compilations (qui sont un peu pénibles, surtout quand on débute et qu'on veut des retours rapides pour savoir si le code LaTeX qu'on écrit est correct) il y a plusieurs outils, notamment latexmk qui permet d'automatiser la compilation, bibliographie comprise. Ici encore, je ne sais pas ce qui est disponible sous Windows.

Enfin, à l'avenir merci d'essayer de produire des exemples minimaux, comme ton .tex ici (mais pas comme ta bibliographie).

Connectez-vous pour pouvoir poster un message.
Connexion

Pas encore membre ?

Créez un compte en une minute pour profiter pleinement de toutes les fonctionnalités de Zeste de Savoir. Ici, tout est gratuit et sans publicité.
Créer un compte