Logo ROOT  
Reference Guide
 
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
Loading...
Searching...
No Matches
style.C
Go to the documentation of this file.
2{
3 TCanvas *S = new TCanvas("script","Style",750,250);
4
6 Tl.SetTextSize(0.08);
7 Tl.SetTextAlign(12);
9 Tt.SetTextSize(0.08);
10 Tt.SetTextFont(82);
11 Tt.SetTextAlign(12);
12
13 // Draw First Column
14 float y, x1, x2;
15 float step = 0.3;
16 y = 0.80; x1 = 0.01; x2 = x1+0.7;
17
18 Tt.DrawText(x1, y, "#font[12]{Times Italic} and #font[22]{Times bold} : ") ; Tl.DrawLatex(x2, y, "#font[12]{Times Italic} and #font[22]{Times bold}");
19 y -= step ; Tt.DrawText(x1, y, "#color[2]{Red} and #color[4]{Blue} : ") ; Tl.DrawLatex(x2, y, "#color[2]{Red} and #color[4]{Blue}");
20 y -= step ; Tt.DrawText(x1, y, "#scale[1.2]{Bigger} and #scale[0.8]{Smaller} : ") ; Tl.DrawLatex(x2, y, "#scale[1.2]{Bigger} and #scale[0.8]{Smaller}");
21 return S;
22}
ROOT::Detail::TRangeCast< T, true > TRangeDynCast
TRangeDynCast is an adapter class that allows the typed iteration through a TCollection.
Option_t Option_t TPoint TPoint const char x2
Option_t Option_t TPoint TPoint const char x1
The Canvas class.
Definition TCanvas.h:23
To draw Mathematical Formula.
Definition TLatex.h:18
Double_t y[n]
Definition legend1.C:17
TCanvas * style()
Definition style.C:1