gnuplot - pdf terminal - setting unicode character (solar mass symbol/odot)

前端 未结 2 563
滥情空心
滥情空心 2021-02-08 23:43

I\'m trying to set the LaTeX \\odot symbol in the gnuplot (4.6.0) pdf terminal. What is the exact syntax for this?

The gnuplot FAQ gives some clues, but sho

2条回答
  •  梦如初夏
    2021-02-09 00:24

    Here is a way using the epslatex terminal. Run these commands in gnuplot or a gnuplot script:

    set terminal epslatex standalone color
    set output 'plot.tex'
    
    set xlabel '$\odot$ is a \LaTeX symbol.'
    plot sin(x)
    

    Then you can run pdflatex on the resulting plot.tex, or latex followed by dvipdf. This works fine if you don't mind having LaTeX for the interpreter for all the text in your plot. If you want just the \odot symbol included I'm not sure how to do it.

提交回复
热议问题