SlideShare uma empresa Scribd logo
1 de 53
Baixar para ler offline
ODS HTML Evolution:
HTML that Scrolls, Panels,
Floats, Reads, and Integrates



 Eric Gebhart
ods html3

    file     = "exampleb.html"
    frame    = "example.html"
    contents = "examplec.html"
    pages = "examplep.html";




ods html close;
ods html3

   file     = "exampleb.html"
   frame    = "example.html"
   contents = "examplec.html"
   pages = "examplep.html";

            proc print data=sashelp.class;
            run;

            proc standard print data=sashelp.class;
            run;

            proc report data=sashelp.class;
            run;


ods html close;
==============================================================================
               The tagsets.HTML4 Tagset Help Text.

               This Tagset/Destination creates output in HTML format.




Getting Help
               ==============================================================================

               These are the options supported by this tagset.

               Sample usage:

               ods html options(doc='Quick');

               ods html options(header_dots='yes' summary_byvars='yes');

               Doc:    No default value.
                      Help: Displays introductory text and options.
                      Quick: Displays available options.

               header_data_associations:   Default Value 'no'
                    Associates data cells and header cells by adding an ID attribute
                    to each header cell and listing the IDs of associated headers in
                    a HEADERS attribute added to each data cell. (PROC REPORT only)

               header_dots:   Default Value 'no'
                    Puts hidden dots before the text in all table headers

               summary_as_caption:   Default Value 'no'
                    Causes a table caption to be created from the table summary.

               summary_byvars:   Default Value 'no'
                    Adds a list of by variable names to the table summary

               summary_byvals:   Default Value 'no'
                    Add the values of the by variables along with the names in the table summary
                    This works with summary byvars but not without.

               summary:   Default Value ''
                    Text for the table summary

               summary_prefix:   Default Value ''
                    Text to place at the beginning of table summary

               summary_suffix:   Default Value ''
                    Text to place at the end of table summary

               page_break:   Default Value 'yes'
                    If yes, the usual pagebreak style attribute will be used to create
                    what becomes the page separator. Usually that is an HR line.
                    If No, then no pagebreak will be output.
                    If anything else, the value given will be output as the pagebreak.
==============================================================================
                           The tagsets.HTML4 Tagset Help Text.

                           This Tagset/Destination creates output in HTML format.




Getting Help
                           ==============================================================================

                           These are the options supported by this tagset.

                           Sample usage:

                           ods html options(doc='Quick');

                           ods html options(header_dots='yes' summary_byvars='yes');

                           Doc:    No default value.
                                  Help: Displays introductory text and options.
                                  Quick: Displays available options.
ods html file="t1.html"    header_data_associations:   Default Value 'no'
                                Associates data cells and header cells by adding an ID attribute
                                to each header cell and listing the IDs of associated headers in
                                a HEADERS attribute added to each data cell. (PROC REPORT only)

    options(doc='help');   header_dots:   Default Value 'no'
                                Puts hidden dots before the text in all table headers

                           summary_as_caption:   Default Value 'no'
                                Causes a table caption to be created from the table summary.

ods html close;            summary_byvars:   Default Value 'no'
                                Adds a list of by variable names to the table summary

                           summary_byvals:   Default Value 'no'
                                Add the values of the by variables along with the names in the table summary
                                This works with summary byvars but not without.

                           summary:   Default Value ''
                                Text for the table summary

                           summary_prefix:   Default Value ''
                                Text to place at the beginning of table summary

                           summary_suffix:   Default Value ''
                                Text to place at the end of table summary

                           page_break:   Default Value 'yes'
                                If yes, the usual pagebreak style attribute will be used to create
                                what becomes the page separator. Usually that is an HR line.
                                If No, then no pagebreak will be output.
                                If anything else, the value given will be output as the pagebreak.
==============================================================================
                           The tagsets.HTML4 Tagset Help Text.

                           This Tagset/Destination creates output in HTML format.




Getting Help
                           ==============================================================================

                           These are the options supported by this tagset.

                           Sample usage:

                           ods html options(doc='Quick');

                           ods html options(header_dots='yes' summary_byvars='yes');

                           Doc:    No default value.
                                  Help: Displays introductory text and options.
                                  Quick: Displays available options.
ods html file="t1.html"    header_data_associations:   Default Value 'no'
                                Associates data cells and header cells by adding an ID attribute
                                to each header cell and listing the IDs of associated headers in
                                a HEADERS attribute added to each data cell. (PROC REPORT only)

    options(doc='help');   header_dots:   Default Value 'no'
                                Puts hidden dots before the text in all table headers

                           summary_as_caption:   Default Value 'no'
                                Causes a table caption to be created from the table summary.

ods html close;            summary_byvars:   Default Value 'no'
                                Adds a list of by variable names to the table summary

                           summary_byvals:   Default Value 'no'
                                Add the values of the by variables along with the names in the table summary
                                This works with summary byvars but not without.

                           summary:   Default Value ''
                                Text for the table summary

                           summary_prefix:   Default Value ''
                                Text to place at the beginning of table summary

                           summary_suffix:   Default Value ''
                                Text to place at the end of table summary

                           page_break:   Default Value 'yes'
                                If yes, the usual pagebreak style attribute will be used to create
                                what becomes the page separator. Usually that is an HR line.
                                If No, then no pagebreak will be output.
                                If anything else, the value given will be output as the pagebreak.
Getting Help
Getting Help

ods html file="t1.html"

    options(doc='help');

ods html close;
Getting Help

ods html file="t1.html"

    options(doc='help');

ods html close;
ods html
  file="example2.html"
  style=seaside
  options(body_toc='yes');

ods html close;
ods html
  file="example2.html"
  style=seaside
  options(body_toc='yes');

          proc print data=sashelp.class;
          run;

          proc standard print data=sashelp.class;
          run;

          proc report data=sashelp.class;
          run;



 ods html close;
ods html file="example3.html"
   options(body_toc = 'yes'
           toc_type = 'menu');
ods html file="example4.html"
       style=Journal
ods html file="example4.html"
        style=Journal

options(
         body_toc = 'yes'
         toc_type = 'menu'
       );
ods html file="example4.html"
        style=Journal

options(
         body_toc = 'yes'
         toc_type = 'menu'
         scroll_tables = 'yes'
       );
ods html file="example5.html"
       style=Journal
ods html file="example5.html"
        style=Journal

options(
         body_toc = 'yes'
         toc_type = 'menu'
        scroll_tables = 'yes'
       );
ods html file="example5.html"
        style=Journal

options(
         body_toc = 'yes'
         toc_type = 'menu'
        scroll_tables = 'yes'
        scroll_control_images = 'yes'
       );
URL Scroll Size


file:///Users/eric/pp/HTML_evolution/
example5.html
URL Scroll Size


file:///Users/eric/pp/HTML_evolution/
example5.html?batch_size=5';
ods html file="example6.html"
         style=Seaside
ods tagsets.html4
           file="example6.html"
           style=Seaside
options(
         body_toc = 'yes'
         toc_type = 'menu'
         scroll_tables = 'yes'
         scroll_control_images = 'yes'
       );
ods tagsets.html4
           file="example6.html"
           style=Seaside
options(
         body_toc = 'yes'
         toc_type = 'menu'
         scroll_tables = 'yes'
         scroll_control_images = 'yes'
         panelling='yes'
       );
proc print data=sashelp.class;
run;

proc standard print data=sashelp.class;
run;

proc report data=sashelp.class nowd;
run;
ods tagsets.html4 event=panel(start);

  proc print data=sashelp.class;
  run;

  proc standard print data=sashelp.class;
  run;

  proc report data=sashelp.class nowd;
  run;

ods tagsets.html4 event=panel(finish);
ods tagsets.html4
         file="example6.html"
         style=Seaside
ods tagsets.html4
         file="example6.html"
         style=Seaside
options(
         body_toc = 'yes'
         toc_type = 'menu'
        scroll_tables = 'yes'
        scroll_control_images = 'yes'
        panelling='yes'
       );
ods tagsets.html4
         file="example6.html"
         style=Seaside
options(
         body_toc = 'yes'
         toc_type = 'menu'
        scroll_tables = 'yes'
        scroll_control_images = 'yes'
        panelling='yes'
        panelColumns='3'
       );
ods tagsets.html4
     file="example10.html"
     style=Seaside

options(
ods tagsets.html4
     file="example10.html"
     style=Seaside

options(
         body_toc = 'yes'
         toc_type = 'menu'
         scroll_tables = 'yes'
         scroll_control_images = 'yes'
        panelling='yes'
       );
ods tagsets.html4
     file="example10.html" (notop)
     style=Seaside
     stylesheet="example10.css"
options(
         body_toc = 'yes'
         toc_type = 'menu'
         scroll_tables = 'yes'
         scroll_control_images = 'yes'
        panelling='yes'
       );
ods tagsets.html4
     file="example10.html" (notop)
     style=Seaside
     stylesheet="example10.css"
options(
         scroll_tables = 'yes'
         scroll_control_images = 'yes'
        panelling='yes'
         head_file='default_head.html'
         foot_file='default_foot.html'
       );
Eric Gebhart
Asheville, NC
E-mail: Eric@EricGebhart.com
Web: http://EricGebhart.com

Mais conteúdo relacionado

Destaque

Ru elsoft все необходимые элементы для вашего бизнеса в интернете
Ru elsoft  все необходимые элементы для вашего бизнеса в интернетеRu elsoft  все необходимые элементы для вашего бизнеса в интернете
Ru elsoft все необходимые элементы для вашего бизнеса в интернетеВера Триволь
 
Styles tagsets
Styles tagsetsStyles tagsets
Styles tagsetseagebhart
 
Ods office integration
Ods office integrationOds office integration
Ods office integrationeagebhart
 
Tales_english
Tales_englishTales_english
Tales_englishnle41
 
Eagle Project
Eagle ProjectEagle Project
Eagle ProjectWeirdFrog
 
RuelSoft -международный центр поддержки бизнеса.
RuelSoft -международный центр поддержки бизнеса.RuelSoft -международный центр поддержки бизнеса.
RuelSoft -международный центр поддержки бизнеса.Вера Триволь
 
Masallar_turkce
Masallar_turkceMasallar_turkce
Masallar_turkcenle41
 
ODS Packages
ODS PackagesODS Packages
ODS Packageseagebhart
 
Congres ambiental 2012
Congres ambiental 2012Congres ambiental 2012
Congres ambiental 2012Xavier Cusell
 
Tagattr is it
Tagattr is itTagattr is it
Tagattr is iteagebhart
 
Desertification day june 17, 09
Desertification day june 17, 09Desertification day june 17, 09
Desertification day june 17, 09Abd-Alla Gad
 
Combining SAS Office Analytics, SAS Visual Analytics, and SAS Studio.
Combining SAS Office Analytics, SAS Visual Analytics, and SAS Studio.Combining SAS Office Analytics, SAS Visual Analytics, and SAS Studio.
Combining SAS Office Analytics, SAS Visual Analytics, and SAS Studio.SAS Canada
 
Masallar
MasallarMasallar
Masallarnle41
 

Destaque (18)

Algoritmos corr
Algoritmos corrAlgoritmos corr
Algoritmos corr
 
Ru elsoft все необходимые элементы для вашего бизнеса в интернете
Ru elsoft  все необходимые элементы для вашего бизнеса в интернетеRu elsoft  все необходимые элементы для вашего бизнеса в интернете
Ru elsoft все необходимые элементы для вашего бизнеса в интернете
 
Styles tagsets
Styles tagsetsStyles tagsets
Styles tagsets
 
Ods office integration
Ods office integrationOds office integration
Ods office integration
 
Tales_english
Tales_englishTales_english
Tales_english
 
Algoritmos corr
Algoritmos corrAlgoritmos corr
Algoritmos corr
 
Eagle Project
Eagle ProjectEagle Project
Eagle Project
 
RuelSoft -международный центр поддержки бизнеса.
RuelSoft -международный центр поддержки бизнеса.RuelSoft -международный центр поддержки бизнеса.
RuelSoft -международный центр поддержки бизнеса.
 
Masallar_turkce
Masallar_turkceMasallar_turkce
Masallar_turkce
 
ODS Packages
ODS PackagesODS Packages
ODS Packages
 
Congres ambiental 2012
Congres ambiental 2012Congres ambiental 2012
Congres ambiental 2012
 
Tagattr is it
Tagattr is itTagattr is it
Tagattr is it
 
Desertification day june 17, 09
Desertification day june 17, 09Desertification day june 17, 09
Desertification day june 17, 09
 
Combining SAS Office Analytics, SAS Visual Analytics, and SAS Studio.
Combining SAS Office Analytics, SAS Visual Analytics, and SAS Studio.Combining SAS Office Analytics, SAS Visual Analytics, and SAS Studio.
Combining SAS Office Analytics, SAS Visual Analytics, and SAS Studio.
 
Masallar
MasallarMasallar
Masallar
 
ваш бренд
ваш брендваш бренд
ваш бренд
 
Transactions
TransactionsTransactions
Transactions
 
Mecansueloycimentacionescap 3
Mecansueloycimentacionescap 3Mecansueloycimentacionescap 3
Mecansueloycimentacionescap 3
 

Semelhante a Html evolution

Web Design Assignment 1
Web Design Assignment 1 Web Design Assignment 1
Web Design Assignment 1 beretta21
 
Web app development_html_css_03
Web app development_html_css_03Web app development_html_css_03
Web app development_html_css_03Hassen Poreya
 
Introduction to Modern Perl
Introduction to Modern PerlIntroduction to Modern Perl
Introduction to Modern PerlDave Cross
 
rmarkdown.pdf
rmarkdown.pdfrmarkdown.pdf
rmarkdown.pdfTheZephyr
 
Ods Markup And Tagsets: A Tutorial
Ods Markup And Tagsets: A TutorialOds Markup And Tagsets: A Tutorial
Ods Markup And Tagsets: A Tutorialsimienc
 
Plunging Into Perl While Avoiding the Deep End (mostly)
Plunging Into Perl While Avoiding the Deep End (mostly)Plunging Into Perl While Avoiding the Deep End (mostly)
Plunging Into Perl While Avoiding the Deep End (mostly)Roy Zimmer
 
RStudio_s_R_Markdown_documentation_Cheat_Cheet__1677232908.pdf
RStudio_s_R_Markdown_documentation_Cheat_Cheet__1677232908.pdfRStudio_s_R_Markdown_documentation_Cheat_Cheet__1677232908.pdf
RStudio_s_R_Markdown_documentation_Cheat_Cheet__1677232908.pdfAkshay Sahatpure
 
HTML Templates Using Clear Silver
HTML Templates Using Clear SilverHTML Templates Using Clear Silver
HTML Templates Using Clear SilverPaulWay
 
6 introduction-php-mvc-cakephp-m6-views-slides
6 introduction-php-mvc-cakephp-m6-views-slides6 introduction-php-mvc-cakephp-m6-views-slides
6 introduction-php-mvc-cakephp-m6-views-slidesMasterCode.vn
 
Building the basics (WordPress Ottawa 2014)
Building the basics (WordPress Ottawa 2014)Building the basics (WordPress Ottawa 2014)
Building the basics (WordPress Ottawa 2014)christopherfross
 
2_css.pptx
2_css.pptx2_css.pptx
2_css.pptxVarunMM2
 
2_css.pptx
2_css.pptx2_css.pptx
2_css.pptxVarunMM2
 

Semelhante a Html evolution (20)

Bioinformatica 10-11-2011-p6-bioperl
Bioinformatica 10-11-2011-p6-bioperlBioinformatica 10-11-2011-p6-bioperl
Bioinformatica 10-11-2011-p6-bioperl
 
Introduction to Perl and BioPerl
Introduction to Perl and BioPerlIntroduction to Perl and BioPerl
Introduction to Perl and BioPerl
 
Xhtml tags reference
Xhtml tags referenceXhtml tags reference
Xhtml tags reference
 
Web Design Assignment 1
Web Design Assignment 1 Web Design Assignment 1
Web Design Assignment 1
 
Web app development_html_css_03
Web app development_html_css_03Web app development_html_css_03
Web app development_html_css_03
 
Introduction to Modern Perl
Introduction to Modern PerlIntroduction to Modern Perl
Introduction to Modern Perl
 
CSS notes
CSS notesCSS notes
CSS notes
 
rmarkdown.pdf
rmarkdown.pdfrmarkdown.pdf
rmarkdown.pdf
 
Ods Markup And Tagsets: A Tutorial
Ods Markup And Tagsets: A TutorialOds Markup And Tagsets: A Tutorial
Ods Markup And Tagsets: A Tutorial
 
Plunging Into Perl While Avoiding the Deep End (mostly)
Plunging Into Perl While Avoiding the Deep End (mostly)Plunging Into Perl While Avoiding the Deep End (mostly)
Plunging Into Perl While Avoiding the Deep End (mostly)
 
RStudio_s_R_Markdown_documentation_Cheat_Cheet__1677232908.pdf
RStudio_s_R_Markdown_documentation_Cheat_Cheet__1677232908.pdfRStudio_s_R_Markdown_documentation_Cheat_Cheet__1677232908.pdf
RStudio_s_R_Markdown_documentation_Cheat_Cheet__1677232908.pdf
 
TUTORIAL DE CSS 2.0
TUTORIAL DE CSS 2.0TUTORIAL DE CSS 2.0
TUTORIAL DE CSS 2.0
 
HTML Templates Using Clear Silver
HTML Templates Using Clear SilverHTML Templates Using Clear Silver
HTML Templates Using Clear Silver
 
6 introduction-php-mvc-cakephp-m6-views-slides
6 introduction-php-mvc-cakephp-m6-views-slides6 introduction-php-mvc-cakephp-m6-views-slides
6 introduction-php-mvc-cakephp-m6-views-slides
 
Theme API
Theme APITheme API
Theme API
 
Introduction to HTML
Introduction to HTMLIntroduction to HTML
Introduction to HTML
 
Building the basics (WordPress Ottawa 2014)
Building the basics (WordPress Ottawa 2014)Building the basics (WordPress Ottawa 2014)
Building the basics (WordPress Ottawa 2014)
 
2_css.pptx
2_css.pptx2_css.pptx
2_css.pptx
 
2_css.pptx
2_css.pptx2_css.pptx
2_css.pptx
 
Html 2
Html   2Html   2
Html 2
 

Html evolution

  • 1. ODS HTML Evolution: HTML that Scrolls, Panels, Floats, Reads, and Integrates Eric Gebhart
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7. ods html3 file = "exampleb.html" frame = "example.html" contents = "examplec.html" pages = "examplep.html"; ods html close;
  • 8. ods html3 file = "exampleb.html" frame = "example.html" contents = "examplec.html" pages = "examplep.html"; proc print data=sashelp.class; run; proc standard print data=sashelp.class; run; proc report data=sashelp.class; run; ods html close;
  • 9.
  • 10. ============================================================================== The tagsets.HTML4 Tagset Help Text. This Tagset/Destination creates output in HTML format. Getting Help ============================================================================== These are the options supported by this tagset. Sample usage: ods html options(doc='Quick'); ods html options(header_dots='yes' summary_byvars='yes'); Doc: No default value. Help: Displays introductory text and options. Quick: Displays available options. header_data_associations: Default Value 'no' Associates data cells and header cells by adding an ID attribute to each header cell and listing the IDs of associated headers in a HEADERS attribute added to each data cell. (PROC REPORT only) header_dots: Default Value 'no' Puts hidden dots before the text in all table headers summary_as_caption: Default Value 'no' Causes a table caption to be created from the table summary. summary_byvars: Default Value 'no' Adds a list of by variable names to the table summary summary_byvals: Default Value 'no' Add the values of the by variables along with the names in the table summary This works with summary byvars but not without. summary: Default Value '' Text for the table summary summary_prefix: Default Value '' Text to place at the beginning of table summary summary_suffix: Default Value '' Text to place at the end of table summary page_break: Default Value 'yes' If yes, the usual pagebreak style attribute will be used to create what becomes the page separator. Usually that is an HR line. If No, then no pagebreak will be output. If anything else, the value given will be output as the pagebreak.
  • 11. ============================================================================== The tagsets.HTML4 Tagset Help Text. This Tagset/Destination creates output in HTML format. Getting Help ============================================================================== These are the options supported by this tagset. Sample usage: ods html options(doc='Quick'); ods html options(header_dots='yes' summary_byvars='yes'); Doc: No default value. Help: Displays introductory text and options. Quick: Displays available options. ods html file="t1.html" header_data_associations: Default Value 'no' Associates data cells and header cells by adding an ID attribute to each header cell and listing the IDs of associated headers in a HEADERS attribute added to each data cell. (PROC REPORT only) options(doc='help'); header_dots: Default Value 'no' Puts hidden dots before the text in all table headers summary_as_caption: Default Value 'no' Causes a table caption to be created from the table summary. ods html close; summary_byvars: Default Value 'no' Adds a list of by variable names to the table summary summary_byvals: Default Value 'no' Add the values of the by variables along with the names in the table summary This works with summary byvars but not without. summary: Default Value '' Text for the table summary summary_prefix: Default Value '' Text to place at the beginning of table summary summary_suffix: Default Value '' Text to place at the end of table summary page_break: Default Value 'yes' If yes, the usual pagebreak style attribute will be used to create what becomes the page separator. Usually that is an HR line. If No, then no pagebreak will be output. If anything else, the value given will be output as the pagebreak.
  • 12. ============================================================================== The tagsets.HTML4 Tagset Help Text. This Tagset/Destination creates output in HTML format. Getting Help ============================================================================== These are the options supported by this tagset. Sample usage: ods html options(doc='Quick'); ods html options(header_dots='yes' summary_byvars='yes'); Doc: No default value. Help: Displays introductory text and options. Quick: Displays available options. ods html file="t1.html" header_data_associations: Default Value 'no' Associates data cells and header cells by adding an ID attribute to each header cell and listing the IDs of associated headers in a HEADERS attribute added to each data cell. (PROC REPORT only) options(doc='help'); header_dots: Default Value 'no' Puts hidden dots before the text in all table headers summary_as_caption: Default Value 'no' Causes a table caption to be created from the table summary. ods html close; summary_byvars: Default Value 'no' Adds a list of by variable names to the table summary summary_byvals: Default Value 'no' Add the values of the by variables along with the names in the table summary This works with summary byvars but not without. summary: Default Value '' Text for the table summary summary_prefix: Default Value '' Text to place at the beginning of table summary summary_suffix: Default Value '' Text to place at the end of table summary page_break: Default Value 'yes' If yes, the usual pagebreak style attribute will be used to create what becomes the page separator. Usually that is an HR line. If No, then no pagebreak will be output. If anything else, the value given will be output as the pagebreak.
  • 13.
  • 15. Getting Help ods html file="t1.html" options(doc='help'); ods html close;
  • 16. Getting Help ods html file="t1.html" options(doc='help'); ods html close;
  • 17.
  • 18. ods html file="example2.html" style=seaside options(body_toc='yes'); ods html close;
  • 19. ods html file="example2.html" style=seaside options(body_toc='yes'); proc print data=sashelp.class; run; proc standard print data=sashelp.class; run; proc report data=sashelp.class; run; ods html close;
  • 20.
  • 21. ods html file="example3.html" options(body_toc = 'yes' toc_type = 'menu');
  • 22.
  • 23.
  • 25. ods html file="example4.html" style=Journal options( body_toc = 'yes' toc_type = 'menu' );
  • 26. ods html file="example4.html" style=Journal options( body_toc = 'yes' toc_type = 'menu' scroll_tables = 'yes' );
  • 27.
  • 29. ods html file="example5.html" style=Journal options( body_toc = 'yes' toc_type = 'menu' scroll_tables = 'yes' );
  • 30. ods html file="example5.html" style=Journal options( body_toc = 'yes' toc_type = 'menu' scroll_tables = 'yes' scroll_control_images = 'yes' );
  • 31.
  • 34.
  • 35.
  • 37. ods tagsets.html4 file="example6.html" style=Seaside options( body_toc = 'yes' toc_type = 'menu' scroll_tables = 'yes' scroll_control_images = 'yes' );
  • 38. ods tagsets.html4 file="example6.html" style=Seaside options( body_toc = 'yes' toc_type = 'menu' scroll_tables = 'yes' scroll_control_images = 'yes' panelling='yes' );
  • 39.
  • 40. proc print data=sashelp.class; run; proc standard print data=sashelp.class; run; proc report data=sashelp.class nowd; run;
  • 41. ods tagsets.html4 event=panel(start); proc print data=sashelp.class; run; proc standard print data=sashelp.class; run; proc report data=sashelp.class nowd; run; ods tagsets.html4 event=panel(finish);
  • 42.
  • 43. ods tagsets.html4 file="example6.html" style=Seaside
  • 44. ods tagsets.html4 file="example6.html" style=Seaside options( body_toc = 'yes' toc_type = 'menu' scroll_tables = 'yes' scroll_control_images = 'yes' panelling='yes' );
  • 45. ods tagsets.html4 file="example6.html" style=Seaside options( body_toc = 'yes' toc_type = 'menu' scroll_tables = 'yes' scroll_control_images = 'yes' panelling='yes' panelColumns='3' );
  • 46.
  • 47. ods tagsets.html4 file="example10.html" style=Seaside options(
  • 48. ods tagsets.html4 file="example10.html" style=Seaside options( body_toc = 'yes' toc_type = 'menu' scroll_tables = 'yes' scroll_control_images = 'yes' panelling='yes' );
  • 49. ods tagsets.html4 file="example10.html" (notop) style=Seaside stylesheet="example10.css" options( body_toc = 'yes' toc_type = 'menu' scroll_tables = 'yes' scroll_control_images = 'yes' panelling='yes' );
  • 50. ods tagsets.html4 file="example10.html" (notop) style=Seaside stylesheet="example10.css" options( scroll_tables = 'yes' scroll_control_images = 'yes' panelling='yes' head_file='default_head.html' foot_file='default_foot.html' );
  • 51.
  • 52.
  • 53. Eric Gebhart Asheville, NC E-mail: Eric@EricGebhart.com Web: http://EricGebhart.com