1 02/20/80  fig_on.compin
 2 
 3 Syntax:  .ifi fig_on
 4 
 5 
 6 Function:
 7 This compose macro enables the generation of a list of Illustrations
 8 for the Table of Contents.
 9 
10 
11 Notes:
12 1) If this macro is used in <file>.compin, the desired list of
13    Illustrations is accumulated in a segment named <file>.fig.compin.
14 2) The macro need be used only once for a document, but its repeated
15    use does no harm and the segment accumulating the list is not
16    changed.  If <book>.compin is a "driver" file that inserts
17    <file>.compin as a section and both use this macro, the list of
18    Illustrations for <file>.compin will be added to <book>.fig.compin.
19 3) The macro assumes that the Table of Contents is also enabled and
20    formats <file>.fig.compin in such a way that it may be appended to
21    <file>.toc.compin (see toc_on.info).
22 4) See fig.info, fig_get_no.info, and fig_index.info for related
23    information.
24 
25 
26    Example:
27    The following is a sample "book" compin segment named
28    AAnn_book.compin.
29 
30      .ifi init_mpm "AAnn"
31      .ifi toc_on
32      .ifi fig_on
33      .ifi tab_on
34      .ifi AAnn.tp
35      .ifi AAnn.pf
36      .ifi s1
37      .ifi s2
38            .
39            .
40            .
41      .ifi AAnn-book.toc
42      .ifi AAnn_book.fig
43      .ifi AAnn_book.tab
44 
45 (END)