including Angstrom and Greek letters in gnuplot?

1

I am using gnuplot and would like to get the symbol for "Angstrom" (iso encoding 305) and the Greek letter Delta (Symbol 104) in the plot. How can I combine the two encoding schemes when producing my output eps?

user1078721

Posted 2019-08-21T11:24:23.833

Reputation: 11

Answers

1

This works without problem for me using UTF8 character for Angstrom and either the Symbol font or the UTF8 character for Δ :

set xlabel "{/Symbol D} Δ (Å)"

Gives in PDF terminal : result

with encoding to default but UTF8 as system wide locale:

gnuplot> show encoding

nominal character encoding is default
however LC_CTYPE in current locale is fr_FR.UTF-8

Joce

Posted 2019-08-21T11:24:23.833

Reputation: 637

{/Symbol \104}{\305}... hmm maybe some words more. :-) – Hastur – 2020-02-21T15:28:08.813