TPaveText position of latex text

Hi

I am trying to build a TPaveText in a canvas like this

   [code]

gROOT->SetStyle (“Plain”);
gStyle->SetPalette (1);
gStyle->SetTextFont(22) ;
gStyle->SetTitleFont(22,“xyz”) ;
gStyle->SetLabelFont(22,“xyz”) ;


c2->cd();
TPaveText *pt = new TPaveText(.2,.89,.7,0.99);
pt->SetFillColor(10);
pt->AddText("");
pt->AddText(“Prelim. #int 19/fb - E_{miss}^{T} > 50 HT > 200 btagM >= 1”);
sprintf(ttt,"%s",h2->GetTitle());
pt->SetTextColor(kBlue);
pt->SetLabel(ttt);
pt->Draw();
c2->Update();
[/code]

but as you can see in the attached picture, I do have two issues -

a-The Title gets cropped at the bottom
b- the E_{miss}^{T} is not dislayed properly as the miss looks completely mispositioned.

Also, how would be possible to have another text color per line ?

Thanks

Alex

Instead of pieces of code, can you post a small running macro reproducing te problem ?