1 02/20/80  tab_index.compin
 2 
 3 Syntax:  .ifi tab_index "table-title"
 4 
 5 
 6 Function:
 7 This compose macro adds a 'table-title' to the list of Tables in the
 8 Table of Contents if creation of such a list has been enabled (see
 9 tab_on.info) without putting a centered table heading on the output
10 page.
11 
12 
13 Arguments:
14 'table-title' is the title of the table, as it is to appear in the list
15    of Tables (first caps, no underlines).
16 
17 
18 Notes:
19 1) The tab_index macro is used to generate a list of Tables entry when,
20    for any reason, the tab macro cannot be used to create the table
21    heading.
22 2) This macro advances the table counter so care must be taken in
23    referencing the table in the text.
24 3) See tab.info, tab_on.info, and tab_get_no.info for related
25    information.
26 
27 
28 Examples:
29 The following lines produce a table with a left-justified table
30 heading.
31 
32      .ifi tab_get_no 1
33      .ur Table %table% below reflects the 1975 data.
34      .spb
35      .ur Table %table%:  Table Data, 1975
36      .ifi tab_index "Table Data, 1975"
37 
38                                  T A B L E
39 
40 (END)