informalexample

informalexample — A displayed example without a title

Synopsis

Attributes

Common attributes and common linking attributes.

Additional attributes:

  • floatstyle
  • width

Description

InformalExample is a wrapper for an example without a title. Examples often contain ProgramListings or other large block elements.

Processing expectations

Formatted as a displayed block.

Attributes

Common attributes and common linking attributes.

floatstyle

Specifies style information to be used when rendering the float

width

FIXME:

See Also

equation, example, figure, informalequation, informalfigure, informaltable, table

Examples

<article xmlns='http://docbook.org/ns/docbook'>
<title>Example informalexample</title>

<informalexample>
<programlisting>
sub print_content_model {
    my($self) = shift;
    local($_) = shift;
    local(*FILE) = shift;

    my(@cm) = $self->format_content_model2($_);
    foreach $_ (@cm) {
        print FILE $self->make_links($_, 1, 1), "\n";
    }
}
</programlisting>
</informalexample>

</article>
sub print_content_model {
    my($self) = shift;
    local($_) = shift;
    local(*FILE) = shift;

    my(@cm) = $self->format_content_model2($_);
    foreach $_ (@cm) {
        print FILE $self->make_links($_, 1, 1), "\n";
    }
}

ChangeLog

This alpha reference page is $Revision: 1.5 $ published $Date: 2005/10/31 12:31:55 $.