TABLE OF CONTENTS


plot::new_page

SYNOPSIS

    method new_page {} {

USAGE

   $obj new_page

PURPOSE

Increase the page counter and add a snippet for the new page in the Gnuplot script.

SOURCE

        incr page
        append content [::pwtk::gp::new_page_plot $term $page $pause $head]\n

        if { [::pwtk::gp::pwtk2gp $term] in $::pwtk::gp::gp(file.terminals) } {            
            if { $page < 2 } {
                lappend outputs [::pwtk::gp::output $term $head]
            } else {
                lappend outputs [::pwtk::gp::output $term $head $page]
            }
        }
    }