-
Notifications
You must be signed in to change notification settings - Fork 18
/
PBE2.log
2141 lines (1772 loc) · 76.5 KB
/
PBE2.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
This is pdfTeX, Version 3.1415926-1.40.10 (TeX Live 2009/Debian) (format=pdflatex 2011.6.15) 31 JUL 2011 17:37
entering extended mode
%&-line parsing enabled.
**PBE2.tex
(./PBE2.tex
LaTeX2e <2009/09/24>
Babel <v3.8l> and hyphenation patterns for english, usenglishmax, dumylang, noh
yphenation, loaded.
(/usr/share/texmf-texlive/tex/latex/base/book.cls
Document Class: book 2007/10/19 v1.4h Standard LaTeX document class
(/usr/share/texmf-texlive/tex/latex/base/bk10.clo
File: bk10.clo 2007/10/19 v1.4h Standard LaTeX file (size option)
)
\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
)
(/usr/share/texmf-texlive/tex/latex/geometry/geometry.sty
Package: geometry 2008/12/21 v4.2 Page Geometry
(/usr/share/texmf-texlive/tex/latex/graphics/keyval.sty
Package: keyval 1999/03/16 v1.13 key=value parser (DPC)
\KV@toks@=\toks14
)
(/usr/share/texmf-texlive/tex/generic/oberdiek/ifpdf.sty
Package: ifpdf 2009/04/10 v2.0 Provides the ifpdf switch (HO)
Package ifpdf Info: pdfTeX in pdf mode detected.
)
(/usr/share/texmf-texlive/tex/generic/oberdiek/ifvtex.sty
Package: ifvtex 2008/11/04 v1.4 Switches for detecting VTeX and its modes (HO)
Package ifvtex Info: VTeX not detected.
)
\Gm@cnth=\count88
\Gm@cntv=\count89
\c@Gm@tempcnt=\count90
\Gm@bindingoffset=\dimen103
\Gm@wd@mp=\dimen104
\Gm@odd@mp=\dimen105
\Gm@even@mp=\dimen106
\Gm@dimlist=\toks15
) (./common.tex
(/usr/share/texmf-texlive/tex/latex/base/fontenc.sty
Package: fontenc 2005/09/27 v1.99g Standard LaTeX package
(/usr/share/texmf-texlive/tex/latex/base/t1enc.def
File: t1enc.def 2005/09/27 v1.99g Standard LaTeX file
LaTeX Font Info: Redeclaring font encoding T1 on input line 43.
))
(/usr/share/texmf/tex/latex/lm/lmodern.sty
Package: lmodern 2009/10/30 v1.6 Latin Modern Fonts
LaTeX Font Info: Overwriting symbol font `operators' in version `normal'
(Font) OT1/cmr/m/n --> OT1/lmr/m/n on input line 22.
LaTeX Font Info: Overwriting symbol font `letters' in version `normal'
(Font) OML/cmm/m/it --> OML/lmm/m/it on input line 23.
LaTeX Font Info: Overwriting symbol font `symbols' in version `normal'
(Font) OMS/cmsy/m/n --> OMS/lmsy/m/n on input line 24.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `normal'
(Font) OMX/cmex/m/n --> OMX/lmex/m/n on input line 25.
LaTeX Font Info: Overwriting symbol font `operators' in version `bold'
(Font) OT1/cmr/bx/n --> OT1/lmr/bx/n on input line 26.
LaTeX Font Info: Overwriting symbol font `letters' in version `bold'
(Font) OML/cmm/b/it --> OML/lmm/b/it on input line 27.
LaTeX Font Info: Overwriting symbol font `symbols' in version `bold'
(Font) OMS/cmsy/b/n --> OMS/lmsy/b/n on input line 28.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `bold'
(Font) OMX/cmex/m/n --> OMX/lmex/m/n on input line 29.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `normal'
(Font) OT1/cmr/bx/n --> OT1/lmr/bx/n on input line 31.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `normal'
(Font) OT1/cmss/m/n --> OT1/lmss/m/n on input line 32.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `normal'
(Font) OT1/cmr/m/it --> OT1/lmr/m/it on input line 33.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `normal'
(Font) OT1/cmtt/m/n --> OT1/lmtt/m/n on input line 34.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `bold'
(Font) OT1/cmr/bx/n --> OT1/lmr/bx/n on input line 35.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `bold'
(Font) OT1/cmss/bx/n --> OT1/lmss/bx/n on input line 36.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold'
(Font) OT1/cmr/bx/it --> OT1/lmr/bx/it on input line 37.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `bold'
(Font) OT1/cmtt/m/n --> OT1/lmtt/m/n on input line 38.
)
(/usr/share/texmf-texlive/tex/latex/psnfss/palatino.sty
Package: palatino 2005/04/12 PSNFSS-v9.2a (SPQR)
)
(/usr/share/texmf-texlive/tex/latex/psnfss/helvet.sty
Package: helvet 2005/04/12 PSNFSS-v9.2a (WaS)
)
(/usr/share/texmf-texlive/tex/latex/microtype/microtype.sty
Package: microtype 2009/03/27 v2.3d Micro-typography with pdfTeX (RS)
\MT@toks=\toks16
\MT@count=\count91
LaTeX Info: Redefining \lsstyle on input line 1608.
LaTeX Info: Redefining \lslig on input line 1608.
\MT@outer@space=\skip43
LaTeX Info: Redefining \textls on input line 1616.
\MT@outer@kern=\dimen107
LaTeX Info: Redefining \textmicrotypecontext on input line 2167.
Package microtype Info: Loading configuration file microtype.cfg.
(/usr/share/texmf-texlive/tex/latex/microtype/microtype.cfg
File: microtype.cfg 2009/03/27 v2.3d microtype main configuration file (RS)
))
(/usr/share/texmf-texlive/tex/latex/graphics/graphicx.sty
Package: graphicx 1999/02/16 v1.0f Enhanced LaTeX Graphics (DPC,SPQR)
(/usr/share/texmf-texlive/tex/latex/graphics/graphics.sty
Package: graphics 2009/02/05 v1.0o Standard LaTeX Graphics (DPC,SPQR)
(/usr/share/texmf-texlive/tex/latex/graphics/trig.sty
Package: trig 1999/03/16 v1.09 sin cos tan (DPC)
)
(/etc/texmf/tex/latex/config/graphics.cfg
File: graphics.cfg 2009/08/28 v1.8 graphics configuration of TeX Live
)
Package graphics Info: Driver file: pdftex.def on input line 91.
(/usr/share/texmf-texlive/tex/latex/pdftex-def/pdftex.def
File: pdftex.def 2010/03/12 v0.04p Graphics/color for pdfTeX
\Gread@gobject=\count92
))
\Gin@req@height=\dimen108
\Gin@req@width=\dimen109
)
(/usr/share/texmf-texlive/tex/latex/tools/theorem.sty
Package: theorem 1995/11/23 v2.2c Theorem extension package (FMi)
\theorem@style=\toks17
\theorem@bodyfont=\toks18
\theorempreskipamount=\skip44
\theorempostskipamount=\skip45
(/usr/share/texmf-texlive/tex/latex/tools/thp.sty
File: thp.sty 1995/11/23 v2.2c Theorem extension package (FMi)
))
(/usr/share/texmf-texlive/tex/generic/babel/babel.sty
Package: babel 2008/07/06 v3.8l The Babel package
(/usr/share/texmf-texlive/tex/generic/babel/english.ldf
Language: english 2005/03/30 v3.3o English support from the babel system
(/usr/share/texmf-texlive/tex/generic/babel/babel.def
File: babel.def 2008/07/06 v3.8l Babel common definitions
\babel@savecnt=\count93
\U@D=\dimen110
)
\l@british = a dialect from \language\l@english
\l@UKenglish = a dialect from \language\l@english
\l@canadian = a dialect from \language\l@american
\l@australian = a dialect from \language\l@british
\l@newzealand = a dialect from \language\l@british
))
(/usr/share/texmf-texlive/tex/latex/base/ifthen.sty
Package: ifthen 2001/05/26 v1.1c Standard LaTeX ifthen package (DPC)
)
(/usr/share/texmf-texlive/tex/latex/float/float.sty
Package: float 2001/11/08 v1.3d Float enhancements (AL)
\c@float@type=\count94
\float@exts=\toks19
\float@box=\box26
\@float@everytoks=\toks20
\@floatcapt=\box27
)
(/usr/share/texmf-texlive/tex/latex/tools/longtable.sty
Package: longtable 2004/02/01 v4.11 Multi-page Table package (DPC)
\LTleft=\skip46
\LTright=\skip47
\LTpre=\skip48
\LTpost=\skip49
\LTchunksize=\count95
\LTcapwidth=\dimen111
\LT@head=\box28
\LT@firsthead=\box29
\LT@foot=\box30
\LT@lastfoot=\box31
\LT@cols=\count96
\LT@rows=\count97
\c@LT@tables=\count98
\c@LT@chunks=\count99
\LT@p@ftn=\toks21
)
(/usr/share/texmf-texlive/tex/latex/base/makeidx.sty
Package: makeidx 2000/03/29 v1.0m Standard LaTeX package
)
(/usr/share/texmf-texlive/tex/latex/tocbibind/tocbibind.sty
Package: tocbibind 2009/09/04 v1.5i extra ToC listings
Package tocbibind Note: The document has chapter divisions.
Package tocbibind Note: Using chapter style headings, unless overridden.
) (/usr/share/texmf-texlive/tex/latex/tools/multicol.sty
Package: multicol 2008/12/05 v1.6h multicolumn formatting (FMi)
\c@tracingmulticols=\count100
\mult@box=\box32
\multicol@leftmargin=\dimen112
\c@unbalance=\count101
\c@collectmore=\count102
\doublecol@number=\count103
\multicoltolerance=\count104
\multicolpretolerance=\count105
\full@width=\dimen113
\page@free=\dimen114
\premulticols=\dimen115
\postmulticols=\dimen116
\multicolsep=\skip50
\multicolbaselineskip=\skip51
\partial@page=\box33
\last@line=\box34
\mult@rightbox=\box35
\mult@grightbox=\box36
\mult@gfirstbox=\box37
\mult@firstbox=\box38
\@tempa=\box39
\@tempa=\box40
\@tempa=\box41
\@tempa=\box42
\@tempa=\box43
\@tempa=\box44
\@tempa=\box45
\@tempa=\box46
\@tempa=\box47
\@tempa=\box48
\@tempa=\box49
\@tempa=\box50
\@tempa=\box51
\@tempa=\box52
\@tempa=\box53
\@tempa=\box54
\@tempa=\box55
\c@columnbadness=\count106
\c@finalcolumnbadness=\count107
\last@try=\dimen117
\multicolovershoot=\dimen118
\multicolundershoot=\dimen119
\mult@nat@firstbox=\box56
\colbreak@box=\box57
)
(/usr/share/texmf-texlive/tex/latex/booktabs/booktabs.sty
Package: booktabs 2005/04/14 v1.61803 publication quality tables
\heavyrulewidth=\dimen120
\lightrulewidth=\dimen121
\cmidrulewidth=\dimen122
\belowrulesep=\dimen123
\belowbottomsep=\dimen124
\aboverulesep=\dimen125
\abovetopsep=\dimen126
\cmidrulesep=\dimen127
\cmidrulekern=\dimen128
\defaultaddspace=\dimen129
\@cmidla=\count108
\@cmidlb=\count109
\@aboverulesep=\dimen130
\@belowrulesep=\dimen131
\@thisruleclass=\count110
\@lastruleclass=\count111
\@thisrulewidth=\dimen132
)
(/usr/share/texmf-texlive/tex/latex/ltxmisc/topcapt.sty
Package: topcapt 2004/12/11 v1.2 Caption at top of float
)
(/usr/share/texmf-texlive/tex/latex/multirow/multirow.sty
\bigstrutjot=\dimen133
)
(/usr/share/texmf-texlive/tex/latex/tools/tabularx.sty
Package: tabularx 1999/01/07 v2.07 `tabularx' package (DPC)
(/usr/share/texmf-texlive/tex/latex/tools/array.sty
Package: array 2008/09/09 v2.4c Tabular extension package (FMi)
\col@sep=\dimen134
\extrarowheight=\dimen135
\NC@list=\toks22
\extratabsurround=\skip52
\backup@length=\skip53
)
\TX@col@width=\dimen136
\TX@old@table=\dimen137
\TX@old@col=\dimen138
\TX@target=\dimen139
\TX@delta=\dimen140
\TX@cols=\count112
\TX@ftn=\toks23
)
(/usr/share/texmf-texlive/tex/latex/tools/xspace.sty
Package: xspace 2006/05/08 v1.12 Space after command names (DPC,MH)
)
(/usr/share/texmf-texlive/tex/latex/base/alltt.sty
Package: alltt 1997/06/16 v2.0g defines alltt environment
)
(/usr/share/texmf-texlive/tex/latex/amsfonts/amssymb.sty
Package: amssymb 2009/06/22 v3.00
(/usr/share/texmf-texlive/tex/latex/amsfonts/amsfonts.sty
Package: amsfonts 2009/06/22 v3.00 Basic AMSFonts support
\@emptytoks=\toks24
\symAMSa=\mathgroup4
\symAMSb=\mathgroup5
LaTeX Font Info: Overwriting math alphabet `\mathfrak' in version `bold'
(Font) U/euf/m/n --> U/euf/b/n on input line 96.
))
(/usr/share/texmf-texlive/tex/latex/base/textcomp.sty
Package: textcomp 2005/09/27 v1.99g Standard LaTeX package
Package textcomp Info: Sub-encoding information:
(textcomp) 5 = only ISO-Adobe without \textcurrency
(textcomp) 4 = 5 + \texteuro
(textcomp) 3 = 4 + \textohm
(textcomp) 2 = 3 + \textestimated + \textcurrency
(textcomp) 1 = TS1 - \textcircled - \t
(textcomp) 0 = TS1 (full)
(textcomp) Font families with sub-encoding setting implement
(textcomp) only a restricted character set as indicated.
(textcomp) Family '?' is the default used for unknown fonts.
(textcomp) See the documentation for details.
Package textcomp Info: Setting ? sub-encoding to TS1/1 on input line 71.
(/usr/share/texmf-texlive/tex/latex/base/ts1enc.def
File: ts1enc.def 2001/06/05 v3.0e (jk/car/fm) Standard LaTeX file
)
LaTeX Info: Redefining \oldstylenums on input line 266.
Package textcomp Info: Setting cmr sub-encoding to TS1/0 on input line 281.
Package textcomp Info: Setting cmss sub-encoding to TS1/0 on input line 282.
Package textcomp Info: Setting cmtt sub-encoding to TS1/0 on input line 283.
Package textcomp Info: Setting cmvtt sub-encoding to TS1/0 on input line 284.
Package textcomp Info: Setting cmbr sub-encoding to TS1/0 on input line 285.
Package textcomp Info: Setting cmtl sub-encoding to TS1/0 on input line 286.
Package textcomp Info: Setting ccr sub-encoding to TS1/0 on input line 287.
Package textcomp Info: Setting ptm sub-encoding to TS1/4 on input line 288.
Package textcomp Info: Setting pcr sub-encoding to TS1/4 on input line 289.
Package textcomp Info: Setting phv sub-encoding to TS1/4 on input line 290.
Package textcomp Info: Setting ppl sub-encoding to TS1/3 on input line 291.
Package textcomp Info: Setting pag sub-encoding to TS1/4 on input line 292.
Package textcomp Info: Setting pbk sub-encoding to TS1/4 on input line 293.
Package textcomp Info: Setting pnc sub-encoding to TS1/4 on input line 294.
Package textcomp Info: Setting pzc sub-encoding to TS1/4 on input line 295.
Package textcomp Info: Setting bch sub-encoding to TS1/4 on input line 296.
Package textcomp Info: Setting put sub-encoding to TS1/5 on input line 297.
Package textcomp Info: Setting uag sub-encoding to TS1/5 on input line 298.
Package textcomp Info: Setting ugq sub-encoding to TS1/5 on input line 299.
Package textcomp Info: Setting ul8 sub-encoding to TS1/4 on input line 300.
Package textcomp Info: Setting ul9 sub-encoding to TS1/4 on input line 301.
Package textcomp Info: Setting augie sub-encoding to TS1/5 on input line 302.
Package textcomp Info: Setting dayrom sub-encoding to TS1/3 on input line 303.
Package textcomp Info: Setting dayroms sub-encoding to TS1/3 on input line 304.
Package textcomp Info: Setting pxr sub-encoding to TS1/0 on input line 305.
Package textcomp Info: Setting pxss sub-encoding to TS1/0 on input line 306.
Package textcomp Info: Setting pxtt sub-encoding to TS1/0 on input line 307.
Package textcomp Info: Setting txr sub-encoding to TS1/0 on input line 308.
Package textcomp Info: Setting txss sub-encoding to TS1/0 on input line 309.
Package textcomp Info: Setting txtt sub-encoding to TS1/0 on input line 310.
Package textcomp Info: Setting futs sub-encoding to TS1/4 on input line 311.
Package textcomp Info: Setting futx sub-encoding to TS1/4 on input line 312.
Package textcomp Info: Setting futj sub-encoding to TS1/4 on input line 313.
Package textcomp Info: Setting hlh sub-encoding to TS1/3 on input line 314.
Package textcomp Info: Setting hls sub-encoding to TS1/3 on input line 315.
Package textcomp Info: Setting hlst sub-encoding to TS1/3 on input line 316.
Package textcomp Info: Setting hlct sub-encoding to TS1/5 on input line 317.
Package textcomp Info: Setting hlx sub-encoding to TS1/5 on input line 318.
Package textcomp Info: Setting hlce sub-encoding to TS1/5 on input line 319.
Package textcomp Info: Setting hlcn sub-encoding to TS1/5 on input line 320.
Package textcomp Info: Setting hlcw sub-encoding to TS1/5 on input line 321.
Package textcomp Info: Setting hlcf sub-encoding to TS1/5 on input line 322.
Package textcomp Info: Setting pplx sub-encoding to TS1/3 on input line 323.
Package textcomp Info: Setting pplj sub-encoding to TS1/3 on input line 324.
Package textcomp Info: Setting ptmx sub-encoding to TS1/4 on input line 325.
Package textcomp Info: Setting ptmj sub-encoding to TS1/4 on input line 326.
)
(/usr/share/texmf-texlive/tex/latex/graphics/color.sty
Package: color 2005/11/14 v1.0j Standard LaTeX Color (DPC)
(/etc/texmf/tex/latex/config/color.cfg
File: color.cfg 2007/01/18 v1.5 color configuration of teTeX/TeXLive
)
Package color Info: Driver file: pdftex.def on input line 130.
(/usr/share/texmf-texlive/tex/latex/graphics/dvipsnam.def
File: dvipsnam.def 1999/02/16 v3.0i Driver-dependant file (DPC,SPQR)
))
(/usr/share/texmf-texlive/tex/latex/subfigure/subfigure.sty
Package: subfigure 2002/03/15 v2.1.5 subfigure package
\subfigtopskip=\skip54
\subfigcapskip=\skip55
\subfigcaptopadj=\dimen141
\subfigbottomskip=\skip56
\subfigcapmargin=\dimen142
\subfiglabelskip=\skip57
\c@subfigure=\count113
\c@lofdepth=\count114
\c@subtable=\count115
\c@lotdepth=\count116
****************************************
* Local config file subfigure.cfg used *
****************************************
(/usr/share/texmf-texlive/tex/latex/subfigure/subfigure.cfg)
\subfig@top=\skip58
\subfig@bottom=\skip59
)
(/usr/share/texmf-texlive/tex/latex/rotating/rotating.sty
Package: rotating 2009/03/28 v2.16a rotated objects in LaTeX
\c@r@tfl@t=\count117
\rotFPtop=\skip60
\rotFPbot=\skip61
\rot@float@box=\box58
\rot@mess@toks=\toks25
)
(/usr/share/texmf-texlive/tex/latex/enumitem/enumitem.sty
Package: enumitem 2009/05/18 v2.2 Customized lists
\enit@toks=\toks26
\labelindent=\skip62
\enit@outerparindent=\dimen143
\enitdp@desc=\count118
)
(/usr/share/texmf-texlive/tex/latex/tools/verbatim.sty
Package: verbatim 2003/08/22 v1.5q LaTeX2e package for verbatim enhancements
\every@verbatim=\toks27
\verbatim@line=\toks28
\verbatim@in@stream=\read1
)
(/usr/share/texmf-texlive/tex/latex/tools/varioref.sty
Package: varioref 2009/09/13 v1.4w package for extended references (FMi)
\c@vrcnt=\count119
)
(/usr/share/texmf-texlive/tex/latex/needspace/needspace.sty
Package: needspace 2009/09/03 v1.3b reserve vertical space
)
(/usr/share/texmf-texlive/tex/latex/isodate/isodateo.sty
Package: isodateo 2004/02/12
(/usr/share/texmf-texlive/tex/latex/tools/calc.sty
Package: calc 2007/08/22 v4.3 Infix arithmetic (KKT,FJ)
\calc@Acount=\count120
\calc@Bcount=\count121
\calc@Adimen=\dimen144
\calc@Bdimen=\dimen145
\calc@Askip=\skip63
\calc@Bskip=\skip64
LaTeX Info: Redefining \setlength on input line 76.
LaTeX Info: Redefining \addtolength on input line 77.
\calc@Ccount=\count122
\calc@Cskip=\skip65
)
(/usr/share/texmf-texlive/tex/latex/substr/substr.sty
Package: substr 2005/11/29 v1.1 Handle substrings
\c@su@anzahl=\count123
)
\c@yeartwo=\count124
\c@iso@slash=\count125
\c@iso@minus=\count126
\c@iso@dot=\count127
)
(/usr/share/texmf-texlive/tex/latex/titlesec/titlesec.sty
Package: titlesec 2007/08/12 v2.8 Sectioning titles
\ttl@box=\box59
\beforetitleunit=\skip66
\aftertitleunit=\skip67
\ttl@plus=\dimen146
\ttl@minus=\dimen147
\ttl@toksa=\toks29
\titlewidth=\dimen148
\titlewidthlast=\dimen149
\titlewidthfirst=\dimen150
)
(/usr/share/texmf-texlive/tex/latex/titlesec/titletoc.sty
Package: titletoc 2007/08/12 v1.6 TOC entries
\ttl@leftsep=\dimen151
)
(/usr/share/texmf-texlive/tex/latex/wrapfig/wrapfig.sty
\wrapoverhang=\dimen152
\WF@size=\dimen153
\c@WF@wrappedlines=\count128
\WF@box=\box60
\WF@everypar=\toks30
Package: wrapfig 2003/01/31 v 3.6
)
(/usr/share/texmf-texlive/tex/latex/jurabib/jurabib.sty
Package: jurabib 2004/01/25 v0.6 Extended citations
(/usr/share/texmf-texlive/tex/latex/ltxmisc/url.sty
\Urlmuskip=\muskip10
Package: url 2006/04/12 ver 3.3 Verb mode for urls, etc.
)
\c@ibidem@author=\count129
\c@multiple@author=\count130
LaTeX Info: Redefining \jbarchnameformat on input line 945.
\jb@subarchitemwidth=\skip68
\jb@subarchentrywidth=\skip69
LaTeX Info: Redefining \jbapifont on input line 1216.
\jb@urlfile=\write3
(./PBE2.url)
\jb@tempfile=\read2
\openout3 = `PBE2.url'.
\c@jbbibcnt=\count131
\c@jbbibcnta=\count132
\c@idemcnt=\count133
\c@bibnamereplace=\count134
\c@citefull=\count135
\c@opcit=\count136
\c@jb@cites@in@footnote=\count137
\jbbibhang=\skip70
\bibnumberwidth=\skip71
\jb@biblaw@entry@width=\skip72
\jb@biblaw@item@width=\skip73
LaTeX Font Info: Try loading font information for OT1+lmr on input line 3438
.
(/usr/share/texmf/tex/latex/lm/ot1lmr.fd
File: ot1lmr.fd 2009/10/30 v1.6 Font defs for Latin Modern
)
LaTeX Font Info: Try loading font information for OML+lmm on input line 3438
.
(/usr/share/texmf/tex/latex/lm/omllmm.fd
File: omllmm.fd 2009/10/30 v1.6 Font defs for Latin Modern
)
LaTeX Font Info: Try loading font information for OMS+lmsy on input line 343
8.
(/usr/share/texmf/tex/latex/lm/omslmsy.fd
File: omslmsy.fd 2009/10/30 v1.6 Font defs for Latin Modern
)
LaTeX Font Info: Try loading font information for OMX+lmex on input line 343
8.
(/usr/share/texmf/tex/latex/lm/omxlmex.fd
File: omxlmex.fd 2009/10/30 v1.6 Font defs for Latin Modern
)
LaTeX Font Info: External font `lmex10' loaded for size
(Font) <10> on input line 3438.
LaTeX Font Info: External font `lmex10' loaded for size
(Font) <7> on input line 3438.
LaTeX Font Info: External font `lmex10' loaded for size
(Font) <5> on input line 3438.
LaTeX Font Info: Try loading font information for U+msa on input line 3438.
(/usr/share/texmf-texlive/tex/latex/amsfonts/umsa.fd
File: umsa.fd 2009/06/22 v3.00 AMS symbols A
)
LaTeX Font Info: Try loading font information for U+msb on input line 3438.
(/usr/share/texmf-texlive/tex/latex/amsfonts/umsb.fd
File: umsb.fd 2009/06/22 v3.00 AMS symbols B
)
LaTeX Info: Redefining \cite on input line 3744.
\jb@length@i=\skip74
\jb@length@ii=\skip75
\jb@length@iii=\skip76
\jb@temptoks=\toks31
\jbedwidth=\skip77
\jb@ta=\toks32
\jb@tb=\toks33
LaTeX Info: Redefining \jbtitlefont on input line 5980.
Package jurabib Info: *** Local config file `jurabib.cfg' used ***
(/usr/share/texmf-texlive/tex/latex/jurabib/jurabib.cfg
File: jurabib.cfg jurabib local configuration file
)
LaTeX Info: Redefining \jbtitlefont on input line 5986.
)
(/usr/share/texmf-texlive/tex/latex/hyperref/hyperref.sty
Package: hyperref 2009/10/09 v6.79a Hypertext links for LaTeX
(/usr/share/texmf-texlive/tex/generic/ifxetex/ifxetex.sty
Package: ifxetex 2009/01/23 v0.5 Provides ifxetex conditional
)
(/usr/share/texmf-texlive/tex/latex/oberdiek/hycolor.sty
Package: hycolor 2009/10/02 v1.5 Code for color options of hyperref/bookmark (H
O)
(/usr/share/texmf-texlive/tex/latex/oberdiek/xcolor-patch.sty
Package: xcolor-patch 2009/10/02 xcolor patch
))
\@linkdim=\dimen154
\Hy@linkcounter=\count138
\Hy@pagecounter=\count139
(/usr/share/texmf-texlive/tex/latex/hyperref/pd1enc.def
File: pd1enc.def 2009/10/09 v6.79a Hyperref: PDFDocEncoding definition (HO)
)
(/usr/share/texmf-texlive/tex/generic/oberdiek/etexcmds.sty
Package: etexcmds 2007/12/12 v1.2 Prefix for e-TeX command names (HO)
(/usr/share/texmf-texlive/tex/generic/oberdiek/infwarerr.sty
Package: infwarerr 2007/09/09 v1.2 Providing info/warning/message (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.
)
(/usr/share/texmf-texlive/tex/latex/latexconfig/hyperref.cfg
File: hyperref.cfg 2002/06/06 v1.2 hyperref configuration of TeXLive
)
(/usr/share/texmf-texlive/tex/latex/oberdiek/kvoptions.sty
Package: kvoptions 2009/08/13 v3.4 Keyval support for LaTeX options (HO)
(/usr/share/texmf-texlive/tex/generic/oberdiek/kvsetkeys.sty
Package: kvsetkeys 2009/07/30 v1.5 Key value parser with default handler suppor
t (HO)
))
Package hyperref Info: Option `colorlinks' set `true' on input line 2864.
Package hyperref Info: Hyper figures OFF on input line 2975.
Package hyperref Info: Link nesting OFF on input line 2980.
Package hyperref Info: Hyper index ON on input line 2983.
Package hyperref Info: Plain pages OFF on input line 2990.
Package hyperref Info: Backreferencing OFF on input line 2995.
Implicit mode ON; LaTeX internals redefined
Package hyperref Info: Bookmarks ON on input line 3191.
LaTeX Info: Redefining \url on input line 3428.
(/usr/share/texmf-texlive/tex/generic/oberdiek/bitset.sty
Package: bitset 2007/09/28 v1.0 Data type bit set (HO)
(/usr/share/texmf-texlive/tex/generic/oberdiek/intcalc.sty
Package: intcalc 2007/09/27 v1.1 Expandable integer calculations (HO)
)
(/usr/share/texmf-texlive/tex/generic/oberdiek/bigintcalc.sty
Package: bigintcalc 2007/11/11 v1.1 Expandable big integer calculations (HO)
(/usr/share/texmf-texlive/tex/generic/oberdiek/pdftexcmds.sty
Package: pdftexcmds 2009/09/23 v0.6 LuaTeX support for pdfTeX utility functions
(HO)
(/usr/share/texmf-texlive/tex/generic/oberdiek/ifluatex.sty
Package: ifluatex 2009/04/17 v1.2 Provides the ifluatex switch (HO)
Package ifluatex Info: LuaTeX not detected.
)
(/usr/share/texmf-texlive/tex/generic/oberdiek/ltxcmds.sty
Package: ltxcmds 2009/08/05 v1.0 Some LaTeX kernel commands for general use (HO
)
)
Package pdftexcmds Info: LuaTeX not detected.
Package pdftexcmds Info: \pdf@primitive is available.
Package pdftexcmds Info: \pdf@ifprimitive is available.
)))
\Fld@menulength=\count140
\Field@Width=\dimen155
\Fld@charsize=\dimen156
\Field@toks=\toks34
Package hyperref Info: Hyper figures OFF on input line 4377.
Package hyperref Info: Link nesting OFF on input line 4382.
Package hyperref Info: Hyper index ON on input line 4385.
Package hyperref Info: backreferencing OFF on input line 4392.
Package hyperref Info: Link coloring ON on input line 4395.
Package hyperref Info: Link coloring with OCG OFF on input line 4402.
Package hyperref Info: PDF/A mode OFF on input line 4407.
(/usr/share/texmf-texlive/tex/generic/oberdiek/atbegshi.sty
Package: atbegshi 2008/07/31 v1.9 At begin shipout hook (HO)
)
\Hy@abspage=\count141
\c@Item=\count142
)
*hyperref using default driver hpdftex*
(/usr/share/texmf-texlive/tex/latex/hyperref/hpdftex.def
File: hpdftex.def 2009/10/09 v6.79a Hyperref driver for pdfTeX
\Fld@listcount=\count143
)
(/usr/share/texmf-texlive/tex/latex/ltxmisc/ulem.sty
\UL@box=\box61
\UL@hyphenbox=\box62
\UL@skip=\skip78
\UL@hook=\toks35
\UL@pe=\count144
\UL@pixel=\dimen157
\ULC@box=\box63
Package: ulem 2000/05/26
\ULdepth=\dimen158
)
(/usr/share/texmf/tex/latex/xcolor/xcolor.sty
Package: xcolor 2007/01/21 v2.11 LaTeX color extensions (UK)
(/etc/texmf/tex/latex/config/color.cfg
File: color.cfg 2007/01/18 v1.5 color configuration of teTeX/TeXLive
)
Package xcolor Info: Driver file: pdftex.def on input line 225.
LaTeX Info: Redefining \color on input line 702.
Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1337.
Package xcolor Info: Model `hsb' substituted by `rgb' on input line 1341.
Package xcolor Info: Model `RGB' extended on input line 1353.
Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1355.
Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1356.
Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1357.
Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1358.
Package xcolor Info: Model `Gray' substituted by `gray' on input line 1359.
Package xcolor Info: Model `wave' substituted by `hsb' on input line 1360.
)
\SavedText=\box64
\InnerBoxRule=\skip79
\OuterBoxRule=\skip80
\BoxSeparation=\skip81
\SaveBoxSep=\skip82
(/usr/share/texmf-texlive/tex/latex/titlesec/ttlps.def
File: ttlps.def 2007/08/12
Package titlesec Warning: You are using an old interface for page styles
(titlesec) You could proceed but don't complain if you run
(titlesec) into errors.
)
\c@faq=\count145
(/usr/share/texmf-texlive/tex/latex/listings/listings.sty
\lst@mode=\count146
\lst@gtempboxa=\box65
\lst@token=\toks36
\lst@length=\count147
\lst@currlwidth=\dimen159
\lst@column=\count148
\lst@pos=\count149
\lst@lostspace=\dimen160
\lst@width=\dimen161
\lst@newlines=\count150
\lst@lineno=\count151
\lst@maxwidth=\dimen162
(/usr/share/texmf-texlive/tex/latex/listings/lstmisc.sty
File: lstmisc.sty 2007/02/22 1.4 (Carsten Heinz)
\c@lstnumber=\count152
\lst@skipnumbers=\count153
\lst@framebox=\box66
)
(/usr/share/texmf-texlive/tex/latex/listings/listings.cfg
File: listings.cfg 2007/02/22 1.4 listings configuration
))
Package: listings 2007/02/22 1.4 (Carsten Heinz)
\scriptindent=\skip83
\methodindent=\skip84
\methodwordlength=\skip85
\aftermethod=\skip86
)
\@indexfile=\write4
\openout4 = `PBE2.idx'.
Writing index file PBE2.idx
\@glossaryfile=\write5
\openout5 = `PBE2.glo'.
Writing glossary file PBE2.glo
(./PBE2.aux
LaTeX Warning: Label `mth:defaultlabel' multiply defined.
LaTeX Warning: Label `mth:defaultlabel' multiply defined.
)
\openout1 = `PBE2.aux'.
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 56.
LaTeX Font Info: ... okay on input line 56.
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 56.
LaTeX Font Info: ... okay on input line 56.
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 56.
LaTeX Font Info: ... okay on input line 56.
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 56.
LaTeX Font Info: ... okay on input line 56.
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 56.
LaTeX Font Info: ... okay on input line 56.
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 56.
LaTeX Font Info: ... okay on input line 56.
LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 56.
LaTeX Font Info: Try loading font information for TS1+cmr on input line 56.
(/usr/share/texmf-texlive/tex/latex/base/ts1cmr.fd
File: ts1cmr.fd 1999/05/25 v2.5h Standard LaTeX font definitions
)
LaTeX Font Info: ... okay on input line 56.
LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 56.
LaTeX Font Info: ... okay on input line 56.
LaTeX Font Info: Try loading font information for T1+ppl on input line 56.
(/usr/share/texmf-texlive/tex/latex/psnfss/t1ppl.fd
File: t1ppl.fd 2001/06/04 font definitions for T1/ppl.
)
*geometry auto-detecting driver*
*geometry detected driver: pdftex*
-------------------- Geometry parameters
paper: user defined
landscape: --
twocolumn: --
twoside: true
asymmetric: --
h-parts: 54.2025pt, 334.61044pt, 54.2025pt
v-parts: 54.2025pt, 539.13469pt, 72.26999pt
hmarginratio: --
vmarginratio: --
lines: --
heightrounded: --
bindingoffset: 0.0pt
truedimen: --
includehead: --
includefoot: --
includemp: --
driver: pdftex
-------------------- Page layout dimensions and switches
\paperwidth 443.01544pt
\paperheight 665.60718pt
\textwidth 334.61044pt
\textheight 539.13469pt
\oddsidemargin -18.06749pt
\evensidemargin -18.06749pt
\topmargin -48.13498pt
\headheight 12.0pt
\headsep 18.06749pt
\footskip 25.29494pt
\marginparwidth 115.0pt
\marginparsep 7.0pt
\columnsep 10.0pt
\skip\footins 9.0pt plus 4.0pt minus 2.0pt
\hoffset 0.0pt
\voffset 0.0pt
\mag 1000
\@twosidetrue \@mparswitchtrue
(1in=72.27pt, 1cm=28.45pt)
-----------------------
LaTeX Info: Redefining \microtypecontext on input line 56.
Package microtype Info: Generating PDF output.
Package microtype Info: Character protrusion enabled (level 2).
Package microtype Info: Using default protrusion set `alltext'.
Package microtype Info: No font expansion.
Package microtype Info: No tracking.
Package microtype Info: No adjustment of interword spacing.
Package microtype Info: No adjustment of character kerning.
(/usr/share/texmf-texlive/tex/latex/microtype/mt-ppl.cfg
File: mt-ppl.cfg 2005/11/16 v1.6 microtype config. file: Palatino (RS)
)
(/usr/share/texmf-texlive/tex/context/base/supp-pdf.mkii
[Loading MPS to PDF converter (version 2006.09.02).]
\scratchcounter=\count154
\scratchdimen=\dimen163
\scratchbox=\box67
\nofMPsegments=\count155
\nofMParguments=\count156
\everyMPshowfont=\toks37
\MPscratchCnt=\count157
\MPscratchDim=\dimen164
\MPnumerator=\count158
\everyMPtoPDFconversion=\toks38
)
Package jurabib Info: 'hyperref' + 'tabularx' loaded, adapting footnote macro
Package jurabib Info: *** jurabib set up for babel ***
(/usr/share/texmf-texlive/tex/latex/jurabib/enjbbib.ldf
File: enjbbib.ldf jurabib English language definitions
)
LaTeX Info: Redefining \jbbtasep on input line 56.
LaTeX Info: Redefining \jbbfsasep on input line 56.
LaTeX Info: Redefining \jbbstasep on input line 56.
LaTeX Info: Redefining \bibbtasep on input line 56.
LaTeX Info: Redefining \bibbfsasep on input line 56.
LaTeX Info: Redefining \bibbstasep on input line 56.
LaTeX Info: Redefining \jbbtesep on input line 56.
LaTeX Info: Redefining \jbbfsesep on input line 56.
LaTeX Info: Redefining \jbbstesep on input line 56.
LaTeX Info: Redefining \bibbtesep on input line 56.
LaTeX Info: Redefining \bibbfsesep on input line 56.
LaTeX Info: Redefining \bibbstesep on input line 56.
LaTeX Info: Redefining \jbbtasep on input line 56.
LaTeX Info: Redefining \jbbfsasep on input line 56.
LaTeX Info: Redefining \jbbstasep on input line 56.
LaTeX Info: Redefining \bibbtasep on input line 56.
LaTeX Info: Redefining \bibbfsasep on input line 56.
LaTeX Info: Redefining \bibbstasep on input line 56.
LaTeX Info: Redefining \jbbtesep on input line 56.
LaTeX Info: Redefining \jbbfsesep on input line 56.
LaTeX Info: Redefining \jbbstesep on input line 56.
LaTeX Info: Redefining \bibbtesep on input line 56.
LaTeX Info: Redefining \bibbfsesep on input line 56.
LaTeX Info: Redefining \bibbstesep on input line 56.
LaTeX Info: Redefining \jbbtasep on input line 56.
LaTeX Info: Redefining \jbbfsasep on input line 56.
LaTeX Info: Redefining \jbbstasep on input line 56.
LaTeX Info: Redefining \bibbtasep on input line 56.
LaTeX Info: Redefining \bibbfsasep on input line 56.
LaTeX Info: Redefining \bibbstasep on input line 56.
LaTeX Info: Redefining \jbbtesep on input line 56.
LaTeX Info: Redefining \jbbfsesep on input line 56.
LaTeX Info: Redefining \jbbstesep on input line 56.
LaTeX Info: Redefining \bibbtesep on input line 56.
LaTeX Info: Redefining \bibbfsesep on input line 56.
LaTeX Info: Redefining \bibbstesep on input line 56.
LaTeX Info: Redefining \jbbtasep on input line 56.
LaTeX Info: Redefining \jbbfsasep on input line 56.
LaTeX Info: Redefining \jbbstasep on input line 56.
LaTeX Info: Redefining \bibbtasep on input line 56.
LaTeX Info: Redefining \bibbfsasep on input line 56.
LaTeX Info: Redefining \bibbstasep on input line 56.
LaTeX Info: Redefining \jbbtesep on input line 56.
LaTeX Info: Redefining \jbbfsesep on input line 56.
LaTeX Info: Redefining \jbbstesep on input line 56.
LaTeX Info: Redefining \bibbtesep on input line 56.
LaTeX Info: Redefining \bibbfsesep on input line 56.
LaTeX Info: Redefining \bibbstesep on input line 56.
Package hyperref Info: Link coloring ON on input line 56.
(/usr/share/texmf-texlive/tex/latex/hyperref/nameref.sty
Package: nameref 2007/05/29 v2.31 Cross-referencing by name of section
(/usr/share/texmf-texlive/tex/latex/oberdiek/refcount.sty
Package: refcount 2008/08/11 v3.1 Data extraction from references (HO)
)
\c@section@level=\count159
LaTeX Info: Redefining \Ref on input line 396.
)
LaTeX Info: Redefining \ref on input line 56.
LaTeX Info: Redefining \pageref on input line 56.
(./PBE2.out)
(./PBE2.out)
\@outlinefile=\write6
\openout6 = `PBE2.out'.
\AtBeginShipoutBox=\box68
LaTeX Info: Redefining \Ref on input line 56.
\c@lstlisting=\count160
LaTeX Font Info: Font shape `T1/ppl/bx/n' in size <24.88> not available
(Font) Font shape `T1/ppl/b/n' tried instead on input line 72.
(/usr/share/texmf-texlive/tex/latex/microtype/mt-cmr.cfg
File: mt-cmr.cfg 2008/02/29 v1.9a microtype config. file: Computer Modern Roman
(RS)
)
LaTeX Font Info: External font `lmex10' loaded for size
(Font) <12> on input line 72.
LaTeX Font Info: External font `lmex10' loaded for size
(Font) <8> on input line 72.
LaTeX Font Info: External font `lmex10' loaded for size
(Font) <6> on input line 72.
(/usr/share/texmf-texlive/tex/latex/microtype/mt-msa.cfg
File: mt-msa.cfg 2006/02/04 v1.1 microtype config. file: AMS symbols (a) (RS)
)
(/usr/share/texmf-texlive/tex/latex/microtype/mt-msb.cfg
File: mt-msb.cfg 2005/06/01 v1.0 microtype config. file: AMS symbols (b) (RS)
)
Overfull \hbox (51.23436pt too wide) in paragraph at lines 72--72
[][]
[]
[1
{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}] [2
] (./PBE2.toc
LaTeX Font Info: Font shape `T1/ppl/bx/n' in size <10> not available
(Font) Font shape `T1/ppl/b/n' tried instead on input line 2.
LaTeX Font Info: Font shape `T1/ppl/bx/n' in size <12> not available
(Font) Font shape `T1/ppl/b/n' tried instead on input line 3.
[3]
LaTeX Font Info: Try loading font information for T1+phv on input line 104.
(/usr/share/texmf-texlive/tex/latex/psnfss/t1phv.fd
File: t1phv.fd 2001/06/04 scalable font definitions for T1/phv.
)
LaTeX Font Info: Font shape `T1/phv/m/n' will be
(Font) scaled to size 8.50006pt on input line 104.
[4] [5] [6] [7])
\tf@toc=\write7
\openout7 = `PBE2.toc'.
[8]
(./Preface/Preface2.tex
Chapter 1.
LaTeX Font Info: Font shape `T1/ppl/bx/n' in size <14.4> not available
(Font) Font shape `T1/ppl/b/n' tried instead on input line 40.
) [1
] [2
] [3] [4] (./Omnibrowser/Omnibrowser.tex
Chapter 2.
LaTeX Font Info: Font shape `T1/ppl/bx/it' in size <10> not available
(Font) Font shape `T1/ppl/b/it' tried instead on input line 68.
LaTeX Font Info: Font shape `T1/phv/m/it' in size <10> not available
(Font) Font shape `T1/phv/m/sl' tried instead on input line 68.
LaTeX Font Info: Font shape `T1/phv/m/sl' will be