.c; .DISPLAY ELEMENTS DEMONSTRATION .s The following shows how the .LIST, .LIST ELEMENT, .END LIST, and .DISPLAY ELEMENTS commands work. The following input (.RNO) file: .LM 5,.RM 85.S .LIT .LM 10;.rm 50 BEGIN LIST .LIST 2 .DISPLAY ELEMENTS LU,'-' .; elements are upper case letters with dash .LIST ELEMENT; (ONE) The first list has text indented 9 spaces with triple spacing. .LIST ELEMENT; (TWO) .LIST 1 .; elements are default with 1 blank line between. .LIST ELEMENT; (ONE) The second list has text indented by 4 more, or 13 spaces. .LIST ELEMENT; (TWO) .LIST 0 ; single space these elements .DISPLAY ELEMENTS "(",RL,")" .; lower case roman numeral in parentheses. .LIST ELEMENT; (ONE) The third list has text indented 4 more, or 17 spaces. .LIST ELEMENT; (TWO) .END LIST 1 Third list has ended. .LIST ELEMENT; (THREE) .END LIST 0 .LIST ELEMENT; (THREE) .LIST ELEMENT; (FOUR) .END LIST 2 First list has ended. .EL.S .LM; Produces the following text (.DOC) file: .s .LM 10;.rm 50 BEGIN LIST .LIST 2 .DISPLAY ELEMENTS LU,'-' .; elements are upper case letters with dash .LIST ELEMENT; (ONE) The first list has text indented 9 spaces. .LIST ELEMENT; (TWO) .LIST 1 .LIST ELEMENT; (ONE) The second list has text indented by 4 more, or 13 spaces. .LIST ELEMENT; (TWO) .LIST 0 .DISPLAY ELEMENTS "(",RL,")" .; lower case roman numeral in parentheses. .LIST ELEMENT; (ONE) The third list has text indented 4 more, or 17 spaces. .LIST ELEMENT; (TWO) .END LIST 1 Third list has ended. .LIST ELEMENT; (THREE) .END LIST 0 .LIST ELEMENT; (THREE) .LIST ELEMENT; (FOUR) .END LIST 2 First list has ended.