]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/paper-margins-consistency.ly
Imported Upstream version 2.14.2
[lilypond.git] / input / regression / paper-margins-consistency.ly
diff --git a/input/regression/paper-margins-consistency.ly b/input/regression/paper-margins-consistency.ly
new file mode 100644 (file)
index 0000000..af1a82a
--- /dev/null
@@ -0,0 +1,21 @@
+\version "2.14.0"
+
+#(ly:set-option 'warning-as-error #f)
+
+\header {
+  texidoc = "Margin values must fit the line-width, that means: paper-width =
+line-width + left-margin + right-margin.  In case they do not, default margins
+are set and a warning is printed."
+}
+
+someNotes = \relative c' { \repeat unfold 40 { c4 d e f } }
+
+\paper {
+  left-margin = 20 \mm
+  right-margin = 40 \mm
+  line-width = 100 \mm
+}
+
+\book {
+  \score { \someNotes }
+}