From: Ethan A M. <me...@uw...> - 2020-06-24 01:08:12
|
On Tuesday, 23 June 2020 13:17:19 PDT Pieter-Tjerk de Boer wrote: > Hello, > > Something goes wrong with fonts or character encodings on the x11 terminal. > See the attached which is the result of simply > plot 1e6 > The vertical labels have a few unintended characters instead of multiplication > signs (crosses). > > Debian's stock gnuplot 5.2pl6 version displays the multiplication sign > correctly on the x11 terminal, as does 5.4rc2 with the Qt terminal. > > Any idea what this could be? Any test I could do to help debug it? Most likely your gnuplot session is operating with encoding utf8, but your x11 terminal font handling is not set up to handle it. It is possible to set it up, but it's a horrible pain and depends on exactly what fonts you have available. Either switch to set encoding iso_8859_15 (probably) or switch to another terminal that has kept up with the modern world and knows how to handle utf8. I long ago switched to from x11 to qt for daily use, but wxt or even sixel might fit your environment better. If you stick with x11 and iso_8859_15, remember to switch the encoding back to utf8 for output to pdf or TeX. Ethan > > Regards, > Pieter-Tjerk > |