# File lib/ruport/formatter/pdf.rb, line 417
      def draw_text!(text,text_opts)
        ypos = cursor
        pdf_writer.add_text(text_opts[:x1] || text_opts[:left] || left_boundary,
          text_opts[:y] || ypos,
          text,
          text_opts[:font_size],
          text_opts[:angle] || 0)
        move_cursor_to(ypos)
      end