]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/paper-margins-overrun.ly
Docs: run convert-ly for 2.14.0.
[lilypond.git] / input / regression / paper-margins-overrun.ly
1 \version "2.14.0"
2
3 #(ly:set-option 'warning-as-error #f)
4
5 \header {
6   texidoc = "Normally, margin settings must not cause systems to run off the page."
7 }
8
9 #(set-default-paper-size "a4")
10
11 someNotes = \relative c' { \repeat unfold 40 { c4 d e f } }
12
13 \paper {
14   left-margin = 20 \mm
15   line-width = 200 \mm
16 }
17
18 \book {
19   \score { \someNotes }
20 }