{ gStyle->SetPaperSize(19,28); gStyle->SetOptDate(0); TCanvas *c2 = new TCanvas("c2","",600,900); c2->Divide(3,3); TH1F *h = new TH1F("h","This is a really long title for test purposes only hopefully long enough hehehe",100,0,100); h->Fill(1,0.5); for ( int i = 1 ; i <= 9 ; i++ ) { c2->cd(i); h->Draw(); } c2->Print("test.ps"); }