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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
|
This is pdfTeXk, Version 3.141592-1.40.3 (Web2C 7.5.6) (format=pdflatex 2009.8.17) 7 OCT 2009 00:28
entering extended mode
%&-line parsing enabled.
**Session-3.tex
(./Session-3.tex
LaTeX2e <2005/12/01>
Babel <v3.8h> and hyphenation patterns for english, usenglishmax, dumylang, noh
yphenation, ukrainian, russian, bulgarian, loaded.
(/usr/share/texmf/tex/latex/beamer/base/beamer.cls
(/usr/share/texmf/tex/latex/beamer/base/beamerbasercs.sty
Package: beamerbasercs 2007/01/28 (rcs-revision 1.4)
)
Document Class: beamer 2007/03/11 cvs version 3.07 A class for typesetting pres
entations (rcs-revision 1.70)
(/usr/share/texmf/tex/latex/beamer/base/beamerbasemodes.sty
Package: beamerbasemodes 2007/01/28 (rcs-revision 1.22)
\beamer@tempbox=\box26
\beamer@tempcount=\count79
\c@beamerpauses=\count80
(/usr/share/texmf/tex/latex/beamer/base/beamerbasedecode.sty
Package: beamerbasedecode 2007/01/28 (rcs-revision 1.20)
\beamer@slideinframe=\count81
\beamer@minimum=\count82
)
\beamer@commentbox=\box27
\beamer@modecount=\count83
)
\headheight=\dimen102
\headdp=\dimen103
\footheight=\dimen104
\sidebarheight=\dimen105
\beamer@tempdim=\dimen106
\beamer@finalheight=\dimen107
\beamer@animht=\dimen108
\beamer@animdp=\dimen109
\beamer@animwd=\dimen110
\beamer@leftmargin=\dimen111
\beamer@rightmargin=\dimen112
\beamer@leftsidebar=\dimen113
\beamer@rightsidebar=\dimen114
\beamer@boxsize=\dimen115
\beamer@vboxoffset=\dimen116
\beamer@descdefault=\dimen117
\beamer@descriptionwidth=\dimen118
\beamer@lastskip=\skip41
\beamer@areabox=\box28
\beamer@animcurrent=\box29
\beamer@animshowbox=\box30
\beamer@sectionbox=\box31
\beamer@logobox=\box32
\beamer@linebox=\box33
\beamer@sectioncount=\count84
\beamer@subsubsectionmax=\count85
\beamer@subsectionmax=\count86
\beamer@sectionmax=\count87
\beamer@totalheads=\count88
\beamer@headcounter=\count89
\beamer@partstartpage=\count90
\beamer@sectionstartpage=\count91
\beamer@subsectionstartpage=\count92
\beamer@animationtempa=\count93
\beamer@animationtempb=\count94
\beamer@xpos=\count95
\beamer@ypos=\count96
\beamer@showpartnumber=\count97
\beamer@currentsubsection=\count98
\beamer@coveringdepth=\count99
\beamer@sectionadjust=\count100
\beamer@tocsectionnumber=\count101
(/usr/share/texmf/tex/latex/beamer/base/beamerbaseoptions.sty
Package: beamerbaseoptions 2007/01/28 (rcs-revision 1.8)
(/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/tex/latex/pgf/basiclayer/pgfcore.sty
(/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 2006/02/20 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 2007/01/18 v1.5 graphics configuration of teTeX/TeXLive
)
Package graphics Info: Driver file: pdftex.def on input line 90.
(/usr/share/texmf-texlive/tex/latex/pdftex-def/pdftex.def
File: pdftex.def 2007/01/08 v0.04d Graphics/color for pdfTeX
\Gread@gobject=\count102
))
\Gin@req@height=\dimen119
\Gin@req@width=\dimen120
)
(/usr/share/texmf/tex/latex/pgf/systemlayer/pgfsys.sty
(/usr/share/texmf/tex/latex/pgf/utilities/pgfrcs.sty
(/usr/share/texmf/tex/generic/pgf/utilities/pgfutil-common.tex
\pgfutil@everybye=\toks15
)
(/usr/share/texmf/tex/generic/pgf/utilities/pgfutil-latex.def)
(/usr/share/texmf/tex/generic/pgf/utilities/pgfrcs.code.tex
Package: pgfrcs 2008/02/20 v2.00 (rcs-revision 1.21)
))
(/usr/share/texmf/tex/generic/pgf/systemlayer/pgfsys.code.tex
Package: pgfsys 2008/02/07 v2.00 (rcs-revision 1.31)
(/usr/share/texmf/tex/generic/pgf/utilities/pgfkeys.code.tex
\pgfkeys@pathtoks=\toks16
\pgfkeys@temptoks=\toks17
)
\pgf@x=\dimen121
\pgf@y=\dimen122
\pgf@xa=\dimen123
\pgf@ya=\dimen124
\pgf@xb=\dimen125
\pgf@yb=\dimen126
\pgf@xc=\dimen127
\pgf@yc=\dimen128
\c@pgf@counta=\count103
\c@pgf@countb=\count104
\c@pgf@countc=\count105
\c@pgf@countd=\count106
(/usr/share/texmf/tex/generic/pgf/systemlayer/pgf.cfg
File: pgf.cfg 2008/01/13 (rcs-revision 1.6)
)
Package pgfsys Info: Driver file for pgf: pgfsys-pdftex.def on input line 885.
(/usr/share/texmf/tex/generic/pgf/systemlayer/pgfsys-pdftex.def
File: pgfsys-pdftex.def 2007/12/20 (rcs-revision 1.20)
(/usr/share/texmf/tex/generic/pgf/systemlayer/pgfsys-common-pdf.def
File: pgfsys-common-pdf.def 2007/12/17 (rcs-revision 1.8)
)))
(/usr/share/texmf/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex
File: pgfsyssoftpath.code.tex 2008/01/23 (rcs-revision 1.6)
\pgfsyssoftpath@smallbuffer@items=\count107
\pgfsyssoftpath@bigbuffer@items=\count108
)
(/usr/share/texmf/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex
File: pgfsysprotocol.code.tex 2006/10/16 (rcs-revision 1.4)
))
(/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.
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.
)
(/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcore.code.tex
Package: pgfcore 2008/01/15 v2.00 (rcs-revision 1.6)
(/usr/share/texmf/tex/generic/pgf/math/pgfmath.code.tex
(/usr/share/texmf/tex/generic/pgf/math/pgfmathcalc.code.tex
(/usr/share/texmf/tex/generic/pgf/math/pgfmathutil.code.tex
\pgfmath@box=\box34
)
(/usr/share/texmf/tex/generic/pgf/math/pgfmathparser.code.tex
\pgfmath@stack=\toks18
\c@pgfmath@parsecounta=\count109
\c@pgfmath@parsecountb=\count110
\c@pgfmath@parsecountc=\count111
\pgfmath@parsex=\dimen129
)
(/usr/share/texmf/tex/generic/pgf/math/pgfmathoperations.code.tex
(/usr/share/texmf/tex/generic/pgf/math/pgfmathtrig.code.tex)
(/usr/share/texmf/tex/generic/pgf/math/pgfmathrnd.code.tex))
(/usr/share/texmf/tex/generic/pgf/math/pgfmathbase.code.tex)))
(/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcorepoints.code.tex
File: pgfcorepoints.code.tex 2008/02/03 (rcs-revision 1.13)
\pgf@picminx=\dimen130
\pgf@picmaxx=\dimen131
\pgf@picminy=\dimen132
\pgf@picmaxy=\dimen133
\pgf@pathminx=\dimen134
\pgf@pathmaxx=\dimen135
\pgf@pathminy=\dimen136
\pgf@pathmaxy=\dimen137
\pgf@xx=\dimen138
\pgf@xy=\dimen139
\pgf@yx=\dimen140
\pgf@yy=\dimen141
\pgf@zx=\dimen142
\pgf@zy=\dimen143
)
(/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcorepathconstruct.code.tex
File: pgfcorepathconstruct.code.tex 2008/02/13 (rcs-revision 1.14)
\pgf@path@lastx=\dimen144
\pgf@path@lasty=\dimen145
)
(/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcorepathusage.code.tex
File: pgfcorepathusage.code.tex 2008/01/23 (rcs-revision 1.11)
\pgf@shorten@end@additional=\dimen146
\pgf@shorten@start@additional=\dimen147
)
(/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcorescopes.code.tex
File: pgfcorescopes.code.tex 2008/01/15 (rcs-revision 1.26)
\pgfpic=\box35
\pgf@hbox=\box36
\pgf@layerbox@main=\box37
\pgf@picture@serial@count=\count112
)
(/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcoregraphicstate.code.tex
File: pgfcoregraphicstate.code.tex 2007/12/12 (rcs-revision 1.8)
\pgflinewidth=\dimen148
)
(/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcoretransformations.code.tex
File: pgfcoretransformations.code.tex 2008/02/04 (rcs-revision 1.10)
\pgf@pt@x=\dimen149
\pgf@pt@y=\dimen150
\pgf@pt@temp=\dimen151
)
(/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcorequick.code.tex
File: pgfcorequick.code.tex 2006/10/11 (rcs-revision 1.2)
)
(/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcoreobjects.code.tex
File: pgfcoreobjects.code.tex 2006/10/11 (rcs-revision 1.2)
)
(/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcorepathprocessing.code.tex
File: pgfcorepathprocessing.code.tex 2008/01/23 (rcs-revision 1.7)
)
(/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcorearrows.code.tex
File: pgfcorearrows.code.tex 2007/06/07 (rcs-revision 1.8)
)
(/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcoreshade.code.tex
File: pgfcoreshade.code.tex 2007/12/10 (rcs-revision 1.9)
\pgf@max=\dimen152
\pgf@sys@shading@range@num=\count113
)
(/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcoreimage.code.tex
File: pgfcoreimage.code.tex 2008/01/15 (rcs-revision 1.1)
\pgfexternal@startupbox=\box38
)
(/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcorelayers.code.tex
File: pgfcorelayers.code.tex 2008/01/15 (rcs-revision 1.1)
)
(/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcoretransparency.code.tex
File: pgfcoretransparency.code.tex 2008/01/17 (rcs-revision 1.2)
)
(/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcorepatterns.code.tex
File: pgfcorepatterns.code.tex 2008/01/15 (rcs-revision 1.1)
)))
(/usr/share/texmf/tex/latex/pgf/basiclayer/pgfbaseimage.sty
Package pgf Warning: This package is obsolete and no longer needed on input lin
e 13.
) (/usr/share/texmf/tex/latex/pgf/utilities/xxcolor.sty
Package: xxcolor 2003/10/24 ver 0.1
\XC@nummixins=\count114
\XC@countmixins=\count115
)
(/usr/share/texmf-texlive/tex/latex/amsfonts/amssymb.sty
Package: amssymb 2002/01/22 v2.2d
(/usr/share/texmf-texlive/tex/latex/amsfonts/amsfonts.sty
Package: amsfonts 2001/10/25 v2.2f
\@emptytoks=\toks19
\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 132.
))
(/usr/share/texmf-texlive/tex/latex/geometry/geometry.sty
Package: geometry 2002/07/08 v3.2 Page Geometry
\Gm@cnth=\count116
\Gm@cntv=\count117
\c@Gm@tempcnt=\count118
\Gm@bindingoffset=\dimen153
\Gm@wd@mp=\dimen154
\Gm@odd@mp=\dimen155
\Gm@even@mp=\dimen156
\Gm@dimlist=\toks20
(/usr/share/texmf-texlive/tex/xelatex/xetexconfig/geometry.cfg))
(/usr/share/texmf-texlive/tex/latex/hyperref/hyperref.sty
Package: hyperref 2007/02/07 v6.75r Hypertext links for LaTeX
\@linkdim=\dimen157
\Hy@linkcounter=\count119
\Hy@pagecounter=\count120
(/usr/share/texmf-texlive/tex/latex/hyperref/pd1enc.def
File: pd1enc.def 2007/02/07 v6.75r Hyperref: PDFDocEncoding definition (HO)
)
(/etc/texmf/tex/latex/config/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 2006/08/22 v2.4 Connects package keyval with LaTeX options (
HO)
)
Package hyperref Info: Option `bookmarks' set `true' on input line 2238.
Package hyperref Info: Option `bookmarksopen' set `true' on input line 2238.
Package hyperref Info: Option `implicit' set `false' on input line 2238.
Package hyperref Info: Hyper figures OFF on input line 2288.
Package hyperref Info: Link nesting OFF on input line 2293.
Package hyperref Info: Hyper index ON on input line 2296.
Package hyperref Info: Plain pages OFF on input line 2303.
Package hyperref Info: Backreferencing OFF on input line 2308.
Implicit mode OFF; no redefinition of LaTeX internals
Package hyperref Info: Bookmarks ON on input line 2444.
(/usr/share/texmf-texlive/tex/latex/ltxmisc/url.sty
\Urlmuskip=\muskip10
Package: url 2005/06/27 ver 3.2 Verb mode for urls, etc.
)
LaTeX Info: Redefining \url on input line 2599.
\Fld@menulength=\count121
\Field@Width=\dimen158
\Fld@charsize=\dimen159
\Choice@toks=\toks21
\Field@toks=\toks22
Package hyperref Info: Hyper figures OFF on input line 3102.
Package hyperref Info: Link nesting OFF on input line 3107.
Package hyperref Info: Hyper index ON on input line 3110.
Package hyperref Info: backreferencing OFF on input line 3117.
Package hyperref Info: Link coloring OFF on input line 3122.
Package hyperref Warning: Option `pdfpagelabels' is turned off
(hyperref) because \thepage is undefined.
Hyperref stopped early
)
*hyperref using default driver hpdftex*
(/usr/share/texmf-texlive/tex/latex/hyperref/hpdftex.def
File: hpdftex.def 2007/02/07 v6.75r Hyperref driver for pdfTeX
\Fld@listcount=\count122
)
(/usr/share/texmf-texlive/tex/latex/extsizes/size14.clo
File: size14.clo 1999/11/11 v1.4a NON-Standard LaTeX file (size option)
)
(/usr/share/texmf/tex/latex/beamer/base/beamerbasecompatibility.sty
Package: beamerbasecompatibility 2007/01/28 (rcs-revision 1.63)
)
(/usr/share/texmf/tex/latex/beamer/base/beamerbasefont.sty
Package: beamerbasefont 2007/01/28 (rcs-revision 1.16)
)
(/usr/share/texmf/tex/latex/beamer/base/beamerbasemisc.sty
Package: beamerbasemisc 2007/01/28 (rcs-revision 1.24)
)
(/usr/share/texmf/tex/latex/beamer/base/beamerbasetwoscreens.sty
Package: beamerbasetwoscreens 2007/01/28 (rcs-revision 1.7)
)
(/usr/share/texmf/tex/latex/beamer/base/beamerbaseoverlay.sty
Package: beamerbaseoverlay 2007/01/28 (rcs-revision 1.50)
\beamer@argscount=\count123
\beamer@lastskipcover=\skip42
\beamer@trivlistdepth=\count124
)
(/usr/share/texmf/tex/latex/beamer/base/beamerbasetitle.sty
Package: beamerbasetitle 2007/01/28 (rcs-revision 1.25)
)
(/usr/share/texmf/tex/latex/beamer/base/beamerbasesection.sty
Package: beamerbasesection 2007/01/28 (rcs-revision 1.21)
\c@lecture=\count125
\c@part=\count126
\c@section=\count127
\c@subsection=\count128
\c@subsubsection=\count129
)
(/usr/share/texmf/tex/latex/beamer/base/beamerbaseframe.sty
Package: beamerbaseframe 2007/01/28 (rcs-revision 1.60)
\beamer@framebox=\box39
\beamer@frametitlebox=\box40
\beamer@zoombox=\box41
\beamer@zoomcount=\count130
\beamer@zoomframecount=\count131
\beamer@frametextheight=\dimen160
\c@subsectionslide=\count132
\beamer@frametopskip=\skip43
\beamer@framebottomskip=\skip44
\beamer@frametopskipautobreak=\skip45
\beamer@framebottomskipautobreak=\skip46
\beamer@envbody=\toks23
\c@framenumber=\count133
)
(/usr/share/texmf/tex/latex/beamer/base/beamerbaseverbatim.sty
Package: beamerbaseverbatim 2007/01/28 (rcs-revision 1.8)
\beamer@verbatimfileout=\write3
)
(/usr/share/texmf/tex/latex/beamer/base/beamerbaseframesize.sty
Package: beamerbaseframesize 2007/01/28 (rcs-revision 1.18)
\beamer@splitbox=\box42
\beamer@autobreakcount=\count134
\beamer@autobreaklastheight=\dimen161
\beamer@frametitletoks=\toks24
\beamer@framesubtitletoks=\toks25
)
(/usr/share/texmf/tex/latex/beamer/base/beamerbaseframecomponents.sty
Package: beamerbaseframecomponents 2007/01/28 (rcs-revision 1.41)
\beamer@footins=\box43
)
(/usr/share/texmf/tex/latex/beamer/base/beamerbasecolor.sty
Package: beamerbasecolor 2007/01/28 (rcs-revision 1.42)
)
(/usr/share/texmf/tex/latex/beamer/base/beamerbasenotes.sty
Package: beamerbasenotes 2007/01/28 (rcs-revision 1.23)
\beamer@frameboxcopy=\box44
)
(/usr/share/texmf/tex/latex/beamer/base/beamerbasetoc.sty
Package: beamerbasetoc 2007/01/28 (rcs-revision 1.21)
)
(/usr/share/texmf/tex/latex/beamer/base/beamerbasetemplates.sty
Package: beamerbasetemplates 2007/01/28 (rcs-revision 1.51)
\beamer@sbttoks=\toks26
(/usr/share/texmf/tex/latex/beamer/base/beamerbaseauxtemplates.sty
Package: beamerbaseauxtemplates 2007/01/28 (rcs-revision 1.28)
(/usr/share/texmf/tex/latex/beamer/base/beamerbaseboxes.sty
Package: beamerbaseboxes 2007/03/11 (rcs-revision 1.32)
\bmb@box=\box45
\bmb@colorbox=\box46
\bmb@boxshadow=\box47
\bmb@boxshadowball=\box48
\bmb@boxshadowballlarge=\box49
\bmb@temp=\dimen162
\bmb@dima=\dimen163
\bmb@dimb=\dimen164
\bmb@prevheight=\dimen165
)
\beamer@blockheadheight=\dimen166
))
(/usr/share/texmf/tex/latex/beamer/base/beamerbaselocalstructure.sty
Package: beamerbaselocalstructure 2007/01/28 (rcs-revision 1.53)
(/usr/share/texmf-texlive/tex/latex/tools/enumerate.sty
Package: enumerate 1999/03/05 v3.00 enumerate extensions (DPC)
\@enLab=\toks27
)
\c@figure=\count135
\c@table=\count136
\abovecaptionskip=\skip47
\belowcaptionskip=\skip48
)
(/usr/share/texmf/tex/latex/beamer/base/beamerbasenavigation.sty
Package: beamerbasenavigation 2007/01/28 (rcs-revision 1.36)
)
(/usr/share/texmf/tex/latex/beamer/base/beamerbasetheorems.sty
Package: beamerbasetheorems 2007/01/28 (rcs-revision 1.10)
(/usr/share/texmf-texlive/tex/latex/amsmath/amsmath.sty
Package: amsmath 2000/07/18 v2.13 AMS math features
\@mathmargin=\skip49
For additional information on amsmath, use the `?' option.
(/usr/share/texmf-texlive/tex/latex/amsmath/amstext.sty
Package: amstext 2000/06/29 v2.01
(/usr/share/texmf-texlive/tex/latex/amsmath/amsgen.sty
File: amsgen.sty 1999/11/30 v2.0
\@emptytoks=\toks28
\ex@=\dimen167
))
(/usr/share/texmf-texlive/tex/latex/amsmath/amsbsy.sty
Package: amsbsy 1999/11/29 v1.2d
\pmbraise@=\dimen168
)
(/usr/share/texmf-texlive/tex/latex/amsmath/amsopn.sty
Package: amsopn 1999/12/14 v2.01 operator names
)
\inf@bad=\count137
LaTeX Info: Redefining \frac on input line 211.
\uproot@=\count138
\leftroot@=\count139
LaTeX Info: Redefining \overline on input line 307.
\classnum@=\count140
\DOTSCASE@=\count141
LaTeX Info: Redefining \ldots on input line 379.
LaTeX Info: Redefining \dots on input line 382.
LaTeX Info: Redefining \cdots on input line 467.
\Mathstrutbox@=\box50
\strutbox@=\box51
\big@size=\dimen169
LaTeX Font Info: Redeclaring font encoding OML on input line 567.
LaTeX Font Info: Redeclaring font encoding OMS on input line 568.
\macc@depth=\count142
\c@MaxMatrixCols=\count143
\dotsspace@=\muskip11
\c@parentequation=\count144
\dspbrk@lvl=\count145
\tag@help=\toks29
\row@=\count146
\column@=\count147
\maxfields@=\count148
\andhelp@=\toks30
\eqnshift@=\dimen170
\alignsep@=\dimen171
\tagshift@=\dimen172
\tagwidth@=\dimen173
\totwidth@=\dimen174
\lineht@=\dimen175
\@envbody=\toks31
\multlinegap=\skip50
\multlinetaggap=\skip51
\mathdisplay@stack=\toks32
LaTeX Info: Redefining \[ on input line 2666.
LaTeX Info: Redefining \] on input line 2667.
)
(/usr/share/texmf-texlive/tex/latex/amscls/amsthm.sty
Package: amsthm 2004/08/06 v2.20
\thm@style=\toks33
\thm@bodyfont=\toks34
\thm@headfont=\toks35
\thm@notefont=\toks36
\thm@headpunct=\toks37
\thm@preskip=\skip52
\thm@postskip=\skip53
\thm@headsep=\skip54
\dth@everypar=\toks38
)
\c@theorem=\count149
)
(/usr/share/texmf/tex/latex/beamer/base/beamerbasethemes.sty
Package: beamerbasethemes 2007/01/28 (rcs-revision 1.10)
)
(/usr/share/texmf/tex/latex/beamer/themes/theme/beamerthemedefault.sty
Package: beamerthemedefault 2007/01/28 (rcs-revision 1.7)
(/usr/share/texmf/tex/latex/beamer/themes/font/beamerfontthemedefault.sty
Package: beamerfontthemedefault 2007/01/28 (rcs-revision 1.13)
)
(/usr/share/texmf/tex/latex/beamer/themes/color/beamercolorthemedefault.sty
Package: beamercolorthemedefault 2007/01/28 (rcs-revision 1.28)
)
(/usr/share/texmf/tex/latex/beamer/themes/inner/beamerinnerthemedefault.sty
Package: beamerinnerthemedefault 2007/01/28 (rcs-revision 1.20)
\beamer@dima=\dimen176
\beamer@dimb=\dimen177
)
(/usr/share/texmf/tex/latex/beamer/themes/outer/beamerouterthemedefault.sty
Package: beamerouterthemedefault 2007/01/28 (rcs-revision 1.14)
)))
(/usr/share/texmf/tex/latex/beamer/themes/theme/beamerthemeWarsaw.sty
Package: beamerthemeWarsaw 2007/01/28 (rcs-revision 1.9)
(/usr/share/texmf/tex/latex/beamer/themes/inner/beamerinnerthemerounded.sty
Package: beamerinnerthemerounded 2007/01/28 (rcs-revision 1.5)
)
(/usr/share/texmf/tex/latex/beamer/themes/outer/beamerouterthemeshadow.sty
Package: beamerouterthemeshadow 2007/01/28 (rcs-revision 1.9)
(/usr/share/texmf/tex/latex/beamer/themes/outer/beamerouterthemesplit.sty
Package: beamerouterthemesplit 2007/01/28 (rcs-revision 1.5)
))
(/usr/share/texmf/tex/latex/beamer/themes/color/beamercolorthemeorchid.sty
Package: beamercolorthemeorchid 2007/01/28 (rcs-revision 1.3)
)
(/usr/share/texmf/tex/latex/beamer/themes/color/beamercolorthemewhale.sty
Package: beamercolorthemewhale 2007/01/28 (rcs-revision 1.4)
))
(/usr/share/texmf-texlive/tex/generic/babel/babel.sty
Package: babel 2005/11/23 v3.8h 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 2005/11/23 v3.8h Babel common definitions
LaTeX Info: Redefining \textlatin on input line 82.
\babel@savecnt=\count150
\U@D=\dimen178
)
\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/inputenc.sty
Package: inputenc 2006/05/05 v1.1b Input encoding file
\inpenc@prehook=\toks39
\inpenc@posthook=\toks40
(/usr/share/texmf-texlive/tex/latex/base/latin1.def
File: latin1.def 2006/05/05 v1.1b Input encoding file
))
(/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-texlive/tex/latex/ae/ae.sty
Package: ae 2001/02/12 1.3 Almost European Computer Modern
(/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.
)
LaTeX Font Info: Try loading font information for T1+aer on input line 100.
(/usr/share/texmf-texlive/tex/latex/ae/t1aer.fd
File: t1aer.fd 1997/11/16 Font definitions for T1/aer.
)))
(/usr/share/texmf-texlive/tex/latex/ae/aecompl.sty
Package: aecompl 1998/07/23 0.9 T1 Complements for AE fonts (D. Roegel)
)
(/usr/share/texmf-texlive/tex/latex/psnfss/mathpazo.sty
Package: mathpazo 2005/04/12 PSNFSS-v9.2a Palatino w/ Pazo Math (D.Puga, WaS)
\symupright=\mathgroup6
)
(/usr/share/texmf-texlive/tex/latex/psnfss/courier.sty
Package: courier 2005/04/12 PSNFSS-v9.2a (WaS)
)
(/usr/share/texmf-texlive/tex/latex/euler/euler.sty
Package: euler 1995/03/05 v2.5
Package: `euler' v2.5 <1995/03/05> (FJ and FMi)
LaTeX Font Info: Redeclaring symbol font `letters' on input line 35.
LaTeX Font Warning: Encoding `OML' has changed to `U' for symbol font
(Font) `letters' in the math version `normal' on input line 35.
LaTeX Font Info: Overwriting symbol font `letters' in version `normal'
(Font) OML/zplm/m/it --> U/eur/m/n on input line 35.
LaTeX Font Warning: Encoding `OML' has changed to `U' for symbol font
(Font) `letters' in the math version `bold' on input line 35.
LaTeX Font Info: Overwriting symbol font `letters' in version `bold'
(Font) OML/zplm/b/it --> U/eur/m/n on input line 35.
LaTeX Font Info: Overwriting symbol font `letters' in version `bold'
(Font) U/eur/m/n --> U/eur/b/n on input line 36.
LaTeX Font Info: Redeclaring math symbol \Gamma on input line 47.
LaTeX Font Info: Redeclaring math symbol \Delta on input line 48.
LaTeX Font Info: Redeclaring math symbol \Theta on input line 49.
LaTeX Font Info: Redeclaring math symbol \Lambda on input line 50.
LaTeX Font Info: Redeclaring math symbol \Xi on input line 51.
LaTeX Font Info: Redeclaring math symbol \Pi on input line 52.
LaTeX Font Info: Redeclaring math symbol \Sigma on input line 53.
LaTeX Font Info: Redeclaring math symbol \Upsilon on input line 54.
LaTeX Font Info: Redeclaring math symbol \Phi on input line 55.
LaTeX Font Info: Redeclaring math symbol \Psi on input line 56.
LaTeX Font Info: Redeclaring math symbol \Omega on input line 57.
\symEulerFraktur=\mathgroup7
LaTeX Font Info: Overwriting symbol font `EulerFraktur' in version `bold'
(Font) U/euf/m/n --> U/euf/b/n on input line 63.
LaTeX Font Info: Redeclaring math alphabet \mathfrak on input line 64.
LaTeX Info: Redefining \oldstylenums on input line 85.
\symEulerScript=\mathgroup8
LaTeX Font Info: Overwriting symbol font `EulerScript' in version `bold'
(Font) U/eus/m/n --> U/eus/b/n on input line 93.
LaTeX Font Info: Redeclaring math symbol \aleph on input line 97.
LaTeX Font Info: Redeclaring math symbol \Re on input line 98.
LaTeX Font Info: Redeclaring math symbol \Im on input line 99.
LaTeX Font Info: Redeclaring math delimiter \vert on input line 101.
LaTeX Font Info: Redeclaring math delimiter \backslash on input line 103.
LaTeX Font Info: Redeclaring math symbol \neg on input line 106.
LaTeX Font Info: Redeclaring math symbol \wedge on input line 108.
LaTeX Font Info: Redeclaring math symbol \vee on input line 110.
LaTeX Font Info: Redeclaring math symbol \setminus on input line 112.
LaTeX Font Info: Redeclaring math symbol \sim on input line 113.
LaTeX Font Info: Redeclaring math symbol \mid on input line 114.
LaTeX Font Info: Redeclaring math delimiter \arrowvert on input line 116.
LaTeX Font Info: Redeclaring math symbol \mathsection on input line 117.
\symEulerExtension=\mathgroup9
LaTeX Font Info: Redeclaring math symbol \coprod@ on input line 125.
LaTeX Font Info: Redeclaring math symbol \prod@ on input line 125.
LaTeX Font Info: Redeclaring math symbol \sum@ on input line 125.
LaTeX Font Info: Redeclaring math symbol \intop on input line 130.
LaTeX Font Info: Redeclaring math symbol \ointop on input line 131.
LaTeX Font Info: Redeclaring math symbol \braceld on input line 132.
LaTeX Font Info: Redeclaring math symbol \bracerd on input line 133.
LaTeX Font Info: Redeclaring math symbol \bracelu on input line 134.
LaTeX Font Info: Redeclaring math symbol \braceru on input line 135.
LaTeX Font Info: Redeclaring math symbol \infty on input line 136.
LaTeX Font Info: Redeclaring math symbol \nearrow on input line 153.
LaTeX Font Info: Redeclaring math symbol \searrow on input line 154.
LaTeX Font Info: Redeclaring math symbol \nwarrow on input line 155.
LaTeX Font Info: Redeclaring math symbol \swarrow on input line 156.
LaTeX Font Info: Redeclaring math symbol \Leftrightarrow on input line 157.
LaTeX Font Info: Redeclaring math symbol \Leftarrow on input line 158.
LaTeX Font Info: Redeclaring math symbol \Rightarrow on input line 159.
LaTeX Font Info: Redeclaring math symbol \leftrightarrow on input line 160.
LaTeX Font Info: Redeclaring math symbol \leftarrow on input line 161.
LaTeX Font Info: Redeclaring math symbol \rightarrow on input line 163.
LaTeX Font Info: Redeclaring math delimiter \uparrow on input line 166.
LaTeX Font Info: Redeclaring math delimiter \downarrow on input line 168.
LaTeX Font Info: Redeclaring math delimiter \updownarrow on input line 170.
LaTeX Font Info: Redeclaring math delimiter \Uparrow on input line 172.
LaTeX Font Info: Redeclaring math delimiter \Downarrow on input line 174.
LaTeX Font Info: Redeclaring math delimiter \Updownarrow on input line 176.
LaTeX Font Info: Redeclaring math symbol \leftharpoonup on input line 177.
LaTeX Font Info: Redeclaring math symbol \leftharpoondown on input line 178.
LaTeX Font Info: Redeclaring math symbol \rightharpoonup on input line 179.
LaTeX Font Info: Redeclaring math symbol \rightharpoondown on input line 180
.
LaTeX Font Info: Redeclaring math delimiter \lbrace on input line 182.
LaTeX Font Info: Redeclaring math delimiter \rbrace on input line 184.
\symcmmigroup=\mathgroup10
LaTeX Font Info: Overwriting symbol font `cmmigroup' in version `bold'
(Font) OML/cmm/m/it --> OML/cmm/b/it on input line 200.
LaTeX Font Info: Redeclaring math accent \vec on input line 201.
LaTeX Font Info: Redeclaring math symbol \triangleleft on input line 202.
LaTeX Font Info: Redeclaring math symbol \triangleright on input line 203.
LaTeX Font Info: Redeclaring math symbol \star on input line 204.
LaTeX Font Info: Redeclaring math symbol \lhook on input line 205.
LaTeX Font Info: Redeclaring math symbol \rhook on input line 206.
LaTeX Font Info: Redeclaring math symbol \flat on input line 207.
LaTeX Font Info: Redeclaring math symbol \natural on input line 208.
LaTeX Font Info: Redeclaring math symbol \sharp on input line 209.
LaTeX Font Info: Redeclaring math symbol \smile on input line 210.
LaTeX Font Info: Redeclaring math symbol \frown on input line 211.
LaTeX Font Info: Redeclaring math accent \grave on input line 245.
LaTeX Font Info: Redeclaring math accent \acute on input line 246.
LaTeX Font Info: Redeclaring math accent \tilde on input line 247.
LaTeX Font Info: Redeclaring math accent \ddot on input line 248.
LaTeX Font Info: Redeclaring math accent \check on input line 249.
LaTeX Font Info: Redeclaring math accent \breve on input line 250.
LaTeX Font Info: Redeclaring math accent \bar on input line 251.
LaTeX Font Info: Redeclaring math accent \dot on input line 252.
LaTeX Font Info: Redeclaring math accent \hat on input line 254.
) (/usr/share/texmf-texlive/tex/latex/psnfss/helvet.sty
Package: helvet 2005/04/12 PSNFSS-v9.2a (WaS)
)
(/usr/share/texmf-texlive/tex/latex/listings/listings.sty
\lst@mode=\count151
\lst@gtempboxa=\box52
\lst@token=\toks41
\lst@length=\count152
\lst@currlwidth=\dimen179
\lst@column=\count153
\lst@pos=\count154
\lst@lostspace=\dimen180
\lst@width=\dimen181
\lst@newlines=\count155
\lst@lineno=\count156
\c@lstlisting=\count157
\lst@maxwidth=\dimen182
(/usr/share/texmf-texlive/tex/latex/listings/lstpatch.sty
File: lstpatch.sty 2004/10/17 1.3b (Carsten Heinz)
)
(/usr/share/texmf-texlive/tex/latex/listings/lstmisc.sty
File: lstmisc.sty 2004/09/07 1.3 (Carsten Heinz)
\c@lstnumber=\count158
\lst@skipnumbers=\count159
\lst@framebox=\box53
)
(/usr/share/texmf-texlive/tex/latex/listings/listings.cfg
File: listings.cfg 2004/09/05 1.3 listings configuration
))
Package: listings 2004/10/17 1.3b (Carsten Heinz)
(/usr/share/texmf-texlive/tex/latex/listings/lstlang1.sty
File: lstlang1.sty 2004/09/05 1.3 listings language file
)
\c@time=\count160
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\\' on input line 78.
(./Session-3.aux)
\openout1 = `Session-3.aux'.
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 107.
LaTeX Font Info: ... okay on input line 107.
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 107.
LaTeX Font Info: ... okay on input line 107.
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 107.
LaTeX Font Info: ... okay on input line 107.
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 107.
LaTeX Font Info: ... okay on input line 107.
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 107.
LaTeX Font Info: ... okay on input line 107.
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 107.
LaTeX Font Info: ... okay on input line 107.
LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 107.
LaTeX Font Info: ... okay on input line 107.
LaTeX Font Info: Try loading font information for T1+phv on input line 107.
(/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 13.67995pt on input line 107.
(/usr/share/texmf/tex/context/base/supp-pdf.tex
[Loading MPS to PDF converter (version 2006.09.02).]
\scratchcounter=\count161
\scratchdimen=\dimen183
\scratchbox=\box54
\nofMPsegments=\count162
\nofMParguments=\count163
\everyMPshowfont=\toks42
\MPscratchCnt=\count164
\MPscratchDim=\dimen184
\MPnumerator=\count165
\everyMPtoPDFconversion=\toks43
)
-------------------- Geometry parameters
paper: user defined
landscape: --
twocolumn: --
twoside: --
asymmetric: --
h-parts: 28.45274pt, 307.28987pt, 28.45274pt
v-parts: 0.0pt, 273.14662pt, 0.0pt
hmarginratio: --
vmarginratio: --
lines: --
heightrounded: --
bindingoffset: 0.0pt
truedimen: --
includehead: true
includefoot: true
includemp: --
driver: pdftex
-------------------- Page layout dimensions and switches
\paperwidth 364.19536pt
\paperheight 273.14662pt
\textwidth 307.28987pt
\textheight 244.6939pt
\oddsidemargin -43.81725pt
\evensidemargin -43.81725pt
\topmargin -72.26999pt
\headheight 14.22636pt
\headsep 0.0pt
\footskip 14.22636pt
\marginparwidth 4.0pt
\marginparsep 10.0pt
\columnsep 10.0pt
\skip\footins 12.0pt plus 4.0pt minus 2.0pt
\hoffset 0.0pt
\voffset 0.0pt
\mag 1000
(1in=72.27pt, 1cm=28.45pt)
-----------------------
Package hyperref Info: Link coloring OFF on input line 107.
(/usr/share/texmf-texlive/tex/latex/hyperref/nameref.sty
Package: nameref 2006/12/27 v2.28 Cross-referencing by name of section
(/usr/share/texmf-texlive/tex/latex/oberdiek/refcount.sty
Package: refcount 2006/02/20 v3.0 Data extraction from references (HO)
)
\c@section@level=\count166
)
LaTeX Info: Redefining \ref on input line 107.
LaTeX Info: Redefining \pageref on input line 107.
(./Session-3.out)
(./Session-3.out)
\@outlinefile=\write4
\openout4 = `Session-3.out'.
LaTeX Font Info: Overwriting symbol font `operators' in version `normal'
(Font) OT1/ppl/m/n --> OT1/cmss/m/n on input line 107.
LaTeX Font Info: Overwriting symbol font `operators' in version `bold'
(Font) OT1/ppl/b/n --> OT1/cmss/bx/n on input line 107.
\symnumbers=\mathgroup11
\sympureletters=\mathgroup12
LaTeX Font Info: Overwriting math alphabet `\mathrm' in version `normal'
(Font) OT1/cmss/m/n --> T1/ppl/m/n on input line 107.
LaTeX Font Info: Redeclaring math alphabet \mathbf on input line 107.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `normal'
(Font) OT1/zplm/b/n --> T1/phv/bx/n on input line 107.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `bold'
(Font) OT1/zplm/b/n --> T1/phv/bx/n on input line 107.
LaTeX Font Info: Redeclaring math alphabet \mathsf on input line 107.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `normal'
(Font) OT1/cmss/m/n --> T1/phv/m/n on input line 107.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `bold'
(Font) OT1/cmss/bx/n --> T1/phv/m/n on input line 107.
LaTeX Font Info: Redeclaring math alphabet \mathit on input line 107.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `normal'
(Font) OT1/ppl/m/it --> T1/phv/m/it on input line 107.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold'
(Font) OT1/ppl/b/it --> T1/phv/m/it on input line 107.
LaTeX Font Info: Redeclaring math alphabet \mathtt on input line 107.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `normal'
(Font) OT1/cmtt/m/n --> T1/pcr/m/n on input line 107.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `bold'
(Font) OT1/cmtt/m/n --> T1/pcr/m/n on input line 107.
LaTeX Font Info: Overwriting symbol font `numbers' in version `bold'
(Font) T1/phv/m/n --> T1/phv/bx/n on input line 107.
LaTeX Font Info: Overwriting symbol font `pureletters' in version `bold'
(Font) T1/phv/m/it --> T1/phv/bx/it on input line 107.
LaTeX Font Info: Overwriting math alphabet `\mathrm' in version `bold'
(Font) OT1/cmss/bx/n --> T1/ppl/bx/n on input line 107.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `bold'
(Font) T1/phv/bx/n --> T1/phv/bx/n on input line 107.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `bold'
(Font) T1/phv/m/n --> T1/phv/bx/n on input line 107.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold'
(Font) T1/phv/m/it --> T1/phv/bx/it on input line 107.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `bold'
(Font) T1/pcr/m/n --> T1/pcr/bx/n on input line 107.
LaTeX Font Info: Redeclaring symbol font `operators' on input line 107.
LaTeX Font Warning: Encoding `OT1' has changed to `T1' for symbol font
(Font) `operators' in the math version `normal' on input line 107.
LaTeX Font Info: Overwriting symbol font `operators' in version `normal'
(Font) OT1/cmss/m/n --> T1/ppl/m/n on input line 107.
LaTeX Font Warning: Encoding `OT1' has changed to `T1' for symbol font
(Font) `operators' in the math version `bold' on input line 107.
LaTeX Font Info: Overwriting symbol font `operators' in version `bold'
(Font) OT1/cmss/bx/n --> T1/ppl/m/n on input line 107.
LaTeX Font Info: Overwriting symbol font `operators' in version `bold'
(Font) T1/ppl/m/n --> T1/ppl/bx/n on input line 107.
LaTeX Font Info: Redeclaring math alphabet \mathbf on input line 107.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `normal'
(Font) T1/phv/bx/n --> T1/ppl/bx/n on input line 107.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `bold'
(Font) T1/phv/bx/n --> T1/ppl/bx/n on input line 107.
LaTeX Font Info: Redeclaring math alphabet \mathsf on input line 107.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `normal'
(Font) T1/phv/m/n --> T1/phv/m/n on input line 107.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `bold'
(Font) T1/phv/bx/n --> T1/phv/m/n on input line 107.
LaTeX Font Info: Redeclaring math alphabet \mathit on input line 107.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `normal'
(Font) T1/phv/m/it --> T1/ppl/m/it on input line 107.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold'
(Font) T1/phv/bx/it --> T1/ppl/m/it on input line 107.
LaTeX Font Info: Redeclaring math alphabet \mathtt on input line 107.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `normal'
(Font) T1/pcr/m/n --> T1/pcr/m/n on input line 107.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `bold'
(Font) T1/pcr/bx/n --> T1/pcr/m/n on input line 107.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `bold'
(Font) T1/phv/m/n --> T1/phv/bx/n on input line 107.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold'
(Font) T1/ppl/m/it --> T1/ppl/bx/it on input line 107.
(./Session-3.nav)
LaTeX Font Info: Font shape `T1/phv/m/n' will be
(Font) scaled to size 5.69998pt on input line 107.
LaTeX Font Info: Font shape `T1/phv/m/n' will be
(Font) scaled to size 19.70294pt on input line 111.
LaTeX Font Info: Font shape `T1/phv/m/n' will be
(Font) scaled to size 7.59998pt on input line 111.
LaTeX Font Info: Font shape `T1/phv/m/n' will be
(Font) scaled to size 3.79999pt on input line 111.
[1{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}
]
LaTeX Font Info: Try loading font information for T1+pcr on input line 118.
(/usr/share/texmf-texlive/tex/latex/psnfss/t1pcr.fd
File: t1pcr.fd 2001/06/04 font definitions for T1/pcr.
)
LaTeX Font Info: Font shape `T1/pcr/bx/n' in size <14.4> not available
(Font) Font shape `T1/pcr/b/n' tried instead on input line 118.
[2
] [3
] [4
]
\openout3 = `Session-3.vrb'.
(./Session-3.vrb
Overfull \hbox (29.67308pt too wide) in paragraph at lines 10--11
[][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][]
[]
) [5
]
\openout3 = `Session-3.vrb'.
(./Session-3.vrb
LaTeX Font Info: Try loading font information for T1+ppl on input line 4.
(/usr/share/texmf-texlive/tex/latex/psnfss/t1ppl.fd
File: t1ppl.fd 2001/06/04 font definitions for T1/ppl.
)
LaTeX Font Info: Try loading font information for U+eur on input line 4.
(/usr/share/texmf-texlive/tex/latex/amsfonts/ueur.fd
File: ueur.fd 2002/01/19 v2.2g AMS font definitions
)
LaTeX Font Info: Try loading font information for OMS+zplm on input line 4.
(/usr/share/texmf-texlive/tex/latex/psnfss/omszplm.fd
File: omszplm.fd 2002/09/08 Fontinst v1.914 font definitions for OMS/zplm.
)
LaTeX Font Info: Try loading font information for OMX+zplm on input line 4.
(/usr/share/texmf-texlive/tex/latex/psnfss/omxzplm.fd
File: omxzplm.fd 2002/09/08 Fontinst v1.914 font definitions for OMX/zplm.
)
LaTeX Font Info: Font shape `U/msa/m/n' will be
(Font) scaled to size 15.0049pt on input line 4.
LaTeX Font Info: Font shape `U/msa/m/n' will be
(Font) scaled to size 10.42007pt on input line 4.
LaTeX Font Info: Font shape `U/msa/m/n' will be
(Font) scaled to size 8.33606pt on input line 4.
LaTeX Font Info: Font shape `U/msb/m/n' will be
(Font) scaled to size 15.0049pt on input line 4.
LaTeX Font Info: Font shape `U/msb/m/n' will be
(Font) scaled to size 10.42007pt on input line 4.
LaTeX Font Info: Font shape `U/msb/m/n' will be
(Font) scaled to size 8.33606pt on input line 4.
LaTeX Font Info: Try loading font information for OT1+zplm on input line 4.
(/usr/share/texmf-texlive/tex/latex/psnfss/ot1zplm.fd
File: ot1zplm.fd 2002/09/08 Fontinst v1.914 font definitions for OT1/zplm.
)
LaTeX Font Info: Try loading font information for U+eus on input line 4.
(/usr/share/texmf-texlive/tex/latex/amsfonts/ueus.fd
File: ueus.fd 2002/01/19 v2.2g AMS font definitions
)
LaTeX Font Info: Try loading font information for U+euex on input line 4.
(/usr/share/texmf-texlive/tex/latex/amsfonts/ueuex.fd
File: ueuex.fd 2002/01/19 v2.2g AMS font definitions
)
LaTeX Font Info: Font shape `T1/phv/m/n' will be
(Font) scaled to size 9.49997pt on input line 4.
LaTeX Font Info: Font shape `T1/phv/m/it' in size <14.4> not available
(Font) Font shape `T1/phv/m/sl' tried instead on input line 4.
LaTeX Font Info: Font shape `T1/phv/m/sl' will be
(Font) scaled to size 13.67995pt on input line 4.
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 4.
LaTeX Font Info: Font shape `T1/phv/m/sl' will be
(Font) scaled to size 9.49997pt on input line 4.
LaTeX Font Info: Font shape `T1/phv/m/it' in size <8> not available
(Font) Font shape `T1/phv/m/sl' tried instead on input line 4.
LaTeX Font Info: Font shape `T1/phv/m/sl' will be
(Font) scaled to size 7.59998pt on input line 4.
) [6
]
\openout3 = `Session-3.vrb'.
(./Session-3.vrb)
[7
] (./Session-3.toc) [8
]
\openout3 = `Session-3.vrb'.
(./Session-3.vrb) [9
]
\openout3 = `Session-3.vrb'.
(./Session-3.vrb) [10
]
\openout3 = `Session-3.vrb'.
(./Session-3.vrb
LaTeX Font Info: Font shape `T1/pcr/m/it' in size <14.4> not available
(Font) Font shape `T1/pcr/m/sl' tried instead on input line 4.
Overfull \hbox (29.67308pt too wide) in paragraph at lines 4--5
[][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][]
[]
Overfull \hbox (38.31316pt too wide) in paragraph at lines 5--6
[][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][]
[]
Overfull \hbox (29.67308pt too wide) in paragraph at lines 10--11
[][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][
][][][][][][]
[]
) [11
]
\openout3 = `Session-3.vrb'.
(./Session-3.vrb)
LaTeX Font Info: Font shape `T1/pcr/bx/n' in size <20.74> not available
(Font) Font shape `T1/pcr/b/n' tried instead on input line 213.
[12
]
Overfull \hbox (12.3901pt too wide) in paragraph at lines 220--220
[]\T1/pcr/m/n/14.4 RGN;ID;NAME;MARK1;...;MARK5;TOTAL;PFW
[]
[13
] [14
] (./Session-3.toc) [15
]
\openout3 = `Session-3.vrb'.
(./Session-3.vrb
Overfull \hbox (12.39293pt too wide) in paragraph at lines 4--5
[][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][]
[]
Overfull \hbox (12.39293pt too wide) in paragraph at lines 5--6
[][][][][][][][][][][][][][][][][][][][][][][][][][]
[]
) [16
]
\openout3 = `Session-3.vrb'.
(./Session-3.vrb) [17
]
LaTeX Font Info: Font shape `T1/phv/m/n' will be
(Font) scaled to size 11.39996pt on input line 284.
[18
]
\openout3 = `Session-3.vrb'.
(./Session-3.vrb) [19
]
\openout3 = `Session-3.vrb'.
(./Session-3.vrb)
[20
]
\openout3 = `Session-3.vrb'.
(./Session-3.vrb)
Overfull \vbox (1.35773pt too high) detected at line 332
[]
[21
]
\openout3 = `Session-3.vrb'.
(./Session-3.vrb) [22
] (./Session-3.toc) [23
] [24
]
\openout3 = `Session-3.vrb'.
(./Session-3.vrb
LaTeX Font Info: Font shape `T1/pcr/bx/n' in size <12> not available
(Font) Font shape `T1/pcr/b/n' tried instead on input line 4.
Overfull \hbox (31.11357pt too wide) in paragraph at lines 12--13
[][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][]
[]
) [25
] [26
] (./Session-3.toc) [27
] [28
]
\openout3 = `Session-3.vrb'.
(./Session-3.vrb) [29
] [30
] [31
]
[32
] [33
]
\tf@nav=\write5
\openout5 = `Session-3.nav'.
\tf@toc=\write6
\openout6 = `Session-3.toc'.
\tf@snm=\write7
\openout7 = `Session-3.snm'.
(./Session-3.aux) )
Here is how much of TeX's memory you used:
14031 strings out of 94834
239196 string characters out of 1179181
307375 words of memory out of 1500000
16709 multiletter control sequences out of 10000+50000
47906 words of font info for 81 fonts, out of 1200000 for 2000
212 hyphenation exceptions out of 8191
43i,16n,65p,317b,1186s stack positions out of 5000i,500n,6000p,200000b,5000s
{/usr/share/texmf-texlive/fonts/enc/dvips/base/8r.enc}</usr
/share/texmf-texlive/fonts/type1/urw/courier/ucrb8a.pfb></usr/share/texmf-texli
ve/fonts/type1/urw/courier/ucrr8a.pfb></usr/share/texmf-texlive/fonts/type1/urw
/courier/ucrro8a.pfb></usr/share/texmf-texlive/fonts/type1/urw/helvetic/uhvr8a.
pfb></usr/share/texmf-texlive/fonts/type1/urw/helvetic/uhvro8a.pfb>
Output written on Session-3.pdf (33 pages, 284619 bytes).
PDF statistics:
1140 PDF objects out of 1200 (max. 8388607)
72 named destinations out of 1000 (max. 131072)
143 words of extra memory for PDF output out of 10000 (max. 10000000)
|