|
From: Pawel C. <cho...@li...> - 2013-04-05 15:20:49
|
Thank you, it works flawlessly now :) 2013/3/31 Juergen Hasch <py...@el...> > Am 31.03.2013 08:50, schrieb Pawel Chojnacki: > > Thank you very much - hovewer, your solution isn't enough. Adding your >> lines generate: >> >> > The problem is this: > > > RuntimeError: LaTeX was not able to process the following string: >> u'' >> Here is the full report generated by LaTeX: >> >> > Latex doesn't like the empty string. This is caused by the '\n' in your > title. > Can you replace your original line: > py.title(u'Wyniki eksperymentu pomiaru gęstości ciała > stałego\n',size='large',**family='serif') > with the new one, as in the example I sent you: > > py.title(u'Wyniki eksperymentu pomiaru gęstości ciała > stałego',size='large',family='**serif') > > |