gnuplot error: Bad format character

前端 未结 3 1508
时光取名叫无心
时光取名叫无心 2021-01-15 12:54

Am new to gnuplot but need o use it urgently. This is the following set of commands I used:

set  terminal  latex
set output “conflict.tex”
set xtics (\"rando         


        
3条回答
  •  不思量自难忘°
    2021-01-15 13:13

    Recently I had the same problem with escaping ("Bad format character") in xtics().

    This should work:

    set xtics ("random"  2, "sharing(0\%%)"  1, ...)
    

    What helped me, was to look at the generated tex file.

提交回复
热议问题