pictex package:grDevices R Documentation _A _P_i_c_T_e_X _G_r_a_p_h_i_c_s _D_r_i_v_e_r _D_e_s_c_r_i_p_t_i_o_n: This function produces graphics suitable for inclusion in TeX and LaTeX documents. _U_s_a_g_e: pictex(file = "Rplots.tex", width = 5, height = 4, debug = FALSE, bg = "white", fg = "black") _A_r_g_u_m_e_n_t_s: file: the file where output will appear. width: The width of the plot in inches. height: the height of the plot in inches. debug: should debugging information be printed. bg: the background color for the plot. Ignored. fg: the foreground color for the plot. Ignored. _D_e_t_a_i_l_s: This driver does not have any font metric information, so the use of 'plotmath' is not supported. Multiple plots will be placed as separate environments in the output file. Line widths are ignored except when setting the spacing of line textures. 'pch="."' corresponds to a square of side 1pt. This device does not support colour (nor does the PicTeX package), and all colour settings are ignored. _C_o_n_v_e_n_t_i_o_n_s: This section describes the implementation of the conventions for graphics devices set out in the "R Internals Manual". * The default device size is 5 inches by 5 inches. * There is no 'pointsize' argument: the default size is interpreted as 10 point. * The only font family is 'cmss10'. * Line widths are only used when setting the spacing on line textures. * Circle of any radius are allowed. * Colour is not supported. _A_u_t_h_o_r(_s): This driver was provided by Valerio Aimale valerio@svpop.com.dist.unige.it of the Department of Internal Medicine, University of Genoa, Italy. _R_e_f_e_r_e_n_c_e_s: Knuth, D. E. (1984) _The TeXbook._ Reading, MA: Addison-Wesley. Lamport, L. (1994) _LATEX: A Document Preparation System._ Reading, MA: Addison-Wesley. Goossens, M., Mittelbach, F. and Samarin, A. (1994) _The LATEX Companion._ Reading, MA: Addison-Wesley. _S_e_e _A_l_s_o: 'postscript', 'Devices'. _E_x_a_m_p_l_e_s: require(graphics) pictex() plot(1:11,(-5:5)^2, type='b', main="Simple Example Plot") dev.off() ##-------------------- ## Not run: %% LaTeX Example \documentclass{article} \usepackage{pictex} \begin{document} %... \begin{figure}[h] \centerline{\input{Rplots.tex}} \caption{} \end{figure} %... \end{document} %%-- plain TeX Example -- \input pictex $$ \input Rplots.tex $$ ## End(Not run) ##-------------------- unlink("Rplots.tex")