Family Name | Normal | Italic | Bold | Bold Italic |
Times (Times New Roman) | 13 | 1 | 2 | 3 |
Helvetica (Arial) | 4 | 5 | 6 | 7 |
Courier (Courier New) | 8 | 9 | 10 | 11 |
TText *t = new TText(0.9,0.2,"Hello World !"); // 引数は順に, x, y, 描画するテキスト。 t->SetNDC(1); // 座標系の設定。0はヒストグラム座標系、1はキャンバス内での相対位置(0-1の範囲)で表記する「規格座標系」(normalized coordinate system) t->SetTextAlign(32); // 11, 12, 13, 21, 22, 23, 31, 32, 33 から選ぶ。 t->Draw();
TF1 *f = new TF1("f", "TMath::Gaus(x, 0, 0.05)", -1, 1) f->SetNpx(10000); // 描画点数(デフォルトは100) f->Draw()
gStyle->SetPalette(kGreyScale); TColor::InvertPalette();
gPad->SetTicks(1,1);
gStyle->SetTitleStyle(0); // title の背景を透明化 gPad->SetFillStyle(0); // pad の背景を透明化 h->SetFillStyle(0); // hist の背景を透明化 gPad->GetFrame()->SetFillStyle(0); // frame の背景を透明化
gStyle->SetOptTitle(0);としてからDrawする。
gStyle->SetTitleXOffset(1000);とかすると、x軸タイトルを無限遠方に飛ばせる。