https://github.com/root-project/root
Raw File
Tip revision: 9944b334bd1b050807087c4d4280bcbb8c19d13e authored by Unknown Author on 18 May 2005, 09:32:43 UTC
This commit was manufactured by cvs2svn to create tag 'v4-04-02a'.
Tip revision: 9944b33
latex.rb
# ruby-root testsuite
# port of the original $ROOT/latex.C tutorial
# (12/01/2004)  --elathan  <elathan@phys.uoa.gr>

c1 = TCanvas.new("c1","test",600,700)

# write formulas
l = TLatex.new
    l.SetTextAlign(12)
    l.SetTextSize(0.04)
    l.DrawLatex(0.1,0.9,"1)   C(x) = d #sqrt{#frac{2}{#lambdaD}}  #int^{x}_{0}cos(#frac{#pi}{2}t^{2})dt")
    l.DrawLatex(0.1,0.7,"2)   C(x) = d #sqrt{#frac{2}{#lambdaD}}  #int^{x}cos(#frac{#pi}{2}t^{2})dt")
    l.DrawLatex(0.1,0.5,"3)   R = |A|^{2} = #frac{1}{2}#left(#[]{#frac{1}{2}+C(V)}^{2}+#[]{#frac{1}{2}+S(V)}^{2}#right)")
    l.DrawLatex(0.1,0.3,"4)   F(t) = #sum_{i=-#infty}^{#infty}A(i)cos#[]{#frac{i}{t+i}}")
    l.DrawLatex(0.1,0.1,"5)   {}_{3}^{7}Li")

c1.Draw # Print("latex.ps")

gApplication.Run
back to top