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
|
--#############################################################################
--# #
--# master #
--# #
--# This is not a Lout setup file; it is the union of all Lout setup files. #
--# There are sed scripts in directory scripts for generating all the Lout #
--# setup files from this one file; they are invoked by the Lout make file, #
--# but because not everyone has sed, they are made before distributing #
--# Lout, not during installation. #
--# #
--# If you are trying to do this yourself it's not too hard. First, the #
--# complete list of setup-file configuration choices you have to make is #
--# #
--# Choose one of these Choose any combination of these #
--# ------------------- -------------------------------------- #
--# doc cprint (C program printing) #
--# report eiffelprint (Eiffel program printing) #
--# book diag (Diagrams) #
--# slides #
--# picture #
--# #
--# Having decided on your choices (you must choose exactly one from the #
--# first column, and any subset of the second column), for each <choice> #
--# that you DON'T want, delete everything from --<choice>begin to #
--# --<choice>end. Then delete all lines beginning with --. The result #
--# will be a Lout setup file. #
--# #
--# The setup files that come with Lout are created exactly like this. #
--# Note that you do not have to choose between plain text and PostScript #
--# because the options cover both correctly as they are. #
--# #
--# Jeffrey H. Kingston #
--# 24 June 1996 #
--# #
--#############################################################################
--
###############################################################################
# #
# Lout setup file #
# #
# This Lout setup file contains everything needed to format documents #
# using the following setup file configuration choice(s): #
# #
--docbegin
# doc Ordinary document #
--docend
--reportbegin
# report Technical report #
--reportend
--bookbegin
# book Book #
--bookend
--slidesbegin
# slides Overhead transparencies #
--slidesend
--picturebegin
# picture Stand-alone illustration #
--pictureend
--cprintbegin
# cprint C program printing #
--cprintend
--eiffelprintbegin
# eiffelprint Eiffel program printing #
--eiffelprintend
--diagbegin
# diag Diagram printing #
--diagend
# #
# It will work correctly on plain text documents as well as ordinary ones. #
# It was probably generated automatically from file include/master by a sed #
# script that selected this combination of the available choices. #
# #
# Jeffrey H. Kingston #
# 24 June 1996 #
# #
###############################################################################
###############################################################################
# #
# @SysInclude commands for standard packages. #
# #
###############################################################################
@SysInclude { fontdefs } # font definitions
@SysInclude { langdefs } # language definitions
@SysInclude { dl } # DocumentLayout package
--docbegin
@SysInclude { docf } # OrdinaryLayout extension
--docend
--reportbegin
@SysInclude { reportf } # ReportLayout extension
--reportend
--bookbegin
@SysInclude { bookf } # BookLayout extension
--bookend
--slidesbegin
@SysInclude { slidesf } # OverheadLayout extension
--slidesend
--picturebegin
@SysInclude { picturef } # IllustrationLayout extension
--pictureend
# @SysInclude { tab } # @Tab table formatter
# @SysInclude { eq } # @Eq equation formatter
# @SysInclude { fig } # @Fig advanced graphics (NOW OBSOLETE)
# @SysInclude { graph } # @Graph graph drawing
--cprintbegin
@SysInclude { cprint } # @CPrint C and C++ programs
--cprintend
--eiffelprintbegin
@SysInclude { eprint } # @EiffelPrint
--eiffelprintend
--diagbegin
@SysInclude { diag } # @Diag
--diagend
# @SysInclude { pas } # @Pas Pascal programs
###############################################################################
# #
# @Include command for reading personal definitions from current directory. #
# #
###############################################################################
@Include { mydefs }
###############################################################################
# #
# The @DocumentLayout @Use clause - overall document format options. #
# #
###############################################################################
@Use { @DocumentLayout
# @InitialFont { Times Base 12p } # initial font
--slidesbegin
@InitialFont { Times Base 20p } # initial font
--slidesend
# @InitialBreak {{adjust 1.2fx hyphen} @OrIfPlain {ragged 1fx nohyphen}}
--slidesbegin
@InitialBreak { ragged 1.20fx nohyphen} # initial break
--slidesend
# @InitialSpace { lout } # initial space style
# @InitialLanguage { English } # initial language
# @InitialColour { black } # initial colour
# @OptimizePages { No } # optimize page breaks?
# @HeadingFont { Bold } # font for @Heading
# @ParaGap { 1.3vx @OrIfPlain 1f } # gap between paragraphs
# @ParaIndent { 2.00f @OrIfPlain 5s } # first-line indent for @PP
# @DisplayGap { 1.00v @OrIfPlain 1f } # gap above, below displays
# @DisplayIndent { 2.00f @OrIfPlain 5s } # @IndentedDisplay indent
# @DefaultIndent { 0.5rt } # @Display indent
# @DisplayNumStyle { (num) } # style of display numbers
# @WideIndent { 4.00f @OrIfPlain 10s } # @WideTaggedList indent
# @VeryWideIndent { 8.00f @OrIfPlain 20s } # @VeryWideTaggedList indent
# @ListGap { 1.00v @OrIfPlain 1f } # gap between list items
# @ListIndent { 0s } # indent of list items
# @ListRightIndent { 0s } # right indent of list items
# @ListLabelWidth { 2.00f @OrIfPlain 5s } # width allowed for list tags
# @NumberSeparator { . } # separates nums like 2.3.7
# @PageType { A4 @OrIfPlain Other} # page type (width, height)
# @PageWidth { 80s } # page width if type Other
# @PageHeight { 66f } # page height if type Other
# @PageOrientation { Portrait } # Portrait, Landscape, etc.
# @PageBackground { } # background of each page
# @TopMargin { 2.5c @OrIfPlain 6f } # top margin of all pages
# @FootMargin { 2.5c @OrIfPlain 6f } # bottom margin of all pages
--slidesbegin
@FootMargin { 5.00c } # bottom margin of all pages
--slidesend
# @OddLeftMargin { 2.5c @OrIfPlain 10s } # left margin of odd pages
# @OddRightMargin { 2.5c @OrIfPlain 10s } # right margin of odd pages
# @EvenLeftMargin { 2.5c @OrIfPlain 10s } # left margin of even pages
# @EvenRightMargin { 2.5c @OrIfPlain 10s } # right margin of even pages
# @PageBoxType { None } # None Box CurveBox ShadowBox
# @PageBoxMargin { 1.00c } # page box margin
# @PageBoxLineWidth { } # page box line thickness
# @PageBoxPaint { none } # page box paint
# @PageBoxShadow { 0.60c } # shadow margin if ShadowBox
# @ColumnNumber { 1 } # number of columns (1 to 10)
# @ColumnGap { 1.00c @OrIfPlain 6s } # column gap
# @FigureLocation { PageTop } # default figure location
# @TableLocation { PageTop } # default table location
# @FigureFormat { @CC @Body } # default figure format
# @TableFormat { @CC @Body } # default table format
# @FigureWord { figure } # "Figure" word else anything
# @TableWord { table } # "Table" word else anything
# @FigureNumbers { Arabic } # method of numbering figures
# @TableNumbers { Arabic } # method of numbering tables
# @FigureCaptionPos { Below } # Above or Below
# @TableCaptionPos { Below } # Above or Below
# @CaptionFont { } # figure, table caption font
# @CaptionBreak { } # figure, table caption break
# @CaptionFormat { @B { number @DotSep @OneCol } } # figure, table caption format
# @MakeFigureContents { No } # list of figures at start
# @MakeTableContents { No } # list of tables at start
# @MakeContents { No } # make contents? Yes or No
--bookbegin
@MakeContents { Yes } # make contents? Yes or No
--bookend
# @ContentsGap { 0.20v @OrIfPlain 0f } # extra gap above minor entry
# @ContentsGapAbove { 0.80v @OrIfPlain 1f } # extra gap above major entry
# @ContentsGapBelow { 0.00v @OrIfPlain 0f } # extra gap below major entry
# @ContentsFormat { number @DotSep title } # contents entry format
# @ContentsLeader { .. } # leader symbol in contents
# @ContentsLeaderGap { 4s @OrIfPlain 2s } # gap between leaders
# @ContentsRightWidth { 3f @OrIfPlain 6s } # page numbers column width
# @MakeReferences { Yes } # make references? Yes or No
# @RefCiteStyle { [cite] } # citation style
# @RefCiteLabels { @RefNum } # citation items
# @RefNumbers { Arabic } # reference numbers
# @RefListFormat { Labels } # NoLabels, Labels, etc.
# @RefListLabels { [@RefNum] } # ref list label format
# @RefListTitle { references } # title of reference list
# @ChapRefListTitle { references } # title of chapter ref list
# @RefListIndent { 0s } # indent to left of labels
# @RefListRightIndent { 0s } # indent to right of items
# @RefListGap { 1.00v @OrIfPlain 1f } # gap between ref list items
# @RefListFont { } # font used in reference list
# @RefListBreak { } # break style of ref list
# @RefListLabelWidth { 2.00f @OrIfPlain 5s } # Labels column width
# @RefListSortKey { @Tag } # sorting key
# @MakeIndex { No } # make index? Yes or No
--bookbegin
@MakeIndex { Yes } # make index? Yes or No
--bookend
# @IndexFont { } # index entries font
# @IndexBreak { {oragged 1.2fx} @OrIfPlain {oragged 1fx} } # and break
# @IndexColumnNumber { 2 } # index columns (1 to 10)
# @IndexColumnGap { 1.00c @OrIfPlain 6s } # index column gap
# @MakeIndexA { No } # make index A? Yes or No
# @IndexAFont { } # index A entries font
# @IndexABreak { {oragged 1.2fx} @OrIfPlain {oragged 1fx} } # and break
# @IndexAColumnNumber { 2 } # index A columns (1 to 10)
# @IndexAColumnGap { 1.00c @OrIfPlain 6s } # index A column gap
# @MakeIndexB { No } # make index B? Yes or No
# @IndexBFont { } # index B entries font
# @IndexBBreak { {oragged 1.2fx} @OrIfPlain {oragged 1fx} } # and break
# @IndexBColumnNumber { 2 } # index B columns (1 to 10)
# @IndexBColumnGap { 1.00c @OrIfPlain 6s } # index B column gap
# @TopGap { 0.75c @OrIfPlain 2f } # gap between figures
# @MidGap { 0.75c @OrIfPlain 2f } # gap above/below body text
# @FootNoteNumbers { Arabic } # footnote numbers
# @FootNoteThrough { No } # numbered through chapter?
# @FootNoteLocation { ColFoot } # where the footnote appears
# @FootNoteFont { 0.80f } # font for footnotes
# @FootNoteBreak { 1.2fx @OrIfPlain 1fx } # break for footnotes
# @FootLen { 2.00c @OrIfPlain 10s } # length of footnote line
# @FootAboveGap { 1.00v } # gap above footnote line
# @FootGap { 0.20c @OrIfPlain 1fx } # gap between footnotes
# @MarginNoteFont { 0.80f } # font of margin notes
# @MarginNoteBreak { ragged 1.10fx } # break style of margin notes
# @MarginNoteHGap { 0.5c } # horizontal gap to notes
# @MarginNoteVGap { 1.00v } # min vertical gap between
# @MarginNoteWidth { 1.50c } # width of margin notes
# @EndNoteNumbers { Arabic } # endnote numbers
# @EndNoteFont { 0.80f } # font of endnotes
# @EndNoteBreak { 1.2fx @OrIfPlain 1fx } # break for endnotes
# @EndNoteGap { 0.20c @OrIfPlain 1f } # gap between endnotes
# @TheoremWord { theorem } # "Theorem" word, etc.
# @DefinitionWord { definition } # "Definition" word, etc.
# @ClaimWord { claim } # "Claim" word, etc.
# @PropositionWord { proposition } # "Proposition" word, etc.
# @LemmaWord { lemma } # "Lemma" word, etc.
# @CorollaryWord { corollary } # "Corollary" word, etc.
# @ExampleWord { example } # "Example" word, etc.
# @ProofWord { proof } # "Proof" word, etc.
# @PageHeaders { Simple } # None Simple Titles NoTitles
--bookbegin
@PageHeaders { Titles } # None Simple Titles NoTitles
--bookend
--slidesbegin
@PageHeaders { Titles } # None Simple Titles NoTitles
--slidesend
# @PageNumbers { Arabic } # page numbers
# @FirstPageNumber { 1 } # number of first page
# @IntroPageNumbers { Roman } # intro page numbers
# @IntroFirstPageNumber{ 1 } # number of first intro page
# @StructPageNums { No } # make structured page numbers
# @OddTop { @Centre{- @PageNum -} } # Simple page headers
# @OddFoot { @Null }
# @EvenTop { @Centre{- @PageNum -} }
# @EvenFoot { @Null }
# @StartOddTop { @Null }
# @StartOddFoot { @Null }
# @StartEvenTop { @Null }
# @StartEvenFoot { @Null }
# @IntroOddTop { @Null }
# @IntroOddFoot { @Null }
# @IntroEvenTop { @Null }
# @IntroEvenFoot { @Null }
# @IntroStartOddTop { @Null }
# @IntroStartOddFoot { @Null }
# @IntroStartEvenTop { @Null }
# @IntroStartEvenFoot { @Null }
# Titles, NoTitles headers
# @RunningOddTop { @I {@MinorNum @DotSep @MinorTitle} @Right @B @PageNum }
--slidesbegin
@RunningOddTop { 8p @Font {@MajorTitle @MinorNum (ctd.) @Right @PageNum} }
--slidesend
# @RunningOddFoot { @Null }
--slidesbegin
@RunningOddFoot { @Null }
--slidesend
# @RunningEvenTop { @B @PageNum @Right @I {@MajorNum @DotSep @MajorTitle} }
--slidesbegin
@RunningEvenTop { 8p @Font {@MajorTitle @MinorNum (ctd.) @Right @PageNum} }
--slidesend
# @RunningEvenFoot { @Null }
--slidesbegin
@RunningEvenFoot { @Null }
--slidesend
# @RunningStartOddTop { @Null }
--slidesbegin
@RunningStartOddTop { 8p @Font { @MajorTitle @MinorNum @Right @PageNum } }
--slidesend
# @RunningStartOddFoot { @Centre { Bold 0.8f } @Font @PageNum }
--slidesbegin
@RunningStartOddFoot { @Null }
--slidesend
# @RunningStartEvenTop { @Null }
--slidesbegin
@RunningStartEvenTop { 8p @Font { @MajorTitle @MinorNum @Right @PageNum } }
--slidesend
# @RunningStartEvenFoot { @Centre { Bold 0.8f } @Font @PageNum }
--slidesbegin
@RunningStartEvenFoot { @Null }
--slidesend
# @RunningIntroOddTop { @Null }
# @RunningIntroOddFoot { @Right @PageNum }
# @RunningIntroEvenTop { @Null }
# @RunningIntroEvenFoot { @PageNum }
# @RunningIntroStartOddTop { @Null }
# @RunningIntroStartOddFoot { @Null }
# @RunningIntroStartEvenTop { @Null }
# @RunningIntroStartEvenFoot { @Null }
}
--docbegin
###############################################################################
# #
# The @OrdinaryLayout @Use clause - options specific to ordinary documents. #
# #
###############################################################################
@Use { @OrdinaryLayout
# @IndexWord { index } # word for "Index" word etc.
# @IndexAWord { index } # word for "Index" (A)
# @IndexBWord { index } # word for "Index" (B)
# @AppendixWord { appendix } # word for "Appendix"
# @SectionNumbers { Arabic } # kind of section numbers
# @FirstSectionNumber { 1 } # first section num (Arabic)
# @SubSectionNumbers { Arabic } # kind of subsection numbers
# @FirstSubSectionNumber { 1 } # first subsect num (Arabic)
# @SubSubSectionNumbers { Arabic } # kind of sub-subsect numbers
# @FirstSubSubSectionNumber { 1 } # first subsub. num (Arabic)
# @AppendixNumbers { UCAlpha } # kind of appendix numbers
# @FirstAppendixNumber { 1 } # first appendix num (Arabic)
# @SubAppendixNumbers { Arabic } # kind of subappendix numbers
# @FirstSubAppendixNumber { 1 } # first sub-app. num (Arabic)
# @SubSubAppendixNumbers { Arabic } # kind of sub-subapp. numbers
# @FirstSubSubAppendixNumber { 1 } # first sub-sub. num (Arabic)
# @SectionHeadingFont { Bold } # section head font
# @SectionHeadingBreak { ragged 1.2fx nohyphen } # section head break
# @SectionHeadingFormat { number @DotSep title } # section head fmt
# @SubSectionHeadingFont { Bold } # subsect head font
# @SubSectionHeadingBreak { ragged 1.2fx nohyphen } # subsect head break
# @SubSectionHeadingFormat { number @DotSep title } # subsect head fmt
# @SubSubSectionHeadingFont { Slope } # sub-ss. head font
# @SubSubSectionHeadingBreak { ragged 1.2fx nohyphen } # sub-ss. head break
# @SubSubSectionHeadingFormat { number @DotSep title } # sub-ss. head fmt
# @AppendixHeadingFont { Bold } # appendix head font
# @AppendixHeadingBreak { ragged 1.2fx nohyphen } # appendix head break
# @AppendixHeadingFormat { number @DotSep title } # appendix head fmt
# @SubAppendixHeadingFont { Bold } # subapp. head font
# @SubAppendixHeadingBreak { ragged 1.2fx nohyphen } # subapp. head break
# @SubAppendixHeadingFormat { number @DotSep title } # subapp. head format
# @SubSubAppendixHeadingFont { Slope } # sub-sa. head font
# @SubSubAppendixHeadingBreak { ragged 1.2fx nohyphen } # sub-sa. head break
# @SubSubAppendixHeadingFormat{ number @DotSep title } # sub-sa. head fmt
# @ReferencesHeadingFont { Bold } # refs head font
# @ReferencesHeadingBreak { ragged 1.2fx nohyphen } # refs head break
# @ReferencesHeadingFormat { title } # refs head format
# @IndexHeadingFont { Bold } # index head font
# @IndexHeadingBreak { ragged 1.2fx nohyphen } # index head break
# @IndexHeadingFormat { title } # index head format
# @IndexAHeadingFont { Bold } # index A head font
# @IndexAHeadingBreak { ragged 1.2fx nohyphen } # index A head break
# @IndexAHeadingFormat { title } # index A head fmt
# @IndexBHeadingFont { Bold } # index B head font
# @IndexBHeadingBreak { ragged 1.2fx nohyphen } # index B head break
# @IndexBHeadingFormat { title } # index B head fmt
# @SectionGap { 2.0v @OrIfPlain 3f } # between sections
# @SubSectionGap { 1.5v @OrIfPlain 2f } # between subsects
# @SubSubSectionGap { 1.5v @OrIfPlain 2f } # between sub-subs.
# @AppendixGap { 2.0v @OrIfPlain 3f } # between appendices
# @SubAppendixGap { 1.5v @OrIfPlain 2f } # between subappendices
# @SubSubAppendixGap { 1.5v @OrIfPlain 2f } # between sub-subapps
# @SectionInContents { Yes } # add sections to contents
# @SubSectionInContents { Yes } # add subsections to contents
# @SubSubSectionInContents { No } # add sub-subsects to contents
# @AppendixInContents { Yes } # add appendices to contents
# @SubAppendixInContents { Yes } # add subappendices to contents
# @SubSubAppendixInContents { No } # add sub-subapps to contents
# @ReferencesInContents { Yes } # add ref. section to contents
# @IndexInContents { Yes } # add index to contents
# @IndexAInContents { Yes } # add index A to contents
# @IndexBInContents { Yes } # add index B to contents
# @SectionNumInTheorems { No } # theorem num has section num
# @SubSectionNumInTheorems { No } # theorem num has subsect num
# @SubSubSectionNumInTheorems { No } # theorem num has sub-ss. num
# @AppendixNumInTheorems { No } # theorem num has appendix num
# @SubAppendixNumInTheorems { No } # theorem num has sub-app num
# @SubSubAppendixNumInTheorems{ No } # theorem num has sub-sa. num
# @SectionNumInDisplays { Yes } # display num has section num
# @SubSectionNumInDisplays { No } # display num has subsect num
# @SubSubSectionNumInDisplays { No } # display num has sub-ss. num
# @AppendixNumInDisplays { Yes } # display num has appendix num
# @SubAppendixNumInDisplays { Yes } # display num has sub-app num
# @SubSubAppendixNumInDisplays{ No } # display num has sub-sa. num
# @SectionNumInFigures { No } # figure num has section num
# @SubSectionNumInFigures { No } # figure num has subsect num
# @SubSubSectionNumInFigures { No } # figure num has sub-ss. num
# @AppendixNumInFigures { No } # figure num has appendix num
# @SubAppendixNumInFigures { No } # figure num has sub-app num
# @SubSubAppendixNumInFigures { No } # figure num has sub-sa. num
# @SectionNumInTables { No } # table num has section num
# @SubSectionNumInTables { No } # table num has subsect num
# @SubSubSectionNumInTables { No } # table num has sub-ss. num
# @AppendixNumInTables { No } # table num has appendix num
# @SubAppendixNumInTables { No } # table num has sub-app num
# @SubSubAppendixNumInTables { No } # table num has sub-sa. num
# @SectionNumInRunners { Yes } # runners have section num
# @SubSectionNumInRunners { No } # runners have subsect num
# @SubSubSectionNumInRunners { No } # runners have sub-ss. num
# @AppendixNumInRunners { Yes } # runners have appendix num
# @SubAppendixNumInRunners { No } # runners have sub-app num
# @SubSubAppendixNumInRunners { No } # runners have sub-sa. num
# @SectionPrefix { } # for structured page nums
# @AppendixPrefix { } # for structured page nums
# @ReferencesPrefix { } # for structured page nums
# @IndexPrefix { } # for structured page nums
# @IndexAPrefix { } # for structured page nums
# @IndexBPrefix { } # for structured page nums
}
--docend
--reportbegin
###############################################################################
# #
# The @ReportLayout @Use clause - options specific to technical reports. #
# #
###############################################################################
@Use { @ReportLayout
# @CoverSheet { Yes } # make cover sheet
# @ContentsSeparate { No } # contents on separate pages
# @DateLine { No } # Yes, No, or a date
# @ReferencesBeforeAppendices { No } # references before appendices
# @AbstractWord { abstract } # word for "Abstract"
# @ContentsWord { contents } # word for "Contents"
# @AppendixWord { appendix } # word for "Appendix"
# @IndexWord { index } # word for "Index"
# @IndexAWord { index } # word for "Index" (A)
# @IndexBWord { index } # word for "Index" (B)
# @SectionNumbers { Arabic } # kind of section numbers
# @FirstSectionNumber { 1 } # first section num (Arabic)
# @SubSectionNumbers { Arabic } # kind of subsection numbers
# @FirstSubSectionNumber { 1 } # first subsect num (Arabic)
# @SubSubSectionNumbers { Arabic } # kind of sub-subsect numbers
# @FirstSubSubSectionNumber { 1 } # first subsub. num (Arabic)
# @AppendixNumbers { UCAlpha } # kind of appendix numbers
# @FirstAppendixNumber { 1 } # first appendix num (Arabic)
# @SubAppendixNumbers { Arabic } # kind of subappendix numbers
# @FirstSubAppendixNumber { 1 } # first sub-app. num (Arabic)
# @SubSubAppendixNumbers { Arabic } # kind of sub-subapp. numbers
# @FirstSubSubAppendixNumber { 1 } # first sub-sub. num (Arabic)
# @AbstractHeadingFont { Bold } # abstract head font
# @AbstractHeadingBreak { ragged 1.2fx nohyphen } # abstract head break
# @AbstractHeadingFormat { title } # abstract head fmt
# @ContentsHeadingFont { Bold } # contents head font
# @ContentsHeadingBreak { ragged 1.2fx nohyphen } # contents head break
# @ContentsHeadingFormat { title } # contents head fmt
# @SectionHeadingFont { Bold } # section head font
# @SectionHeadingBreak { ragged 1.2fx nohyphen } # section head break
# @SectionHeadingFormat { number @DotSep title } # section head fmt
# @SubSectionHeadingFont { Bold } # subsection head font
# @SubSectionHeadingBreak { ragged 1.2fx nohyphen } # subsection head break
# @SubSectionHeadingFormat { number @DotSep title } # subsection head fmt
# @SubSubSectionHeadingFont { Slope } # sub-subs. head font
# @SubSubSectionHeadingBreak { ragged 1.2fx nohyphen } # sub-subs. head break
# @SubSubSectionHeadingFormat { number @DotSep title } # sub-subs. head fmt
# @AppendixHeadingFont { Bold } # appendix head font
# @AppendixHeadingBreak { ragged 1.2fx nohyphen } # appendix head break
# @AppendixHeadingFormat { number @DotSep title } # appendix head fmt
# @SubAppendixHeadingFont { Bold } # subapp. head font
# @SubAppendixHeadingBreak { ragged 1.2fx nohyphen } # subapp. head break
# @SubAppendixHeadingFormat { number @DotSep title } # subapp. head fmt
# @SubSubAppendixHeadingFont { Slope } # sub-subapp. head font
# @SubSubAppendixHeadingBreak { ragged 1.2fx nohyphen } # sub-subapp head break
# @SubSubAppendixHeadingFormat{ number @DotSep title } # sub-subapp. head fmt
# @ReferencesHeadingFont { Bold } # references head font
# @ReferencesHeadingBreak { ragged 1.2fx nohyphen } # references head break
# @ReferencesHeadingFormat { title } # references head fmt
# @IndexHeadingFont { Bold } # index head font
# @IndexHeadingBreak { ragged 1.2fx nohyphen } # index head break
# @IndexHeadingFormat { title } # index head fmt
# @IndexAHeadingFont { Bold } # index A head font
# @IndexAHeadingBreak { ragged 1.2fx nohyphen } # index A head break
# @IndexAHeadingFormat { title } # index A head fmt
# @IndexBHeadingFont { Bold } # index B head font
# @IndexBHeadingBreak { ragged 1.2fx nohyphen } # index B head break
# @IndexBHeadingFormat { title } # index B head fmt
# @SectionGap { 2.0v @OrIfPlain 3f } # between sections
# @SubSectionGap { 1.5v @OrIfPlain 2f } # between subsects
# @SubSubSectionGap { 1.5v @OrIfPlain 2f } # between sub-subs.
# @AppendixGap { 2.0v @OrIfPlain 3f } # between appendices
# @SubAppendixGap { 1.5v @OrIfPlain 2f } # between subappendices
# @SubSubAppendixGap { 1.5v @OrIfPlain 2f } # between sub-subapps
# @SectionInContents { Yes } # add sections to contents
# @SubSectionInContents { Yes } # add subsections to contents
# @SubSubSectionInContents { No } # add sub-subsects to contents
# @AppendixInContents { Yes } # add appendices to contents
# @SubAppendixInContents { Yes } # add subappendices to contents
# @SubSubAppendixInContents { No } # add sub-subapps to contents
# @ReferencesInContents { Yes } # add references to contents
# @IndexInContents { Yes } # add index to contents
# @IndexAInContents { Yes } # add index A to contents
# @IndexBInContents { Yes } # add index B to contents
# @SectionNumInTheorems { No } # theorem num has section num
# @SubSectionNumInTheorems { No } # theorem num has subsect num
# @SubSubSectionNumInTheorems { No } # theorem num has sub-ss. num
# @AppendixNumInTheorems { No } # theorem num has appendix num
# @SubAppendixNumInTheorems { No } # theorem num has sub-app num
# @SubSubAppendixNumInTheorems{ No } # theorem num has sub-sa. num
# @SectionNumInDisplays { Yes } # display num has section num
# @SubSectionNumInDisplays { No } # display num has subsect num
# @SubSubSectionNumInDisplays { No } # display num has sub-ss. num
# @AppendixNumInDisplays { Yes } # display num has appendix num
# @SubAppendixNumInDisplays { No } # display num has sub-app num
# @SubSubAppendixNumInDisplays{ No } # display num has sub-sa. num
# @SectionNumInFigures { Yes } # figure num has section num
# @SubSectionNumInFigures { No } # figure num has subsect num
# @SubSubSectionNumInFigures { No } # figure num has sub-ss. num
# @AppendixNumInFigures { Yes } # figure num has appendix num
# @SubAppendixNumInFigures { No } # figure num has sub-app num
# @SubSubAppendixNumInFigures { No } # figure num has sub-sa. num
# @SectionNumInTables { Yes } # table num has section num
# @SubSectionNumInTables { No } # table num has subsect num
# @SubSubSectionNumInTables { No } # table num has sub-ss. num
# @AppendixNumInTables { Yes } # table num has appendix num
# @SubAppendixNumInTables { No } # table num has sub-app num
# @SubSubAppendixNumInTables { No } # table num has sub-sa. num
# @SectionNumInRunners { Yes } # runners have section num
# @SubSectionNumInRunners { No } # runners have subsect num
# @SubSubSectionNumInRunners { No } # runners have sub-ss. num
# @AppendixNumInRunners { Yes } # runners have appendix num
# @SubAppendixNumInRunners { No } # runners have sub-app num
# @SubSubAppendixNumInRunners { No } # runners have sub-sa. num
# @FigureContentsPrefix { } # for structured page nums
# @TableContentsPrefix { } # for structured page nums
# @SectionPrefix { } # for structured page nums
# @AppendixPrefix { } # for structured page nums
# @ReferencesPrefix { } # for structured page nums
# @IndexPrefix { } # for structured page nums
# @IndexAPrefix { } # for structured page nums
# @IndexBPrefix { } # for structured page nums
}
--reportend
--bookbegin
###############################################################################
# #
# The @BookLayout @Use clause - options specific to books. #
# #
###############################################################################
@Use { @BookLayout
# @TitlePageFont { Helvetica Base} # title page font (not size)
# @SeparateIntroNumbering { Yes } # separate intro page numbers
# @ChapterStartPages { Any } # Any, Odd, or Even
# @ReferencesBeforeAppendices { No } # references before appendices
# @PrefaceWord { preface } # word for "Preface"
# @ContentsWord { contents } # word for "Contents"
# @FigureListWord { figurelist } # word for "List of Figures"
# @TableListWord { tablelist } # word for "List of Tables"
# @IntroductionWord { introduction } # word for "Introduction"
# @ChapterWord { chapter } # word for "Chapter"
# @AppendixWord { appendix } # word for "Appendix"
# @IndexWord { index } # word for "Index"
# @IndexAWord { index } # word for "Index" (A)
# @IndexBWord { index } # word for "Index" (B)
# @ChapterNumbers { Arabic } # kind of chapter numbers
# @FirstChapterNumber { 1 } # first chapter number (Arabic)
# @SectionNumbers { Arabic } # kind of section numbers
# @FirstSectionNumber { 1 } # first section number (Arabic)
# @SubSectionNumbers { Arabic } # kind of subsection numbers
# @FirstSubSectionNumber { 1 } # first subsect number (Arabic)
# @SubSubSectionNumbers { Arabic } # kind of sub-subs. numbers
# @FirstSubSubSectionNumber { 1 } # first sub-sub number (Arabic)
# @AppendixNumbers { UCAlpha } # kind of appendix numbers
# @FirstAppendixNumber { 1 } # first appendix num (Arabic)
# @SubAppendixNumbers { Arabic } # kind of subappendix numbers
# @FirstSubAppendixNumber { 1 } # first sub-app num (Arabic)
# @SubSubAppendixNumbers { Arabic } # kind of sub-subapp. numbers
# @FirstSubSubAppendixNumber { 1 } # first sub-sub num (Arabic)
# @PartHeadingFont { Helvetica Base 2.50f } # part head font
# @PartHeadingBreak { clines 1.2fx nohyphen } # part head break
# @PartHeadingFormat { @CD number @DP @CD title } # part head format
# @ChapterHeadingFont { Bold 2.00f } # chapter head font
# @ChapterHeadingBreak { ragged 1.2fx nohyphen } # chapter head break
# @ChapterHeadingFormat { number @DotSep title } # format of chap. head
# @SectionHeadingFont { Bold } # section head font
# @SectionHeadingBreak { ragged 1.2fx nohyphen } # section head break
# @SectionHeadingFormat { number @DotSep title } # section head fmt
# @SubSectionHeadingFont { Bold } # subs. head font
# @SubSectionHeadingBreak { ragged 1.2fx nohyphen } # subs. head break
# @SubSectionHeadingFormat { number @DotSep title } # subs. head fmt
# @SubSubSectionHeadingFont { Slope } # sub-subs. head font
# @SubSubSectionHeadingBreak { ragged 1.2fx nohyphen } # sub-subs. head break
# @SubSubSectionHeadingFormat { number @DotSep title } # sub-subs. head fmt
# @AppendixHeadingFont { Bold 2.00f } # appendix head font
# @AppendixHeadingBreak { ragged 1.2fx nohyphen } # appendix head break
# @AppendixHeadingFormat { number @DotSep title } # appendix head fmt
# @SubAppendixHeadingFont { Bold } # subapp. head font
# @SubAppendixHeadingBreak { ragged 1.2fx nohyphen } # subapp. head break
# @SubAppendixHeadingFormat { number @DotSep title } # subapp. head fmt
# @SubSubAppendixHeadingFont { Slope } # sub-suba. head font
# @SubSubAppendixHeadingBreak { ragged 1.2fx nohyphen } # sub-suba. head break
# @SubSubAppendixHeadingFormat{ number @DotSep title } # sub-suba. head fmt
# @AbovePartGap { 4.00f } # gap above part title
# @AboveChapterGap { 3.00f } # above major titles
# @SectionGap { 2.0v @OrIfPlain 3f } # between sections
# @SubSectionGap { 1.5v @OrIfPlain 2f } # between subsects
# @SubSubSectionGap { 1.5v @OrIfPlain 2f } # between sub-subs.
# @SubAppendixGap { 2.0v @OrIfPlain 3f } # between subappendices
# @SubSubAppendixGap { 1.5v @OrIfPlain 2f } # between sub-subapps
# @IntroductionInContents { Yes } # add introduction to contents
# @PartInContents { Yes } # add parts to contents
# @ChapterInContents { Yes } # add chapters to contents
# @SectionInContents { Yes } # add sections to contents
# @SubSectionInContents { Yes } # add subsections to contents
# @SubSubSectionInContents { No } # add sub-subsects to contents
# @AppendixInContents { Yes } # add appendices to contents
# @SubAppendixInContents { Yes } # add subappendices to contents
# @SubSubAppendixInContents { No } # add sub-subapps to contents
# @ReferencesInContents { Yes } # add ref. section to contents
# @IndexInContents { Yes } # add index to contents
# @IndexAInContents { Yes } # add index A to contents
# @IndexBInContents { Yes } # add index B to contents
# @PartContentsIndent { 0.5rt } # indent of part contents entry
# @ChapterNumInTheorems { Yes } # theorem num has chapter num
# @SectionNumInTheorems { No } # theorem num has section num
# @SubSectionNumInTheorems { No } # theorem num has subsect num
# @SubSubSectionNumInTheorems { No } # theorem num has sub-ss. num
# @AppendixNumInTheorems { Yes } # theorem num has appendix num
# @SubAppendixNumInTheorems { No } # theorem num has sub-app num
# @SubSubAppendixNumInTheorems{ No } # theorem num has sub-sa. num
# @ChapterNumInDisplays { Yes } # display num has chapter num
# @SectionNumInDisplays { Yes } # display num has section num
# @SubSectionNumInDisplays { No } # display num has subsect num
# @SubSubSectionNumInDisplays { No } # display num has sub-ss. num
# @AppendixNumInDisplays { Yes } # display num has appendix num
# @SubAppendixNumInDisplays { Yes } # display num has sub-app num
# @SubSubAppendixNumInDisplays{ No } # display num has sub-sa. num
# @ChapterNumInFigures { Yes } # figure num has chapter num
# @SectionNumInFigures { No } # figure num has section num
# @SubSectionNumInFigures { No } # figure num has subsect num
# @SubSubSectionNumInFigures { No } # figure num has sub-ss. num
# @AppendixNumInFigures { Yes } # figure num has appendix num
# @SubAppendixNumInFigures { No } # figure num has sub-app num
# @SubSubAppendixNumInFigures { No } # figure num has sub-sa. num
# @ChapterNumInTables { Yes } # table num has chapter num
# @SectionNumInTables { No } # table num has section num
# @SubSectionNumInTables { No } # table num has subsect num
# @SubSubSectionNumInTables { No } # table num has sub-ss. num
# @AppendixNumInTables { Yes } # table num has appendix num
# @SubAppendixNumInTables { No } # table num has sub-app num
# @SubSubAppendixNumInTables { No } # table num has sub-sa. num
# @SectionNumInRunners { Yes } # runners have section num
# @SubSectionNumInRunners { No } # runners have subsect num
# @SubSubSectionNumInRunners { No } # runners have sub-ss. num
# @SubAppendixNumInRunners { Yes } # runners have sub-app num
# @SubSubAppendixNumInRunners { No } # runners have sub-sa. num
# @PrefacePrefix { } # for structured page nums
# @ContentsPrefix { } # for structured page nums
# @FigureContentsPrefix { } # for structured page nums
# @TableContentsPrefix { } # for structured page nums
# @IntroductionPrefix { } # for structured page nums
# @ChapterPrefix { } # for structured page nums
# @AppendixPrefix { } # for structured page nums
# @ReferencesPrefix { } # for structured page nums
# @IndexPrefix { } # for structured page nums
# @IndexAPrefix { } # for structured page nums
# @IndexBPrefix { } # for structured page nums
}
--bookend
--slidesbegin
###############################################################################
# #
# The @OverheadLayout @Use clause - options specific to overheads. #
# #
###############################################################################
@Use { @OverheadLayout
# @DateLine { No } # No, Yes, or a date
# @ContentsWord { contents } # word for "Contents"
# @LectureNumbers { Arabic } # kind of lecture numbers
# @FirstLectureNumber { 1 } # first lecture num
# @OverheadNumbers { Arabic } # kind of overhead numbers
# @FirstOverheadNumber { 1 } # first overhead num
# @TitlePageFont { Helvetica Base 1.5f } # title page font
# @LectureHeadingFont { Bold 1.20f } # lecture head font
# @LectureHeadingBreak { clines 1.2fx nohyphen } # lecture head font
# @LectureHeadingFormat { number @DotSep title } # lecture head font
# @OverheadHeadingFont { Bold } # overhead head font
# @OverheadHeadingBreak { clines 1.2fx nohyphen } # overhead head font
# @OverheadHeadingFormat { number @DotSep title } # overhead head font
# @LectureInContents { Yes } # add lectures to contents
# @OverheadInContents { No } # add overheads to contents
# @ReferencesInContents { Yes } # add references to contents
# @LectureNumInTheorems { Yes } # theorem num has lecture num
# @OverheadNumInTheorems { No } # theorem num has overhead num
# @LectureNumInDisplays { Yes } # display num has lecture num
# @OverheadNumInDisplays { No } # display num has overhead num
# @LectureNumInFigures { Yes } # figure num has lecture num
# @OverheadNumInFigures { No } # figure num has overhead num
# @LectureNumInTables { Yes } # table num has lecture num
# @OverheadNumInTables { No } # table num has overhead num
}
--slidesend
--picturebegin
###############################################################################
# #
# The @IllustrationLayout @Use clause - there are no options for this. #
# #
###############################################################################
@Use { @IllustrationLayout
}
--pictureend
--cprintbegin
###############################################################################
# #
# The @CPrint @Use clause - options specific to C and C++ program printing. #
# #
###############################################################################
@Use { @CPrint
# style { fixed } # fixed, varying, or symbol
# fixedfont { Courier } # font family if fixed
# fixedstrings { Base } # string face if fixed
# fixedidentifiers { Base } # identifier face if fixed
# fixedcomments { Base } # comment face if fixed
# fixedkeywords { Base } # keyword face if fixed
# fixednumbers { Base } # number face if fixed
# fixedoperators { Base } # operator face if fixed
# fixedsize { -1.0p } # font size if fixed
# fixedline { 1.0vx } # line-space if fixed
# fixedtabin { 8 } # tab interval if fixed
# fixedtabout { 8s } # tab width if fixed
# varyingfont { } # font family if varying
# varyingstrings { Slope } # string face if varying
# varyingidentifiers { Slope } # identifier face if varying
# varyingcomments { Base } # comment face if varying
# varyingkeywords { Bold } # keyword face if varying
# varyingnumbers { Base } # number face if varying
# varyingoperators { Base } # operator face if varying
# varyingsize { 1.0f } # font size if varying
# varyingline { 1.0vx } # line-space if varying
# varyingtabin { 8 } # tab interval if varying
# varyingtabout { 3f } # tab width if varying
# symbolfont { } # font family if symbol
# symbolstrings { Slope } # string face if symbol
# symbolidentifiers { Slope } # identifier face if symbol
# symbolcomments { Base } # comment face if symbol
# symbolkeywords { Bold } # keyword face if symbol
# symbolnumbers { Base } # number face if symbol
# symboloperators { Base } # operator face if symbol
# symbolsize { 1.0f } # font size if symbol
# symbolline { 1.0vx } # line-space if symbol
# symboltabin { 8 } # tab interval if symbol
# symboltabout { 3f } # tab width if symbol
}
--cprintend
--eiffelprintbegin
###############################################################################
# #
# The @EiffelPrint @Use clause - options specific to Eiffel program prints. #
# #
###############################################################################
@Use { @EiffelPrint
# style { varying @OrIfPlain fixed } # fixed, varying, or symbol
# fixedfont { Courier } # font family if fixed
# fixedstrings { Base } # string face if fixed
# fixedidentifiers { Base } # identifier face if fixed
# fixedcomments { Base } # comment face if fixed
# fixedkeywords { Base } # keyword face if fixed
# fixednumbers { Base } # number face if fixed
# fixedoperators { Base } # operator face if fixed
# fixedsize { -1.0p } # font size if fixed
# fixedline { 1.0vx } # line-space if fixed
# fixedtabin { 8 } # tab interval if fixed
# fixedtabout { 8s } # tab width if fixed
# varyingfont { } # font family if varying
# varyingstrings { Slope } # string face if varying
# varyingidentifiers { Slope } # identifier face if varying
# varyingcomments { Base } # comment face if varying
# varyingkeywords { Bold } # keyword face if varying
# varyingnumbers { Base } # number face if varying
# varyingoperators { Base } # operator face if varying
# varyingsize { 1.0f } # font size if varying
# varyingline { 1.0vx } # line-space if varying
# varyingtabin { 8 } # tab interval if varying
# varyingtabout { 3f } # tab width if varying
# symbolfont { } # font family if symbol
# symbolstrings { Slope } # string face if symbol
# symbolidentifiers { Slope } # identifier face if symbol
# symbolcomments { Base } # comment face if symbol
# symbolkeywords { Bold } # keyword face if symbol
# symbolnumbers { Base } # number face if symbol
# symboloperators { Base } # operator face if symbol
# symbolsize { 1.0f } # font size if symbol
# symbolline { 1.0vx } # line-space if symbol
# symboltabin { 8 } # tab interval if symbol
# symboltabout { 3f } # tab width if symbol
}
--eiffelprintend
--diagbegin
###############################################################################
# #
# The @DiagramPrint @Use clause - options specific to diagram printing. #
# #
###############################################################################
@Use { @DiagramPrint
# save { no }
# maxlabels { 200 }
# outline { box }
# margin { 0.6f }
# shadow { 0.4f }
# sides { 3 }
# angle { "dup 180 exch div" } # 180d / sides
# translate { }
# outlinestyle { solid }
# outlinedashlength { 0.2f }
# outlinewidth { 0.02f }
# paint { nopaint }
# font { }
# break { }
# format { @Body }
# valign { ctr }
# vsize { }
# vindent { ctr }
# vstrut { no }
# vmargin { }
# topmargin { }
# footmargin { }
# halign { ctr }
# hsize { }
# hindent { ctr }
# hstrut { no }
# hmargin { }
# leftmargin { }
# rightmargin { }
# nodelabel { }
# nodelabelmargin { 0.2f }
# nodelabelfont { "-2p" }
# nodelabelbreak { ragged nohyphen }
# nodelabelformat { @Body }
# nodelabelpos { }
# nodelabelprox { outside }
# nodelabelangle { horizontal }
# nodelabelctr { no }
# nodelabeladjust { 0 0 }
# alabel { }
# alabelmargin { }
# alabelfont { }
# alabelbreak { }
# alabelformat { }
# alabelpos { NE }
# alabelprox { }
# alabelangle { }
# alabelctr { }
# alabeladjust { }
# blabel { }
# blabelmargin { }
# blabelfont { }
# blabelbreak { }
# blabelformat { }
# blabelpos { NW }
# blabelprox { }
# blabelangle { }
# blabelctr { }
# blabeladjust { }
# clabel { }
# clabelmargin { }
# clabelfont { }
# clabelbreak { }
# clabelformat { }
# clabelpos { SW }
# clabelprox { }
# clabelangle { }
# clabelctr { }
# clabeladjust { }
# dlabel { }
# dlabelmargin { }
# dlabelfont { }
# dlabelbreak { }
# dlabelformat { }
# dlabelpos { SE }
# dlabelprox { }
# dlabelangle { }
# dlabelctr { }
# dlabeladjust { }
# path { line }
# from { 0, 0 }
# to { 1, 1 }
# bias { 2.0f }
# fbias { 2.0f }
# tbias { 2.0f }
# radius { 1.0f }
# xindent { 0.8f }
# zindent { 0.8f }
# pathstyle { solid }
# pathdashlength { 0.2f }
# pathwidth { 0.02f }
# arrow { no }
# arrowstyle { solid }
# arrowwidth { 0.45f }
# arrowlength { 0.6f }
# linklabel { }
# linklabelmargin { 0.2f }
# linklabelfont { "-2p" }
# linklabelbreak { ragged nohyphen }
# linklabelformat { @Body }
# linklabelpos { }
# linklabelprox { above }
# linklabelangle { horizontal }
# linklabelctr { no }
# linklabeladjust { 0 0 }
# xlabel { }
# xlabelmargin { }
# xlabelfont { }
# xlabelbreak { }
# xlabelformat { }
# xlabelpos { LFROM }
# xlabelprox { }
# xlabelangle { }
# xlabelctr { }
# xlabeladjust { }
# ylabel { }
# ylabelmargin { }
# ylabelfont { }
# ylabelbreak { }
# ylabelformat { }
# ylabelpos { LMID }
# ylabelprox { }
# ylabelangle { }
# ylabelctr { yes }
# ylabeladjust { }
# zlabel { }
# zlabelmargin { }
# zlabelfont { }
# zlabelbreak { }
# zlabelformat { }
# zlabelpos { LTO }
# zlabelprox { }
# zlabelangle { }
# zlabelctr { }
# zlabeladjust { }
# fromlabel { }
# fromlabelmargin { 0f }
# fromlabelfont { "-2p" }
# fromlabelbreak { ragged nohyphen }
# fromlabelformat { @Body }
# fromlabelpos { FROM }
# fromlabelprox { E }
# fromlabelangle { antiparallel }
# fromlabelctr { no }
# fromlabeladjust { 0 0 }
# tolabel { }
# tolabelmargin { 0f }
# tolabelfont { "-2p" }
# tolabelbreak { ragged nohyphen }
# tolabelformat { @Body }
# tolabelpos { TO }
# tolabelprox { E }
# tolabelangle { parallel }
# tolabelctr { no }
# tolabeladjust { 0 0 }
# treehsep { 0.5f }
# treevsep { 0.5f }
# treehindent { ctr }
# treevindent { ctr }
}
--diagend
###############################################################################
# #
# @Database (and @SysDatabase) clauses go here. #
# #
###############################################################################
@SysDatabase @RefStyle { refstyle } # reference printing styles
|