1 02/20/80 l0exact.compin
2
3 Syntax: .ifi l0exact "section-title"
4
5
6 Function:
7 This compose macro performs part of the functions of l0h. It
8 1) initializes a new section of the manual
9 2) generates a section heading on a new page without translating the
10 section-title into the Level 0 font
11 3) does NOT generate an entry in the Table of Contents
12
13 It is used when a section-title contains a literal string which must be
14 kept 'as is'. It should be inserted at the beginning of a section of
15 the document.
16
17
18 Arguments:
19 'section-title' is the title of the section, exactly as it is to appear
20 in the section heading.
21
22
23 Notes:
24 Use the l0toc macro to put the section title in the Table of Contents.
25
26
27 Examples:
28 A section on the exec_com control language could begin with
29 .ifi init
30 .srv section 1
31 .ifi l0exact "THE exec_com CONTROL LANGUAGE"
32 .ifi l0toc "The exec_com Control Language"
33
34 which yields in typed output
35
36 SECTION 1
37
38 THE exec_com CONTROL LANGUAGE
39
40 END