|
From: Allin C. <cot...@wf...> - 2015-11-27 18:59:05
|
In the first instance I'm just wondering if these issues are on anyone's radar: * The tikz terminal doesn't respect the "mono" option; it produces a color plot regardless. * The metapost terminal doesn't respect the "dashed" option; it uses solid lines regardless. This is in both 5.0.1 and current CVS. The mp term did dashes OK in gnuplot 4.6. If nobody's working on these points I can try to come up with patches. -- Allin Cottrell Department of Economics Wake Forest University, NC |
|
From: sfeam <sf...@us...> - 2015-11-28 10:24:49
|
On Friday, November 27, 2015 01:59:52 PM Allin Cottrell wrote: > In the first instance I'm just wondering if these issues are on > anyone's radar: > > * The tikz terminal doesn't respect the "mono" option; it produces > a color plot regardless. I am traveling and cannot test old versions of gnuplot, so I do not know if tikz mono used to work or not. I do see that "set mono" works fine for the tikz terminal, so that is available as an alternative. > > * The metapost terminal doesn't respect the "dashed" option; it uses > solid lines regardless. I do not think support for the new dashed line mechanism was ever added to the metapost terminal. > This is in both 5.0.1 and current CVS. The mp term did dashes OK in > gnuplot 4.6. Version 5 uses a different API for dashed lines. Terminals that do not support the new API are supposed to fall back to the old dashed line sequence via the generic routine null_dashtype(). I do not know why that is failing for the metapost terminal. I guess the first thing to check there is whether the fallback mechanism is failing for all the old un-converted terminals or whether it is specific to mp. > If nobody's working on these points I can try to come up with patches. |
|
From: Allin C. <cot...@wf...> - 2015-11-28 17:42:59
|
On Sat, 28 Nov 2015, sfeam wrote: > On Friday, November 27, 2015 01:59:52 PM Allin Cottrell wrote: >> In the first instance I'm just wondering if these issues are on >> anyone's radar: >> >> * The tikz terminal doesn't respect the "mono" option; it produces >> a color plot regardless. > > I am traveling and cannot test old versions of gnuplot, so I do not > know if tikz mono used to work or not. I do see that "set mono" > works fine for the tikz terminal, so that is available as an alternative. I've now checked, and tikz mono used to work in 4.6.0. Allin Cottrell |
|
From: Ethan M. <eam...@gm...> - 2015-12-30 18:40:31
|
This was apparently deliberate, according to a comment in gnuplot-tikz.lua, but I do not know why setting the flag in the lua script causes a problem. As of today, the CVS version of the lua terminal treats "set term tikz mono" as if there were two separate commands: "set term tikz; set mono". This is essentially the same as the postscript terminal now does. On Sat, Nov 28, 2015 at 9:43 AM, Allin Cottrell <cot...@wf...> wrote: > On Sat, 28 Nov 2015, sfeam wrote: > >> On Friday, November 27, 2015 01:59:52 PM Allin Cottrell wrote: >>> >>> In the first instance I'm just wondering if these issues are on >>> anyone's radar: >>> >>> * The tikz terminal doesn't respect the "mono" option; it produces >>> a color plot regardless. >> >> >> I am traveling and cannot test old versions of gnuplot, so I do not >> know if tikz mono used to work or not. I do see that "set mono" >> works fine for the tikz terminal, so that is available as an alternative. > > > I've now checked, and tikz mono used to work in 4.6.0. > > Allin Cottrell |
|
From: Allin C. <cot...@wf...> - 2015-12-30 19:08:09
|
On Wed, 30 Dec 2015, Ethan Merritt wrote: > This was apparently deliberate, according to a comment in > gnuplot-tikz.lua, but I do not know why setting the flag in the lua > script causes a problem. As of today, the CVS version of the lua > terminal treats "set term tikz mono" as if there were two separate > commands: "set term tikz; set mono". This is essentially the same as > the postscript terminal now does. Thanks, Ethan, that sounds good. Allin Cottrell > On Sat, Nov 28, 2015 at 9:43 AM, Allin Cottrell <cot...@wf...> wrote: >> On Sat, 28 Nov 2015, sfeam wrote: >> >>> On Friday, November 27, 2015 01:59:52 PM Allin Cottrell wrote: >>>> >>>> In the first instance I'm just wondering if these issues are on >>>> anyone's radar: >>>> >>>> * The tikz terminal doesn't respect the "mono" option; it produces >>>> a color plot regardless. >>> >>> >>> I am traveling and cannot test old versions of gnuplot, so I do not >>> know if tikz mono used to work or not. I do see that "set mono" >>> works fine for the tikz terminal, so that is available as an alternative. >> >> I've now checked, and tikz mono used to work in 4.6.0. >> >> Allin Cottrell |