MIDI: fix regtest failure
[lilypond/patrick.git] / input / regression / paper-margins-consistency.ly
bloba3a7a409c7525b1b8c654938787d57275b4742ca
1 \version "2.13.5"
3 #(ly:set-option 'warning-as-error #f)
5 \header {
6 texidoc = "Margin values must fit the line-width, that means: paper-width =
7 line-width + left-margin + right-margin. In case they do not, default margins
8 are set and a warning is printed."
11 someNotes = \relative c' { \repeat unfold 40 { c4 d e f } }
13 \paper {
14 left-margin = 20 \mm
15 right-margin = 40 \mm
16 line-width = 100 \mm
19 \book {
20 \score { \someNotes }