# Leading is the additional space between lines of text. # # The leading can be set using the default_leading method which # applies to the rest of the document or until it is changed, or inline in the # text methods with the :leading option. # # The default leading is 0. require_require '../example_helper' filename = File.basename(__FILE__).gsub('.rb', '.pdf') Prawn::ManualBuilder::Example.generate(filename) do string = 'Hey, what did you do with the space between my lines? ' * 10 text string, leading: 0 move_down 20 default_leading 5 text string move_down 20 text string, leading: 10 end