]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/page-layout.ly
Issue 5147: Add whether to use OTF feature depending on Pango version
[lilypond.git] / input / regression / page-layout.ly
1
2 \version "2.19.21"
3
4
5
6 \header {
7
8      texidoc = "This shows how different settings on \paper modify the
9 general page layout. Basically \paper will set the values for the
10 whole paper while \layout for each \score block.
11
12 This file is best viewed outside the collated files document.
13 "
14
15
16     title = "Title"
17     subtitle = "(and (the) subtitle)"
18     subsubtitle = "Sub sub title"
19     poet = "Poet"
20     composer = "Composer"
21     texttranslator = "Text Translator"
22     meter = "Meter"
23     arranger = "Arranger"
24     instrument = "Instrument"
25   }
26
27 \paper {
28     %paper-width = 2\cm
29     %paper-height = 2\cm
30     top-margin = 2\cm
31     bottom-margin = 2\cm
32     ragged-bottom = ##t
33     ragged-last-bottom = ##t
34     left-margin = 3\cm
35     line-width = 15\cm
36     %rigthmargin = 3\cm
37     interscoreline = 3\cm
38
39     annotate-spacing = ##t
40
41
42
43   }
44
45
46 \book {
47     \score {
48         \relative {
49             \repeat unfold 10 {
50                 \repeat unfold 4 {c''4}
51             }
52         }
53         \header {piece = "Piece I"}
54         \layout {line-width = 13\cm}
55     }
56     \score {
57         \relative {
58             \repeat unfold 10 {
59                 \repeat unfold 4 {c''4}
60             }
61         }
62         \header {
63           breakbefore = ##f
64           piece = "Piece II"
65         }
66         \layout {line-width = 9\cm}
67     }
68 }