我已经读过,如果tikz拍摄光栅图像,则将其存储为png。有了这个,tikz围绕它生成图表的其余部分,并再次将光栅图像包含在最终的tex文件中。
现在我有以下内容:
pic <- T
if(pic)
{
tikz(file=paste(plotpath,"Rohdaten_S1_S2_D21.tex",sep=""),width=width,height=height,engine = "pdftex",)
#png(filename=paste(plotpath,"Rohdaten_S1_S2_D6.png",sep=""),width=width,height=height,res=res,units="in")
par(mfrow=c(2,1),mar=c(1.1,3,2,0),mgp=c(1.5,0.5,0),ps=f.size,cex=1,xaxt="n")
}
if(!pic) par(mfrow=c(2,1),mar=c(1,4,3,0))
for(i in 1:2)
{
x <- sensors[[i]]$time
y <- sensors[[i]]$depth
z <- sensors[[i]]$velo
image(x,y,z)
# plot.image(x,y,z
# ,xlim=c(max(x)-400,max(x)),zlim=2*c(-1,1)
# ,xlab="",ylab="$d/\\mathrm{m}$",zlab="$v/(\\mathrm{mm/s})$"
# ,z.adj=c(0,0),ndz=5,z.cex=1
# )
abline(v=(1:10)/0.026+par("usr")[1],lty=2)
if(!pic) abline(h=(1:floor(max(y/0.02)))*0.02)
mtext(text=paste("Sensor",i),side=3,line=0.1,adj=0)
par(mar=c(3,3,0.1,0),xaxt="s")
}
title(xlab="t/s")
if(pic) dev.off()
即使是简单的image()函数也会生成一个100MB的大.tex文件。 没有生成png,一切都在.tex文件中?!
我做错了什么?有没有设置为TRUE的开关?我需要做些什么才能将rasterimage与漂亮的文字区分开来。
感谢您的帮助。
答案 0 :(得分:0)
解决方案非常简单,但并不明显。
image()
中的R
- 函数在第一个中生成矢量图形
实例。有一个开关image(...,useRaster = T)
可以强制image()
- 函数生成光栅图形。image()
- 函数方面是一个规则网格(二次像素)。否则会发生错误。如何获得常规网格?
假设您的图像的坐标为x [],y []和标量矩阵z [,]。然后可以计算重新采样的规则网格:
x.new<-seq(min(xlim),max(xlim),length.out=dim.max[1])
y.new<-seq(min(ylim),max(ylim),length.out=dim.max[2])
z<-apply(z,2,function(y,x,xout) return(approx(x,y,xout=xout+min(diff(x))/2,method="constant",rule=2)$y),x,x.new)
z<-t(apply(z,1,function(y,x,xout) return(approx(x,y,xout=xout+min(diff(x))/2,method="constant",rule=2)$y),y,y.new))
tikz(file ='a.tex',width = 2, height = 2)
image(x,y,z,useRaster = T)
dev.off()
重要的事情是method = "constant"
- 函数中的rule = 2
和approx()
语句。这些可以实现'#34;转移&#34;到常规网格。
应用所有这些并tikz()
将图片拆分为a.tex文件和a_ras1.png文件。
我希望这有助于sombody编程R
并使用tikzDevice为tex文档生成图片。