I am using gnuplot 6.0 patchlevel 3 on Manjaro Linux, with the MWE below
reset
set encoding utf8
set terminal pdfcairo size 8in,8in font "STIX Two Math, 24" enhanced
set output "mwe-SO.pdf"
set polar
set angles radians
set grid linetype 3 linecolor "gray80"
set border linewidth 0.5
set samples 1000
set trange [0:10*pi]
set border linewidth 0.5
plot 1.0 * exp(0.1 * t) lw 5 title "Logarithmic Spiral 𝑟 = 𝑎𝑒^{𝑘θ}"
# set title "Logarithmic Spiral 𝑟 = 𝑎𝑒^{𝑘θ}" font "STIX Two Math, 24" enhanced
# show title
With the MWE as is, I get a title on the top right with math elements using the right fonts.

However, if I un-comment the last two lines and comment out the segment from title onward on the third last line, I get the values for a, r and k instead of their symbols and the math font is lost.
My four questions are:
How do I specify the location of the title with polar coordinates in the
set titleline?How may I get the symbols instead of the values if I use
set title?How may I get the math font if I use
set title?Fallback option: If I comment out the last two lines and restore the
titleportion of the thrd last line, how may I position it where I want?
Thanks.
P.S. The STIX two fonts are available on most Linux systems or from the GitHub repo.


