|
From: Shigeharu T. <sh...@ie...> - 2009-10-01 09:35:29
|
shige 10/01 2009 ---------------- I wrote: | Current version of gnuplot supports | | set multiplot title "<string>" | | but we can not specify the font of the title string. Though it may | be done by I found the following short patch may be enable us to use set multiplot title "<string>" font "<fontname>,<size>" but I don't know how to make space according to the font size. ----- From Here ----- --- term.c.ORG Sat Sep 5 14:27:41 2009 +++ term.c Thu Oct 1 18:25:15 2009 @@ -651,6 +659,16 @@ if ((s = try_to_get_string())) { free(mp_layout.title.text); mp_layout.title.text = s; + } + continue; + } + + /* shige */ + if (equals(c_token, "font")) { + c_token++; + if ((s = try_to_get_string())) { + free(mp_layout.title.font); + mp_layout.title.font = s; } continue; } ----- To Here ----- +========================================================+ Shigeharu TAKENO NIigata Institute of Technology kashiwazaki,Niigata 945-1195 JAPAN sh...@ie... TEL(&FAX): +81-257-22-8161 +========================================================+ |