Path: csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!weretis.net!feeder4.news.weretis.net!eternal-september.org!feeder.eternal-september.org!.POSTED!not-for-mail From: sfeam Newsgroups: comp.graphics.apps.gnuplot Subject: Re: Gnuplot and epslatex Followup-To: comp.graphics.apps.gnuplot Date: Mon, 25 Jul 2011 08:09:33 -0700 Organization: gnuplot development team Lines: 60 Message-ID: References: <6fff9ffe-1aed-4100-8351-ce48d149e308@a10g2000yqn.googlegroups.com> <14fe6df9-1c37-4e52-8fe9-6d413fec244a@y24g2000yqb.googlegroups.com> <2fae80d3-953b-4628-8517-6b70bd3134d6@l18g2000vbe.googlegroups.com> Reply-To: sfeam@users.sourceforge.net Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7Bit Injection-Date: Mon, 25 Jul 2011 15:09:34 +0000 (UTC) Injection-Info: mx04.eternal-september.org; posting-host="WEZLCPHRH3QJlZRyUKB04A"; logging-data="10205"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX18genySfp67gg2tIaTlWMYI" User-Agent: KNode/4.4.9 Cancel-Lock: sha1:U0zNf5XbbYp/kS6HlbzrmlHr8sE= Xref: x330-a1.tempe.blueboxinc.net comp.graphics.apps.gnuplot:483 Gaius Verres wrote: > OK, I have changed the the original file to: > > > set terminal epslatex color standalone > > set output 'multiplot.tex' > > f(x)=x**2 > g(x)=x**3 > h(x)=x**4 > > set multiplot > > set origin 0.0,0.6 > set size 0.8,0.4 > set format x "" > plot f(x) > > set origin 0.0,0.3 > set size 0.8,0.4 > plot g(x) > > set origin 0.0,0.0 > set size 0.8,0.4 > plot h(x) > > unset multiplot > > > The created PDF seems to be OK. PDF? Where did PDF come from? > But if I want to use the EPS file named multiplot.eps (some publishers > require EPS) in LaTeX the resulting PS file does not contain the > graphics. > > > \documentclass{scrartcl} > \usepackage{graphicx} Maybe you need \usepackage[pdftex,dvips]{graphicx} ? Is there an error message in the TeX log file? > \begin{document} > \begin{figure} > \centering > \includegraphics[scale=0.2]{multiplot} > \caption{multiplot} > \end{figure} > \end{document} > > > There is only: "Figure 1: multiplot" and the page number.