Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Updated to be consistent with previous example, and to use "Footer" instead of "Footnate" for the last section type (GitHub #210)

...

Xfancy
classrowcaps
Lines 16-17:

Show the text identified as "GlobalDisp_Title_1" ("Study CDISCPILOT01") used as the first titleheader.

Lines 1820-2123:

Show the second first title defined within the context of the display as "Summary of Demographics".

Lines 2224-2325:

Show the text identified as "GlobalDisp_Title_21" ("Safety Population") used as the third second title.

Lines 2628-2729:

Show the text identified as "GlobalDisp_Legend_1" ("For continuous variables, p-values are results of ANOVA treatment group comparisons.") used as the first legend.

Lines 2830-2931:

Show the text identified as "GlobalDisp_Legend_2" ("For categorical variables, p-values are results of Pearson's chi-square test.") used as the second legend.

Lines 3036-3537:

Show a footnote defined footer defined within the context of the display as "Source dataset: adsl, Generated on: DDMONYYYY:HH:MM".

Code Block
titleYAML Example
linenumberstrue
outputs:
- name: Summary of Demographics
  id: Out14-1-1
  version: 1
  ...
  displays:
  - order: 1
    display:
      name: Demog
      id: Disp14-1-1
      version: 1
      displayTitle: Summary of Demographics
      displaySections:
      - sectionType: TitleHeader
        orderedSubSections:
        - order: 1
          subSectionId: GlobalDisp_TitleHeader_1
      - sectionType: Title
        orderedSubSections:
        - order: 21
          subSection:
            id: Disp14-1-1_Title_21
            text: Summary of Demographics
        - order: 32
          subSectionId: GlobalDisp_Title_21
      - sectionType: Legend
        orderedSubSections:
        - order: 1
          subSectionId: GlobalDisp_Legend_1
        - order: 2
          subSectionId: GlobalDisp_Legend_2
      - sectionType: FootnoteFooter
        orderedSubSections:
        - order: 1
          subSection:
            id: Disp14-1-1_FnoteFooter_1
            text: 'Source dataset: adsl, Generated on: DDMONYYYY:HH:MM'
  ...
...