browseVignettes            package:utils            R Documentation

_L_i_s_t _V_i_g_n_e_t_t_e_s _i_n _a_n _H_T_M_L _B_r_o_w_s_e_r

_D_e_s_c_r_i_p_t_i_o_n:

     List available vignettes in an HTML browser with links to PDF,
     LaTeX/noweb source, and (tangled) R code (if available).

_U_s_a_g_e:

     browseVignettes(package = NULL, lib.loc = NULL, all = TRUE)

     ## S3 method for class 'browseVignettes':
     print(x, ...)

_A_r_g_u_m_e_n_t_s:

 package: a character vector with the names of packages to search
          through, or 'NULL' in which "all" packages (as defined by
          argument 'all') are searched.

 lib.loc: a character vector of directory names of R libraries, or
          'NULL'.  The default value of 'NULL' corresponds to all
          libraries currently known.

     all: logical; if 'TRUE' search all available packages in the
          library trees specified by 'lib.loc',  and if 'FALSE', search
          only attached packages.

       x: Object of class 'browseVignettes'.

     ...: Further arguments, ignored by the 'print' method. 

_D_e_t_a_i_l_s:

     Function 'browseVignettes' returns an object of the same class;
     the print method displays it as an HTML page in a browser (using
     'browseURL').

_S_e_e _A_l_s_o:

     'browseURL', 'vignette'

_E_x_a_m_p_l_e_s:

     ## Not run: 
     ## List vignettes from all *attached* packages
     browseVignettes(all = FALSE)

     ## List vignettes from a specific package
     browseVignettes("grid")
     ## End(Not run)

