Plot as bitmap in PDF

前端 未结 4 1776
佛祖请我去吃肉
佛祖请我去吃肉 2020-12-17 02:08

I am currently working on CGH array results, which involve several plots of dozens of thousands of points, and i would like to benefit from the multiple page feature of the

4条回答
  •  清酒与你
    2020-12-17 02:40

    How abouta Sweave solution?

    \documentclass[a4paper]{article}
    \usepackage[OT1]{fontenc}
    \usepackage{Sweave}
    \SweaveOpts{pdf = FALSE, eps = FALSE}
    \DeclareGraphicsExtensions{.png}
    
    \begin{document}
    
    \title{Highly imaginative title}
    \author{romunov}
    
    \maketitle
    
    <>=
        plot(1:10, 1:10)
    @
    
    \end{document}
    

提交回复
热议问题