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 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334
|
This is pdfTeX, Version 3.14159265-2.6-1.40.20 (TeX Live 2019/Debian) (preloaded format=pdflatex 2024.3.15) 19 JUL 2025 16:11
entering extended mode
restricted \write18 enabled.
%&-line parsing enabled.
**HapTutorial
(./HapTutorial.tex
LaTeX2e <2020-02-02> patch level 2
L3 programming layer <2020-02-14>
(/usr/share/texlive/texmf-dist/tex/latex/base/report.cls
Document Class: report 2019/12/20 v1.4l Standard LaTeX document class
(/usr/share/texlive/texmf-dist/tex/latex/base/size11.clo
File: size11.clo 2019/12/20 v1.4l Standard LaTeX file (size option)
)
\c@part=\count167
\c@chapter=\count168
\c@section=\count169
\c@subsection=\count170
\c@subsubsection=\count171
\c@paragraph=\count172
\c@subparagraph=\count173
\c@figure=\count174
\c@table=\count175
\abovecaptionskip=\skip47
\belowcaptionskip=\skip48
\bibindent=\dimen134
)
(/usr/share/texlive/texmf-dist/tex/latex/geometry/geometry.sty
Package: geometry 2020/01/02 v5.9 Page Geometry
(/usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty
Package: keyval 2014/10/28 v1.15 key=value parser (DPC)
\KV@toks@=\toks14
)
(/usr/share/texlive/texmf-dist/tex/generic/iftex/ifvtex.sty
Package: ifvtex 2019/10/25 v1.7 ifvtex legacy package. Use iftex instead.
(/usr/share/texlive/texmf-dist/tex/generic/iftex/iftex.sty
Package: iftex 2019/11/07 v1.0c TeX engine tests
))
\Gm@cnth=\count176
\Gm@cntv=\count177
\c@Gm@tempcnt=\count178
\Gm@bindingoffset=\dimen135
\Gm@wd@mp=\dimen136
\Gm@odd@mp=\dimen137
\Gm@even@mp=\dimen138
\Gm@layoutwidth=\dimen139
\Gm@layoutheight=\dimen140
\Gm@layouthoffset=\dimen141
\Gm@layoutvoffset=\dimen142
\Gm@dimlist=\toks15
)
(/usr/share/texlive/texmf-dist/tex/latex/amsfonts/amssymb.sty
Package: amssymb 2013/01/14 v3.01 AMS font symbols
(/usr/share/texlive/texmf-dist/tex/latex/amsfonts/amsfonts.sty
Package: amsfonts 2013/01/14 v3.01 Basic AMSFonts support
\@emptytoks=\toks16
\symAMSa=\mathgroup4
\symAMSb=\mathgroup5
LaTeX Font Info: Redeclaring math symbol \hbar on input line 98.
LaTeX Font Info: Overwriting math alphabet `\mathfrak' in version `bold'
(Font) U/euf/m/n --> U/euf/b/n on input line 106.
))
(/usr/share/texlive/texmf-dist/tex/latex/base/inputenc.sty
Package: inputenc 2018/08/11 v1.3c Input encoding file
\inpenc@prehook=\toks17
\inpenc@posthook=\toks18
(/usr/share/texlive/texmf-dist/tex/latex/base/latin1.def
File: latin1.def 2018/08/11 v1.3c Input encoding file
))
(/usr/share/texlive/texmf-dist/tex/latex/base/makeidx.sty
Package: makeidx 2014/09/29 v1.0m Standard LaTeX package
)
\@indexfile=\write3
\openout3 = `HapTutorial.idx'.
Writing index file HapTutorial.idx
(/usr/share/texlive/texmf-dist/tex/latex/graphics/color.sty
Package: color 2019/11/23 v1.2a Standard LaTeX Color (DPC)
(/usr/share/texlive/texmf-dist/tex/latex/graphics-cfg/color.cfg
File: color.cfg 2016/01/02 v1.6 sample color configuration
)
Package color Info: Driver file: pdftex.def on input line 147.
(/usr/share/texlive/texmf-dist/tex/latex/graphics-def/pdftex.def
File: pdftex.def 2018/01/08 v1.0l Graphics/color driver for pdftex
))
(/usr/share/texlive/texmf-dist/tex/latex/fancyvrb/fancyvrb.sty
Package: fancyvrb 2020/01/13 v3.5 verbatim text (tvz,hv)
\FV@CodeLineNo=\count179
\FV@InFile=\read2
\FV@TabBox=\box45
\c@FancyVerbLine=\count180
\FV@StepNumber=\count181
\FV@OutFile=\write4
)
(/usr/share/texlive/texmf-dist/tex/latex/psnfss/mathptmx.sty
Package: mathptmx 2005/04/12 PSNFSS-v9.2a Times w/ Math, improved (SPQR, WaS)
LaTeX Font Info: Redeclaring symbol font `operators' on input line 28.
LaTeX Font Info: Overwriting symbol font `operators' in version `normal'
(Font) OT1/cmr/m/n --> OT1/ztmcm/m/n on input line 28.
LaTeX Font Info: Overwriting symbol font `operators' in version `bold'
(Font) OT1/cmr/bx/n --> OT1/ztmcm/m/n on input line 28.
LaTeX Font Info: Redeclaring symbol font `letters' on input line 29.
LaTeX Font Info: Overwriting symbol font `letters' in version `normal'
(Font) OML/cmm/m/it --> OML/ztmcm/m/it on input line 29.
LaTeX Font Info: Overwriting symbol font `letters' in version `bold'
(Font) OML/cmm/b/it --> OML/ztmcm/m/it on input line 29.
LaTeX Font Info: Redeclaring symbol font `symbols' on input line 30.
LaTeX Font Info: Overwriting symbol font `symbols' in version `normal'
(Font) OMS/cmsy/m/n --> OMS/ztmcm/m/n on input line 30.
LaTeX Font Info: Overwriting symbol font `symbols' in version `bold'
(Font) OMS/cmsy/b/n --> OMS/ztmcm/m/n on input line 30.
LaTeX Font Info: Redeclaring symbol font `largesymbols' on input line 31.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `normal'
(Font) OMX/cmex/m/n --> OMX/ztmcm/m/n on input line 31.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `bold'
(Font) OMX/cmex/m/n --> OMX/ztmcm/m/n on input line 31.
\symbold=\mathgroup6
\symitalic=\mathgroup7
LaTeX Font Info: Redeclaring math alphabet \mathbf on input line 34.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `normal'
(Font) OT1/cmr/bx/n --> OT1/ptm/bx/n on input line 34.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `bold'
(Font) OT1/cmr/bx/n --> OT1/ptm/bx/n on input line 34.
LaTeX Font Info: Redeclaring math alphabet \mathit on input line 35.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `normal'
(Font) OT1/cmr/m/it --> OT1/ptm/m/it on input line 35.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold'
(Font) OT1/cmr/bx/it --> OT1/ptm/m/it on input line 35.
LaTeX Info: Redefining \hbar on input line 50.
)
(/usr/share/texlive/texmf-dist/tex/latex/psnfss/helvet.sty
Package: helvet 2005/04/12 PSNFSS-v9.2a (WaS)
)
(/usr/share/texlive/texmf-dist/tex/latex/base/fontenc.sty
Package: fontenc 2020/02/11 v2.0o Standard LaTeX package
LaTeX Font Info: Trying to load font information for T1+ptm on input line 11
2.
(/usr/share/texlive/texmf-dist/tex/latex/psnfss/t1ptm.fd
File: t1ptm.fd 2001/06/04 font definitions for T1/ptm.
))
(/usr/share/texlive/texmf-dist/tex/latex/base/textcomp.sty
Package: textcomp 2020/02/02 v2.0n Standard LaTeX package
)
(/usr/share/texlive/texmf-dist/tex/latex/hyperref/hyperref.sty
Package: hyperref 2020/01/14 v7.00d Hypertext links for LaTeX
(/usr/share/texlive/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty
Package: ltxcmds 2019/12/15 v1.24 LaTeX kernel commands for general use (HO)
)
(/usr/share/texlive/texmf-dist/tex/latex/pdftexcmds/pdftexcmds.sty
Package: pdftexcmds 2019/11/24 v0.31 Utility functions of pdfTeX for LuaTeX (HO
)
(/usr/share/texlive/texmf-dist/tex/generic/infwarerr/infwarerr.sty
Package: infwarerr 2019/12/03 v1.5 Providing info/warning/error messages (HO)
)
Package pdftexcmds Info: \pdf@primitive is available.
Package pdftexcmds Info: \pdf@ifprimitive is available.
Package pdftexcmds Info: \pdfdraftmode found.
)
(/usr/share/texlive/texmf-dist/tex/generic/kvsetkeys/kvsetkeys.sty
Package: kvsetkeys 2019/12/15 v1.18 Key value parser (HO)
)
(/usr/share/texlive/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty
Package: kvdefinekeys 2019-12-19 v1.6 Define keys (HO)
)
(/usr/share/texlive/texmf-dist/tex/generic/pdfescape/pdfescape.sty
Package: pdfescape 2019/12/09 v1.15 Implements pdfTeX's escape features (HO)
)
(/usr/share/texlive/texmf-dist/tex/latex/hycolor/hycolor.sty
Package: hycolor 2020-01-27 v1.10 Color options for hyperref/bookmark (HO)
)
(/usr/share/texlive/texmf-dist/tex/latex/letltxmacro/letltxmacro.sty
Package: letltxmacro 2019/12/03 v1.6 Let assignment for LaTeX macros (HO)
)
(/usr/share/texlive/texmf-dist/tex/latex/auxhook/auxhook.sty
Package: auxhook 2019-12-17 v1.6 Hooks for auxiliary files (HO)
)
(/usr/share/texlive/texmf-dist/tex/latex/kvoptions/kvoptions.sty
Package: kvoptions 2019/11/29 v3.13 Key value format for package options (HO)
)
\@linkdim=\dimen143
\Hy@linkcounter=\count182
\Hy@pagecounter=\count183
(/usr/share/texlive/texmf-dist/tex/latex/hyperref/pd1enc.def
File: pd1enc.def 2020/01/14 v7.00d Hyperref: PDFDocEncoding definition (HO)
Now handling font encoding PD1 ...
... no UTF-8 mapping file for font encoding PD1
)
(/usr/share/texlive/texmf-dist/tex/generic/intcalc/intcalc.sty
Package: intcalc 2019/12/15 v1.3 Expandable calculations with integers (HO)
)
(/usr/share/texlive/texmf-dist/tex/generic/etexcmds/etexcmds.sty
Package: etexcmds 2019/12/15 v1.7 Avoid name clashes with e-TeX commands (HO)
)
\Hy@SavedSpaceFactor=\count184
\pdfmajorversion=\count185
Package hyperref Warning: Unexpected value for option `pdftex'
(hyperref) is ignored on input line 4421.
Package hyperref Info: Option `bookmarks' set `true' on input line 4421.
Package hyperref Warning: Option `a4paper' is no longer used.
Package hyperref Info: Option `colorlinks' set `true' on input line 4421.
Package hyperref Info: Option `breaklinks' set `true' on input line 4421.
Package hyperref Info: Hyper figures OFF on input line 4547.
Package hyperref Info: Link nesting OFF on input line 4552.
Package hyperref Info: Hyper index ON on input line 4555.
Package hyperref Info: Plain pages OFF on input line 4562.
Package hyperref Info: Backreferencing ON on input line 4565.
Package hyperref Info: Implicit mode ON; LaTeX internals redefined.
Package hyperref Info: Bookmarks ON on input line 4800.
(/usr/share/texlive/texmf-dist/tex/latex/hyperref/backref.sty
Package: backref 2020/01/14 v1.40 Bibliographical back referencing
(/usr/share/texlive/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty
Package: rerunfilecheck 2019/12/05 v1.9 Rerun checks for auxiliary files (HO)
(/usr/share/texlive/texmf-dist/tex/latex/atveryend/atveryend.sty
Package: atveryend 2019-12-11 v1.11 Hooks at the very end of document (HO)
Package atveryend Info: \enddocument detected (standard20110627).
)
(/usr/share/texlive/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty
Package: uniquecounter 2019/12/15 v1.4 Provide unlimited unique counter (HO)
(/usr/share/texlive/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty
Package: bigintcalc 2019/12/15 v1.5 Expandable calculations on big integers (HO
)
))
Package uniquecounter Info: New unique counter `rerunfilecheck' on input line 2
86.
))
\c@Hy@tempcnt=\count186
(/usr/share/texlive/texmf-dist/tex/latex/url/url.sty
\Urlmuskip=\muskip16
Package: url 2013/09/16 ver 3.4 Verb mode for urls, etc.
)
LaTeX Info: Redefining \url on input line 5159.
\XeTeXLinkMargin=\dimen144
(/usr/share/texlive/texmf-dist/tex/generic/bitset/bitset.sty
Package: bitset 2019/12/09 v1.3 Handle bit-vector datatype (HO)
)
\Fld@menulength=\count187
\Field@Width=\dimen145
\Fld@charsize=\dimen146
Package hyperref Info: Hyper figures OFF on input line 6430.
Package hyperref Info: Link nesting OFF on input line 6435.
Package hyperref Info: Hyper index ON on input line 6438.
Package hyperref Info: backreferencing ON on input line 6443.
Package hyperref Info: Link coloring ON on input line 6448.
Package hyperref Info: Link coloring with OCG OFF on input line 6455.
Package hyperref Info: PDF/A mode OFF on input line 6460.
LaTeX Info: Redefining \ref on input line 6500.
LaTeX Info: Redefining \pageref on input line 6504.
(/usr/share/texlive/texmf-dist/tex/generic/atbegshi/atbegshi.sty
Package: atbegshi 2019/12/05 v1.19 At begin shipout hook (HO)
)
\Hy@abspage=\count188
\c@Item=\count189
\c@Hfootnote=\count190
)
Package hyperref Info: Driver: hpdftex.
(/usr/share/texlive/texmf-dist/tex/latex/hyperref/hpdftex.def
File: hpdftex.def 2020/01/14 v7.00d Hyperref driver for pdfTeX
\Fld@listcount=\count191
\c@bookmark@seq@number=\count192
\Hy@SectionHShift=\skip49
)
\pagenrlog=\write5
\openout5 = `HapTutorial.pnr'.
(/usr/share/texlive/texmf-dist/tex/latex/enumitem/enumitem.sty
Package: enumitem 2019/06/20 v3.9 Customized lists
\labelindent=\skip50
\enit@outerparindent=\dimen147
\enit@toks=\toks19
\enit@inbox=\box46
\enit@count@id=\count193
\enitdp@description=\count194
)
(/usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdfmode.def
File: l3backend-pdfmode.def 2020-02-03 L3 backend support: PDF mode
\l__kernel_color_stack_int=\count195
\l__pdf_internal_box=\box47
)
(./HapTutorial.aux)
\openout1 = `HapTutorial.aux'.
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 87.
LaTeX Font Info: ... okay on input line 87.
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 87.
LaTeX Font Info: ... okay on input line 87.
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 87.
LaTeX Font Info: ... okay on input line 87.
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 87.
LaTeX Font Info: ... okay on input line 87.
LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 87.
LaTeX Font Info: ... okay on input line 87.
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 87.
LaTeX Font Info: ... okay on input line 87.
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 87.
LaTeX Font Info: ... okay on input line 87.
LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 87.
LaTeX Font Info: ... okay on input line 87.
*geometry* driver: auto-detecting
*geometry* detected driver: pdftex
*geometry* verbose mode - [ preamble ] result:
* driver: pdftex
* paper: a4paper
* layout: <same size as paper>
* layoutoffset:(h,v)=(0.0pt,0.0pt)
* modes:
* h-part:(L,W,R)=(76.82243pt, 443.863pt, 76.82243pt)
* v-part:(T,H,B)=(105.27519pt, 634.49646pt, 105.27519pt)
* \paperwidth=597.50787pt
* \paperheight=845.04684pt
* \textwidth=443.863pt
* \textheight=634.49646pt
* \oddsidemargin=4.55244pt
* \evensidemargin=4.55244pt
* \topmargin=-3.9948pt
* \headheight=12.0pt
* \headsep=25.0pt
* \topskip=11.0pt
* \footskip=30.0pt
* \marginparwidth=50.0pt
* \marginparsep=10.0pt
* \columnsep=10.0pt
* \skip\footins=10.0pt plus 4.0pt minus 2.0pt
* \hoffset=0.0pt
* \voffset=0.0pt
* \mag=1000
* \@twocolumnfalse
* \@twosidefalse
* \@mparswitchfalse
* \@reversemarginfalse
* (1in=72.27pt=25.4mm, 1cm=28.453pt)
(/usr/share/texlive/texmf-dist/tex/context/base/mkii/supp-pdf.mkii
[Loading MPS to PDF converter (version 2006.09.02).]
\scratchcounter=\count196
\scratchdimen=\dimen148
\scratchbox=\box48
\nofMPsegments=\count197
\nofMParguments=\count198
\everyMPshowfont=\toks20
\MPscratchCnt=\count199
\MPscratchDim=\dimen149
\MPnumerator=\count266
\makeMPintoPDFobject=\count267
\everyMPtoPDFconversion=\toks21
)
\big@size=\dimen150
\AtBeginShipoutBox=\box49
Package hyperref Info: Link coloring ON on input line 87.
(/usr/share/texlive/texmf-dist/tex/latex/hyperref/nameref.sty
Package: nameref 2019/09/16 v2.46 Cross-referencing by name of section
(/usr/share/texlive/texmf-dist/tex/latex/refcount/refcount.sty
Package: refcount 2019/12/15 v3.6 Data extraction from label references (HO)
)
(/usr/share/texlive/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty
Package: gettitlestring 2019/12/15 v1.6 Cleanup title references (HO)
)
\c@section@level=\count268
)
LaTeX Info: Redefining \ref on input line 87.
LaTeX Info: Redefining \pageref on input line 87.
LaTeX Info: Redefining \nameref on input line 87.
(./HapTutorial.out) (./HapTutorial.out)
\@outlinefile=\write6
\openout6 = `HapTutorial.out'.
LaTeX Font Info: Trying to load font information for T1+cmtt on input line 9
8.
(/usr/share/texlive/texmf-dist/tex/latex/base/t1cmtt.fd
File: t1cmtt.fd 2019/12/16 v2.5j Standard LaTeX font definitions
)
LaTeX Font Info: Font shape `T1/cmtt/bx/n' in size <24.88> not available
(Font) Font shape `T1/cmtt/m/n' tried instead on input line 98.
Underfull \hbox (badness 10000) in paragraph at lines 106--107
[]
[1
{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}] (./HapTutorial.toc
LaTeX Font Info: Trying to load font information for OT1+ztmcm on input line
2.
(/usr/share/texlive/texmf-dist/tex/latex/psnfss/ot1ztmcm.fd
File: ot1ztmcm.fd 2000/01/03 Fontinst v1.801 font definitions for OT1/ztmcm.
)
LaTeX Font Info: Trying to load font information for OML+ztmcm on input line
2.
(/usr/share/texlive/texmf-dist/tex/latex/psnfss/omlztmcm.fd
File: omlztmcm.fd 2000/01/03 Fontinst v1.801 font definitions for OML/ztmcm.
)
LaTeX Font Info: Trying to load font information for OMS+ztmcm on input line
2.
(/usr/share/texlive/texmf-dist/tex/latex/psnfss/omsztmcm.fd
File: omsztmcm.fd 2000/01/03 Fontinst v1.801 font definitions for OMS/ztmcm.
)
LaTeX Font Info: Trying to load font information for OMX+ztmcm on input line
2.
(/usr/share/texlive/texmf-dist/tex/latex/psnfss/omxztmcm.fd
File: omxztmcm.fd 2000/01/03 Fontinst v1.801 font definitions for OMX/ztmcm.
)
LaTeX Font Info: Trying to load font information for OT1+ptm on input line 2
.
(/usr/share/texlive/texmf-dist/tex/latex/psnfss/ot1ptm.fd
File: ot1ptm.fd 2001/06/04 font definitions for OT1/ptm.
)
LaTeX Font Info: Font shape `OT1/ptm/bx/n' in size <10.95> not available
(Font) Font shape `OT1/ptm/b/n' tried instead on input line 2.
LaTeX Font Info: Font shape `OT1/ptm/bx/n' in size <8> not available
(Font) Font shape `OT1/ptm/b/n' tried instead on input line 2.
LaTeX Font Info: Font shape `OT1/ptm/bx/n' in size <6> not available
(Font) Font shape `OT1/ptm/b/n' tried instead on input line 2.
[2
] [3] [4] [5]
LaTeX Font Info: Font shape `T1/cmtt/bx/n' in size <10.95> not available
(Font) Font shape `T1/cmtt/m/n' tried instead on input line 204.
)
\tf@toc=\write7
\openout7 = `HapTutorial.toc'.
[6]
Chapter 1.
LaTeX Font Info: Font shape `T1/cmtt/bx/n' in size <10> not available
(Font) Font shape `T1/cmtt/m/n' tried instead on input line 131.
[7
] [8]
LaTeX Font Info: Font shape `T1/cmtt/bx/n' in size <14.4> not available
(Font) Font shape `T1/cmtt/m/n' tried instead on input line 222.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `\char' on input line 222.
[9]
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `\char' on input line 316.
[10]
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `\char' on input line 346.
[11]
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `\char' on input line 408.
[12] [13] [14] [15] [16]
LaTeX Font Info: Font shape `OT1/ptm/bx/n' in size <14.4> not available
(Font) Font shape `OT1/ptm/b/n' tried instead on input line 714.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `math shift' on input line 714.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `math shift' on input line 714.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `\char' on input line 714.
[17] [18] [19] [20]
Underfull \hbox (badness 10000) in paragraph at lines 904--906
[]\T1/ptm/m/n/10.95 Repeating the same ex-per-i-ment for the per-mu-ta-he-dron,
us-ing the com-mand
[]
Underfull \hbox (badness 3417) in paragraph at lines 904--906
\T1/cmtt/m/n/10.95 RegularCWPermutahedron(n)\T1/ptm/m/n/10.95 , yields the se-q
uence $\OMS/ztmcm/m/n/10.95 j\OT1/ztmcm/m/n/10.95 ^^A(\OML/ztmcm/m/it/10.95 e[]
\OT1/ztmcm/m/n/10.95 )\OMS/ztmcm/m/n/10.95 j \OT1/ztmcm/m/n/10.95 : 1\OML/ztmcm
/m/it/10.95 ; \OT1/ztmcm/m/n/10.95 2\OML/ztmcm/m/it/10.95 ; \OT1/ztmcm/m/n/10.9
5 8\OML/ztmcm/m/it/10.95 ; \OT1/ztmcm/m/n/10.95 50\OML/ztmcm/m/it/10.95 ; \OT1/
ztmcm/m/n/10.95 432\OML/ztmcm/m/it/10.95 ; \OT1/ztmcm/m/n/10.95 4802\OML/ztmcm/
m/it/10.95 ; []$\T1/ptm/m/n/10.95 . The
[]
[21]
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `\char' on input line 965.
[22] [23] [24] [25]
Underfull \hbox (badness 4608) in paragraph at lines 1189--1191
[]\T1/ptm/m/n/10.95 The fol-low-ing com-mands use an $\OT1/ztmcm/m/n/10.95 8$\T
1/cmtt/m/n/10.95 -\T1/ptm/m/n/10.95 dimensional equiv-ari-ant de-for-ma-tion re
-tract of a
[]
[26] [27] [28] [29] [30]
Chapter 2.
[31
]
LaTeX Font Info: Trying to load font information for TS1+ptm on input line 1
485.
(/usr/share/texlive/texmf-dist/tex/latex/psnfss/ts1ptm.fd
File: ts1ptm.fd 2001/06/04 font definitions for TS1/ptm.
) [32] [33]
[34]
Underfull \hbox (badness 10000) in paragraph at lines 1630--1633
[]
[35]
Chapter 3.
[36
] [37] [38]
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `\char' on input line 1868.
[39] [40]
Underfull \hbox (badness 1377) in paragraph at lines 1967--1969
\OML/ztmcm/m/it/10.95 H[]\OT1/ztmcm/m/n/10.95 ([]\OML/ztmcm/m/it/10.95 ; \U/msb
/m/n/10.95 Z\OT1/ztmcm/m/n/10.95 ) = 0$ \T1/ptm/m/n/10.95 since $[]$ is a $\OT1
/ztmcm/m/n/10.95 2$\T1/cmtt/m/n/10.95 -\T1/ptm/m/n/10.95 dimensional CW\T1/cmtt
/m/n/10.95 -\T1/ptm/m/n/10.95 space. The ex-act se-quence im-plies $\OML/ztmcm/
m/it/10.95 ^^Y[][] []
[]
[41] [42] [43] [44]
Chapter 4.
[45
]
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `\char' on input line 2202.
[46]pdfTeX warning (ext4): destination with the same identifier (name{L.X80B684
9C835B7F19}) has been already used, duplicate ignored
<to be read again>
\relax
l.2268 \hyperdef{L}{X80B6849C835B7F19}{}
[47] [48]
Underfull \hbox (badness 10000) in paragraph at lines 2399--2408
\T1/ptm/m/n/10.95 In 1935 K. Rei-de-meis-ter [[]][] clas-si-fied lens spaces up
to ori-en-ta-tion pre-serv-ing
[]
[49] [50] [51]
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `math shift' on input line 2557.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `math shift' on input line 2557.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `\char' on input line 2557.
[52] [53]
LaTeX Font Warning: Font shape `T1/ptm/m/scit' undefined
(Font) using `T1/ptm/m/sc' instead on input line 2646.
[54] [55] [56] [57] [58] [59] [60] [61] [62] [63]
Underfull \hbox (badness 5939) in paragraph at lines 3176--3180
[]\T1/ptm/m/n/10.95 The fol-low-ing com-mands show that there are 367 com-bi-na
-to-ri-ally dif-fer-ent reg-u-lar
[]
[64]
Underfull \hbox (badness 1675) in paragraph at lines 3240--3247
\T1/ptm/m/n/10.95 topes. A poly-tope of par-tic-u-lar in-ter-est, and one that
ap-pears sev-eral times in the clas-
[]
[65] [66] [67]
Chapter 5.
[68
] [69]pdfTeX warning (ext4): destination with the same identifier (name{L.X7D51
2DA37F789B4C}) has been already used, duplicate ignored
<to be read again>
\relax
l.3496 \hyperdef{L}{X7D512DA37F789B4C}{}
[70] [71]pdfTeX warning (ext4): destin
ation with the same identifier (name{L.X7D512DA37F789B4C}) has been already use
d, duplicate ignored
<to be read again>
\relax
l.3641 \hyperdef{L}{X7D512DA37F789B4C}{}
[72] [73] [74] [75]
LaTeX Font Info: Font shape `T1/cmtt/bx/n' in size <12> not available
(Font) Font shape `T1/cmtt/m/n' tried instead on input line 3884.
[76] [77] [78]
[79]
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `\char' on input line 4110.
[80] [81]
Chapter 6.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `\char' on input line 4181.
[82
]
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `math shift' on input line 4264.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `math shift' on input line 4264.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `\char' on input line 4264.
[83] [84]
Underfull \hbox (badness 3386) in paragraph at lines 4407--4408
[]\T1/ptm/m/n/10.95 Consider the group $\OML/ztmcm/m/it/10.95 H \OT1/ztmcm/m/n/
10.95 = \OML/ztmcm/m/it/10.95 SmallGroup\OT1/ztmcm/m/n/10.95 (64\OML/ztmcm/m/it
/10.95 ; \OT1/ztmcm/m/n/10.95 134)$\T1/ptm/m/n/10.95 . Con-sider the nor-mal su
b-group $\OML/ztmcm/m/it/10.95 N \OT1/ztmcm/m/n/10.95 =
[]
[85] [86] [87] [88] [89] [90]
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `math shift' on input line 4709.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `math shift' on input line 4709.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `\char' on input line 4709.
[91] [92] [93]
Chapter 7.
[94
] [95] [96] [97] [98] [99] [100] [101] [102]
Underfull \hbox (badness 1231) in paragraph at lines 5375--5376
\T1/ptm/m/n/10.95 Suppose given a group ho-mo-mor-phism $\OML/ztmcm/m/it/10.95
f\OT1/ztmcm/m/n/10.95 : \OML/ztmcm/m/it/10.95 G[] \OMS/ztmcm/m/n/10.95 ! \OML/z
tmcm/m/it/10.95 G[]$ \T1/ptm/m/n/10.95 and a $\OML/ztmcm/m/it/10.95 G[]$\T1/cmt
t/m/n/10.95 -\T1/ptm/m/n/10.95 module $\OML/ztmcm/m/it/10.95 A$\T1/ptm/m/n/10.9
5 . Then $\OML/ztmcm/m/it/10.95 A$ \T1/ptm/m/n/10.95 is nat-
[]
[103] [104] [105]
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `\char' on input line 5507.
[106]
Underfull \hbox (badness 2452) in paragraph at lines 5558--5562
\T1/ptm/m/n/10.95 In the oc-ta-he-dral case with $\OML/ztmcm/m/it/10.95 m \OT1/
ztmcm/m/n/10.95 = 1$ \T1/ptm/m/n/10.95 we ob-tain $$H\T1/cmtt/m/n/10.95 ^\\T1/p
tm/m/n/10.95 ast(\T1/cmtt/m/n/10.95 \\T1/ptm/m/n/10.95 Gamma,\T1/cmtt/m/n/10.95
\\T1/ptm/m/n/10.95 mathbb Z) = \T1/cmtt/m/n/10.95 \\T1/ptm/m/n/10.95 mathbb
[]
Underfull \hbox (badness 2302) in paragraph at lines 5582--5586
\T1/ptm/m/n/10.95 In the tetra-he-dral case with $\OML/ztmcm/m/it/10.95 m \OT1/
ztmcm/m/n/10.95 = 1$ \T1/ptm/m/n/10.95 we ob-tain $$H\T1/cmtt/m/n/10.95 ^\\T1/p
tm/m/n/10.95 ast(\T1/cmtt/m/n/10.95 \\T1/ptm/m/n/10.95 Gamma,\T1/cmtt/m/n/10.95
\\T1/ptm/m/n/10.95 mathbb Z) = \T1/cmtt/m/n/10.95 \\T1/ptm/m/n/10.95 mathbb
[]
[107] [108]
Underfull \hbox (badness 4467) in paragraph at lines 5676--5677
\T1/ptm/m/n/10.95 A non\T1/cmtt/m/n/10.95 -\T1/ptm/m/n/10.95 standard $\OT1/ztm
cm/m/n/10.95 3$\T1/cmtt/m/n/10.95 -\T1/ptm/m/n/10.95 cocycle $\OML/ztmcm/m/it/1
0.95 f$ \T1/ptm/m/n/10.95 can be con-verted to a stan-dard one us-ing the com-m
and
[]
[109]
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `math shift' on input line 5748.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `math shift' on input line 5748.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `\char' on input line 5748.
[110] [111] [112] [113] [114] [115]
Chapter 8.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `\char' on input line 6054.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `math shift' on input line 6054.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `math shift' on input line 6054.
Underfull \hbox (badness 1975) in paragraph at lines 6057--6059
\T1/ptm/m/n/10.95 com-putes a fi-nite di-men-sional graded ring equal to the co
-ho-mol-ogy ring $\OML/ztmcm/m/it/10.95 H[]\OT1/ztmcm/m/n/10.95 (\OML/ztmcm/m/i
t/10.95 G; \U/msb/m/n/10.95 Z[]\OT1/ztmcm/m/n/10.95 ) :=
[]
[116
]
LaTeX Font Info: Font shape `OT1/ptm/bx/n' in size <12> not available
(Font) Font shape `OT1/ptm/b/n' tried instead on input line 6123.
LaTeX Font Info: Font shape `OT1/ptm/bx/n' in size <9> not available
(Font) Font shape `OT1/ptm/b/n' tried instead on input line 6123.
LaTeX Font Info: Font shape `OT1/ptm/bx/n' in size <7> not available
(Font) Font shape `OT1/ptm/b/n' tried instead on input line 6123.
[117]
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `\char' on input line 6147.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `math shift' on input line 6147.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `math shift' on input line 6147.
[118]
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `\char' on input line 6233.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `math shift' on input line 6233.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `math shift' on input line 6233.
[119] [120]
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `math shift' on input line 6359.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `math shift' on input line 6359.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `\char' on input line 6359.
[121] [122]
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `math shift' on input line 6438.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `math shift' on input line 6438.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `\char' on input line 6438.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `\char' on input line 6454.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `math shift' on input line 6454.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `math shift' on input line 6454.
[123] [124] [125] [126]
Chapter 9.
pdfTeX warning (ext4): destination with the same identifier (name{L.X7AFFB32587
D047FE}) has been already used, duplicate ignored
<to be read again>
\relax
l.6621 \hyperdef{L}{X7AFFB32587D047FE}{}
[127
] [128]
Chapter 10.
[129
] [130]
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `\char' on input line 6800.
[131] [132]
Underfull \hbox (badness 6300) in paragraph at lines 6915--6918
[]\T1/ptm/m/n/10.95 The fol-low-ing com-mands con-struct the fil-tered chain co
m-plex un-der-ly-ing the Lyn-
[]
[133] [134] [135]
Chapter 11.
[136
] [137] [138]
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `math shift' on input line 7176.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `math shift' on input line 7176.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `\char' on input line 7176.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `math shift' on input line 7176.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `subscript' on input line 7176.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `math shift' on input line 7176.
[139] [140] [141] [142]
Underfull \hbox (badness 1715) in paragraph at lines 7441--7444
\T1/ptm/m/n/10.95 An im-ple-men-ta-tion of the above method for Bieber-bach gro
ups is also avail-able for ar-bi-
[]
Underfull \hbox (badness 1152) in paragraph at lines 7441--7444
\T1/ptm/m/n/10.95 trary crys-tal-lo-graphic groups. The fol-low-ing ex-am-ple c
on-structs a res-o-lu-tion for the group
[]
[143] [144]
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `math shift' on input line 7533.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `subscript' on input line 7533.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `math shift' on input line 7533.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `math shift' on input line 7548.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `subscript' on input line 7548.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `\@ifnextchar' on input line 7548.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `math shift' on input line 7548.
Underfull \hbox (badness 3260) in paragraph at lines 7551--7555
\T1/ptm/m/n/10.95 The fol-low-ing uses fi-nite "Voronoi com-plexes" and ho-mo-l
og-i-cal per-tur-ba-tion to con-struct
[]
Underfull \hbox (badness 2717) in paragraph at lines 7551--7555
\T1/ptm/m/n/10.95 a res-o-lu-tion for $\OML/ztmcm/m/it/10.95 G \OT1/ztmcm/m/n/1
0.95 = \OML/ztmcm/m/it/10.95 SL[]\OT1/ztmcm/m/n/10.95 (\OMS/ztmcm/m/n/10.95 O\O
T1/ztmcm/m/n/10.95 (\U/msb/m/n/10.95 Q\OT1/ztmcm/m/n/10.95 ([]))$\T1/ptm/m/n/10
.95 . The fi-nite com-plexes were con-tributed in-de-pen-
[]
Underfull \hbox (badness 1132) in paragraph at lines 7551--7555
\T1/ptm/m/n/10.95 dently by A. Rahm, M. Du-tour\T1/cmtt/m/n/10.95 -\T1/ptm/m/n/
10.95 Scikiric and S. Schoe-nen-beck and are stored in the folder
[]
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `math shift' on input line 7567.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `subscript' on input line 7567.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `\@ifnextchar' on input line 7567.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `math shift' on input line 7567.
Underfull \hbox (badness 1533) in paragraph at lines 7570--7574
\T1/ptm/m/n/10.95 The fol-low-ing uses fi-nite "Voronoi com-plexes" and ho-mo-l
og-i-cal per-tur-ba-tion to con-struct a
[]
Underfull \hbox (badness 2781) in paragraph at lines 7570--7574
\T1/ptm/m/n/10.95 res-o-lu-tion for $\OML/ztmcm/m/it/10.95 G \OT1/ztmcm/m/n/10.
95 = \OML/ztmcm/m/it/10.95 PSL[]\OT1/ztmcm/m/n/10.95 (\OMS/ztmcm/m/n/10.95 O\OT
1/ztmcm/m/n/10.95 (\U/msb/m/n/10.95 Q\OT1/ztmcm/m/n/10.95 ([]))$\T1/ptm/m/n/10.
95 . The fi-nite com-plexes were con-tributed in-de-pen-
[]
Underfull \hbox (badness 1132) in paragraph at lines 7570--7574
\T1/ptm/m/n/10.95 dently by A. Rahm, M. Du-tour\T1/cmtt/m/n/10.95 -\T1/ptm/m/n/
10.95 Scikiric and S. Schoe-nen-beck and are stored in the folder
[]
[145]
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `\char' on input line 7586.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `\char' on input line 7608.
[146] [147]
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `math shift' on input line 7701.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `math shift' on input line 7701.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `\char' on input line 7701.
[148]
Chapter 12.
[149
]
Underfull \hbox (badness 2142) in paragraph at lines 7802--7802
[][]\T1/ptm/b/n/14.4 Eilenberg\T1/cmtt/m/n/14.4 -\T1/ptm/b/n/14.4 MacLane space
s as sim-pli-cial groups (not rec-om-
[]
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `\char' on input line 7802.
Underfull \hbox (badness 2922) in paragraph at lines 7808--7810
\T1/ptm/m/n/10.95 The fol-low-ing ex-am-ple con-cerns the Eilen-berg\T1/cmtt/m/
n/10.95 -\T1/ptm/m/n/10.95 MacLane space $\OML/ztmcm/m/it/10.95 X \OT1/ztmcm/m/
n/10.95 = \OML/ztmcm/m/it/10.95 K\OT1/ztmcm/m/n/10.95 (\U/msb/m/n/10.95 Z[]\OML
/ztmcm/m/it/10.95 ; \OT1/ztmcm/m/n/10.95 3)$ \T1/ptm/m/n/10.95 which is a
[]
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `\char' on input line 7829.
[150] [151]
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `math shift' on input line 7902.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `superscript' on input line 7902.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `\ast' on input line 7902.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `\pi' on input line 7902.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `math shift' on input line 7902.
[152]
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `\char' on input line 7982.
[153]
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `\char' on input line 8022.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `math shift' on input line 8022.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `math shift' on input line 8022.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `math shift' on input line 8056.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `\pi' on input line 8056.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `subscript' on input line 8056.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `superscript' on input line 8056.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `math shift' on input line 8056.
[154] [155]
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `math shift' on input line 8288.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `\pi' on input line 8288.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `subscript' on input line 8288.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `\Sigma' on input line 8288.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `math shift' on input line 8288.
[156]
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `\char' on input line 8456.
[157]
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `math shift' on input line 8528.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `superscript' on input line 8528.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `math shift' on input line 8528.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `\char' on input line 8528.
Underfull \hbox (badness 1424) in paragraph at lines 8534--8535
[]\T1/ptm/m/n/10.95 The fol-low-ing com-mands use this func-tion to show that t
here are pre-cisely $\OT1/ztmcm/m/n/10.95 49$ \T1/ptm/m/n/10.95 dis-tinct
[]
[158] [159] [160]
Chapter 13.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `\char' on input line 8611.
Package amsfonts Warning: Obsolete command \frak; \mathfrak should be used inst
ead on input line 8632.
[161
]
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `math shift' on input line 8667.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `subscript' on input line 8667.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `math shift' on input line 8667.
[162]
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `\char' on input line 8703.
[163] [164] [165] [166] [167]
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `math shift' on input line 8990.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `\ge' on input line 8990.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `math shift' on input line 8990.
[168] [169] [170] [171] [172] [173]
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `math shift' on input line 9288.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `subscript' on input line 9288.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `subscript' on input line 9288.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `math shift' on input line 9288.
[174] [175] [176] [177] [178]
Underfull \hbox (badness 10000) in paragraph at lines 9526--9529
\T1/ptm/m/n/10.95 can be used to com-pute res-o-lu-tions for groups whose data
(pro-vided by Se-bas-
[]
Underfull \hbox (badness 5862) in paragraph at lines 9526--9529
\T1/ptm/m/n/10.95 tian Schoen-nen-beck, Alexan-der Rahm and Math-ieu Du-tour) i
s stored in the di-rec-tory
[]
[179] [180] [181] [182]
Underfull \hbox (badness 3930) in paragraph at lines 9720--9721
[]\T1/ptm/m/n/10.95 The next com-mands first con-struct the con-gru-ence sub-gr
oup $\OT1/ztmcm/m/n/10.95 ^^@[](\OML/ztmcm/m/it/10.95 I\OT1/ztmcm/m/n/10.95 )$
\T1/ptm/m/n/10.95 of in-dex $\OT1/ztmcm/m/n/10.95 144$ \T1/ptm/m/n/10.95 in
[]
[183] [184] [185]
Chapter 14.
pdfTeX warning (ext4): destination with the same identifier (name{L.X858B1B5D85
06FE81}) has been already used, duplicate ignored
<to be read again>
\relax
l.9841 \hyperdef{L}{X858B1B5D8506FE81}{}
[186
] [187] [188]
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `math shift' on input line 9998.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `subscript' on input line 9998.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `subscript' on input line 9998.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `math shift' on input line 9998.
[189] [190] [191] [192] [193] [194]
Chapter 15.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `\char' on input line 10306.
[195
] [196] [197]
Chapter 16.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `\char' on input line 10407.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `\char' on input line 10411.
[198
] [199] [200] [201]
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `\char' on input line 10633.
[202] [203] [204] [205] [206] [207] (./HapTutorial.bbl (./HapTutorial.brf)
\tf@brf=\write8
\openout8 = `HapTutorial.brf'.
[208] [209
]
Underfull \hbox (badness 1527) in paragraph at lines 186--186
[]\T1/ptm/m/n/10.95 E. Moise. \T1/ptm/m/it/10.95 Affine struc-tures in 3\T1/cm
tt/m/it/10.95 -\T1/ptm/m/it/10.95 manifolds V. The tri-an-gu-la-tion the-o-rem
and
[]
[210]
Underfull \hbox (badness 10000) in paragraph at lines 291--291
[]\T1/ptm/m/n/10.95 W. Thurston. \T1/ptm/m/it/10.95 The Ge-om-e-try and Topol-
ogy of Three\T1/cmtt/m/it/10.95 -\T1/ptm/m/it/10.95 Manifolds\T1/ptm/m/n/10.95
.
[]
[211]) [212] (./HapTutorial.ind)
Package atveryend Info: Empty hook `BeforeClearDocument' on input line 10953.
Package atveryend Info: Empty hook `AfterLastShipout' on input line 10953.
(./HapTutorial.aux)
Package atveryend Info: Executing hook `AtVeryEndDocument' on input line 10953.
Package atveryend Info: Executing hook `AtEndAfterFileList' on input line 10953
.
Package rerunfilecheck Info: File `HapTutorial.out' has not changed.
(rerunfilecheck) Checksum: 9B73561A31C89F5417FDE0401B6D8579;15302.
Package rerunfilecheck Info: File `HapTutorial.brf' has not changed.
(rerunfilecheck) Checksum: B5EC6FAC186DDC4602DE11AE060EA07B;3252.
Package atveryend Info: Empty hook `AtVeryVeryEnd' on input line 10953.
)
Here is how much of TeX's memory you used:
8465 strings out of 483107
124044 string characters out of 5964630
381528 words of memory out of 5000000
22599 multiletter control sequences out of 15000+600000
625073 words of font info for 167 fonts, out of 8000000 for 9000
59 hyphenation exceptions out of 8191
47i,10n,37p,1035b,655s stack positions out of 5000i,500n,10000p,200000b,80000s
</home/graham/.texlive2019/texmf-var/fonts/pk/ljfour/jknappen/ec/ectt1200.60
0pk> </home/graham/.texlive2019/texmf-var/fonts/pk/ljfour/jknappen/ec/ecit1095.
600pk> </home/graham/.texlive2019/texmf-var/fonts/pk/ljfour/jknappen/ec/ectc109
5.600pk> </home/graham/.texlive2019/texmf-var/fonts/pk/ljfour/jknappen/ec/ectt1
440.600pk> </home/graham/.texlive2019/texmf-var/fonts/pk/ljfour/jknappen/ec/ect
t1000.600pk>{/usr/share/texlive/texmf-dist/fonts/enc/dvips/base/8r.enc} </home/
graham/.texlive2019/texmf-var/fonts/pk/ljfour/jknappen/ec/ectt1095.600pk> </hom
e/graham/.texlive2019/texmf-var/fonts/pk/ljfour/jknappen/ec/ectt2488.600pk></us
r/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmex10.pfb></usr/shar
e/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmmi10.pfb></usr/share/texl
ive/texmf-dist/fonts/type1/public/amsfonts/cm/cmr10.pfb></usr/share/texlive/tex
mf-dist/fonts/type1/public/amsfonts/cm/cmss10.pfb></usr/share/texlive/texmf-dis
t/fonts/type1/public/amsfonts/cm/cmss8.pfb></usr/share/texlive/texmf-dist/fonts
/type1/public/amsfonts/cm/cmsy10.pfb></usr/share/texlive/texmf-dist/fonts/type1
/public/amsfonts/euler/eufm10.pfb></usr/share/texlive/texmf-dist/fonts/type1/pu
blic/amsfonts/symbols/msam10.pfb></usr/share/texlive/texmf-dist/fonts/type1/pub
lic/amsfonts/symbols/msbm10.pfb></usr/share/texlive/texmf-dist/fonts/type1/publ
ic/rsfs/rsfs10.pfb></usr/share/texlive/texmf-dist/fonts/type1/urw/symbol/usyr.p
fb></usr/share/texlive/texmf-dist/fonts/type1/urw/symbol/usyr.pfb></usr/share/t
exlive/texmf-dist/fonts/type1/urw/times/utmb8a.pfb></usr/share/texlive/texmf-di
st/fonts/type1/urw/times/utmr8a.pfb></usr/share/texlive/texmf-dist/fonts/type1/
urw/times/utmr8a.pfb></usr/share/texlive/texmf-dist/fonts/type1/urw/times/utmri
8a.pfb>
Output written on HapTutorial.pdf (212 pages, 831930 bytes).
PDF statistics:
2700 PDF objects out of 2984 (max. 8388607)
2279 compressed objects within 23 object streams
688 named destinations out of 1000 (max. 500000)
1449 words of extra memory for PDF output out of 10000 (max. 10000000)
|