|
From: Ethan M. <merritt@u.washington.edu> - 2005-03-01 22:33:43
|
By the way, in trying to build gnuplot without the postscript
terminal driver I discovered that the recent commingling of
postscript/pslatex/epslatex has made this impossible.
In particular I object to the following contamination of core
routines with terminal-specific code. If we need a new terminal
entry for this, then so be it. But having the core code writing
this garbage is just really really ugly.
--- gnuplot/src/graphics.c 2005-02-24 12:14:16.000000000 -0800
+++ gnuplot-cvs/src/graphics.c 2005-03-01 12:49:19.368297032 -0800
@@ -1482,11 +1482,6 @@
/* PLACE ARROWS */
place_arrows( 0 );
- /* Print \includegraphics here when using back option for text */
- if (term->name=="epslatex" && gpoutfile)
- fprintf(gpoutfile, " \\put(0,0){\\includegraphics{%s}}%%\n",
- pslatex_auxname);
-
/* WORK OUT KEY SETTINGS AND DO KEY TITLE / BOX */
if (lkey) { /* may have been cancelled if something went wrong */
/* just use keybox.xl etc worked out in boundary() */
--- gnuplot/src/graph3d.c 2005-02-13 15:55:37.000000000 -0800
+++ gnuplot-cvs/src/graph3d.c 2005-03-01 12:49:02.316889240 -0800
@@ -739,11 +739,6 @@
/* PLACE ARROWS */
place_arrows3d(0);
- /* Print \includegraphics here when using back option for text */
- if (term->name=="epslatex" && gpoutfile)
- fprintf(gpoutfile, " \\put(0,0){\\includegraphics{%s}}%%\n",
- pslatex_auxname);
-
#ifndef LITE
if (hidden3d && draw_surface && !quick) {
init_hidden_line_removal();
--
Ethan A Merritt merritt@u.washington.edu
Biomolecular Structure Center
Mailstop 357742
University of Washington, Seattle, WA 98195
|