1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
# encoding: utf-8
#
# Examples for defining the document outline.
#
require File.expand_path(File.join(File.dirname(__FILE__),
%w[.. example_helper]))
Prawn::Example.generate("outline.pdf") do
build_package("outline", [
[ "Basics", [ { :name => "sections_and_pages",
:eval_source => false }
]
],
[ "Adding nodes later",
[ { :name => "add_subsection_to",
:eval_source => false },
{ :name => "insert_section_after",
:eval_source => false }
]
]
]
) do
text "The outline of a PDF document is the table of contents tab you see to the right or left of your PDF viewer.
The examples include:"
list( "How to define sections and pages",
"How to insert sections and/or pages to a previously defined outline structure"
)
end
end
|