On Wednesday, 06 February 2013, Martin Krupicka wrote:
> Hello,
> I would like to produce the SVG output, where the axis label contains
> symbol in upper index. At a moment, I can produce the symbols correctly
> with:
>
> set terminal svg noenhanced
> set ylabel ' Δ E ‡'
>
> But I would like to put the the double dagger symbol as the index. To do
> that,
> obviously:
>
> set terminal svg enhanced
> set ylabel ' Δ E^‡'
>
> But this causes the HTML entities to screw up. The ampersand gets
> interpreted in gnuplot sense as emtpy space, upon escaping to \Δ
> it end up as &, more backlashes do not help.
>
> Is there a way to solve this?
SVG necessarilly accepts UTF-8 encoding, so just give it the
characters directly:
set ylabel " Δ ^‡"
(tested here using gnuplot 4.6.1's svg terminal)
Ethan
(3rd try - the mailing list keeps rejecting my mail)
|