gpt4 book ai didi

gnuplot - 如何将 pdf 图像添加到 gnuplot 图中?

转载 作者:行者123 更新时间:2023-12-02 09:34:44 24 4
gpt4 key购买 nike

我有一张 PDF 格式的图像,我想添加到现有的 gnuplot 图中。

我现在的代码是这样的:

set terminal postscript eps enhanced color solid font "Nimbus Roman No9 L" 35
set output '|epstopdf --filter > Patterns.pdf'
set size 1.8,1.8
set style data histogram
set style histogram cluster gap 1
plot 'Patterns.dat' using ($2/2.90):xtic(1) title col fs pattern 3

pdf 文件存储在 image.pdf 中。

最佳答案

至少可以用 epslatex 终端来完成。首先,对于我的示例,我将生成一个 pdf 文件,它是一个 gnuplot 生成的图形:

set term epslatex standalone
set output "plot1.tex"
plot sin(x)

现在,在 gnuplot 之外,我生成了 pdf 文件(名为 plot1.pdf):

pdflatex plot1.tex

看起来像这样:

enter image description here

为了将其嵌入到 gnuplot 图表中,我再次使用 epslatex 终端并嵌入 plot1.pdf 就像我在 latex 文档中处理任何 pdf 文件一样,使用\includegraphics[]{} 环境,带有 gnuplot label:

set term epslatex standalone
set output "plot2.tex"
set label at graph 0.75,0.25 '\includegraphics[width=2cm]{plot1.pdf}'
plot x

然后,再次运行 pdflatex:

pdflatex plot2.tex

生成 plot2.pdf,如下所示:

enter image description here

通过改变label的位置,你可以改变内嵌pdf的位置;通过改变 width 你可以改变,猜猜是什么,嵌入 pdf 的宽度。

关于gnuplot - 如何将 pdf 图像添加到 gnuplot 图中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28282234/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com