I have the following code:
pdf = Prawn::Document.new
pdf.text "Hello", :size => 22
pdf.text "wold", :size => 12
But this code displays two lines. I want to have the two text elements in one single line with the different font sizes as corresponding.
Any help on this?