Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Gnuplot PDF Terminal Exhibits Font Issues on Mac

Out of the blue, my Gnuplot has started having issues with the pdfcairo terminal. The font in the produced PDF files is jammed as if the width of the individual characters was set to zero. I am using Gnuplot 5.2.7 on Mac OS, installed via homebrew.

Here, a minimal not-working example:

reset
set terminal pdfcairo
set output "mnwe.pdf"
set xlabel "Time t"
set ylabel "sin(t)"
plot [0:2*pi] sin(x) with lines notitle

which produces the following output:

enter image description here

I suspect that the font issue occurred after a recent update to patchlevel 7. Gnuplot 5.2.2 on my Ubuntu machine works as expected and produces the following output for the same Gnuplot script:

enter image description here

Unfortunately, it does not seem to be possible to revert to the previous Gnuplot version with homebrew.

I confirmed that the epscairo and pngcairo terminals work as expected on my Mac with Gnuplot 5.2.7, so the issue is solely with the pdfcairo terminal.
Edit: In fact, the bug does affect the other Cairo-based terminals as well. Don't know what I did wrong when I checked first.

I would appreciate any pointers at how to fix this.

like image 543
alexurba Avatar asked Aug 28 '19 18:08

alexurba


1 Answers

As of Aug. 24, 2020, the version of Pango on homebrew is 1.46.1 and this bug seems to have been fixed. Doing a clean installation of Gnuplot and Pango via homebrew should solve this problem.

like image 175
yangl1996 Avatar answered Oct 10 '22 04:10

yangl1996