plot2 new line



On Mon, 2010-07-19 at 10:43 +0000, Adam Majewski wrote:
> How can I brake a title line to 2 lines ?
> ( puting /n sign into title_string does not work for me 
> 
> title_string :concat(" 'Apollonian Gasket /n defined by curvatures 
> (",string(r0*k0),", ",string(nk1),", ",string(nk1),", ",string
> (nk1)," )" ); /* this does not work */

Of course not; you have two errors:
1- You didn't close the single quote.
2- For \n to work in Gnuplot, you should use double quote " rather than
single one.

Try:
title_string :concat(" \"Apollonian Gasket /n defined by curvatures 
(",string(r0*k0),", ",string(nk1),", ",string(nk1),", ",string
(nk1)," )\" " );  /* this should work */

Regards,
Jaime