]> git.donarmstrong.com Git - lilypond.git/commitdiff
Examples for vertical spacing: Reduce number of measures per line so that they don...
authorMaximilian Albert <maximilian.albert@gmail.com>
Fri, 21 Nov 2008 09:43:05 +0000 (10:43 +0100)
committerNeil Puttock <n.puttock@gmail.com>
Fri, 21 Nov 2008 22:24:15 +0000 (22:24 +0000)
Documentation/user/spacing.itely

index baabf804dc706ac7161d2a3ae3971cb5faa8b962..349eabdbc93775104b06f844a163f7efa100d70c 100644 (file)
@@ -1507,14 +1507,14 @@ by looking at an example that includes no overrides at all.
 \new Score <<
   \new Staff <<
     \new Voice {
-      s1 * 6 \break
-      s1 * 6 \break
-      s1 * 6 \break
+      s1 * 5 \break
+      s1 * 5 \break
+      s1 * 5 \break
     }
-    \new Voice { \repeat unfold 18 { c'4 c'4 c'4 c'4 } }
+    \new Voice { \repeat unfold 15 { c'4 c'4 c'4 c'4 } }
   >>
   \new Staff {
-    \repeat unfold 18 { d'4 d'4 d'4 d'4 }
+    \repeat unfold 15 { d'4 d'4 d'4 d'4 }
   }
 >>
 @end lilypond
@@ -1536,18 +1536,18 @@ attribute of the @code{NonMusicalPaperColumn} grob:
     \new Voice {
       \overrideProperty #"Score.NonMusicalPaperColumn"
         #'line-break-system-details #'((Y-offset . 0))
-      s1 * 6 \break
+      s1 * 5 \break
       \overrideProperty #"Score.NonMusicalPaperColumn"
         #'line-break-system-details #'((Y-offset . 40))
-      s1 * 6 \break
+      s1 * 5 \break
       \overrideProperty #"Score.NonMusicalPaperColumn"
         #'line-break-system-details #'((Y-offset . 80))
-      s1 * 6 \break
+      s1 * 5 \break
     }
-    \new Voice { \repeat unfold 18 { c'4 c'4 c'4 c'4 } }
+    \new Voice { \repeat unfold 15 { c'4 c'4 c'4 c'4 } }
   >>
   \new Staff {
-    \repeat unfold 18 { d'4 d'4 d'4 d'4 }
+    \repeat unfold 15 { d'4 d'4 d'4 d'4 }
   }
 >>
 @end lilypond
@@ -1569,20 +1569,20 @@ subproperty of @code{line-break-system-details}.
       \overrideProperty #"Score.NonMusicalPaperColumn"
         #'line-break-system-details #'((Y-offset . 20)
           (alignment-offsets . (0 -15)))
-      s1 * 6 \break
+      s1 * 5 \break
       \overrideProperty #"Score.NonMusicalPaperColumn"
         #'line-break-system-details #'((Y-offset . 60)
           (alignment-offsets . (0 -15)))
-      s1 * 6 \break
+      s1 * 5 \break
       \overrideProperty #"Score.NonMusicalPaperColumn"
         #'line-break-system-details #'((Y-offset . 100)
           (alignment-offsets . (0 -15)))
-      s1 * 6 \break
+      s1 * 5 \break
     }
-    \new Voice { \repeat unfold 18 { c'4 c'4 c'4 c'4 } }
+    \new Voice { \repeat unfold 15 { c'4 c'4 c'4 c'4 } }
   >>
   \new Staff {
-    \repeat unfold 18 { d'4 d'4 d'4 d'4 }
+    \repeat unfold 15 { d'4 d'4 d'4 d'4 }
   }
 >>
 @end lilypond
@@ -1604,24 +1604,24 @@ specifies the vertical positioning of staves but not of staff groups.
       \overrideProperty #"Score.NonMusicalPaperColumn"
       #'line-break-system-details #'((Y-offset . 0)
         (alignment-offsets . (0 -30 -40)))
-      s1 * 6 \break
+      s1 * 5 \break
       \overrideProperty #"Score.NonMusicalPaperColumn"
       #'line-break-system-details #'((Y-offset . 60)
         (alignment-offsets . (0 -10 -20)))
-      s1 * 6 \break
+      s1 * 5 \break
       \overrideProperty #"Score.NonMusicalPaperColumn"
       #'line-break-system-details #'((Y-offset . 100)
         (alignment-offsets . (0 -10, -40)))
-      s1 * 6 \break
+      s1 * 5 \break
     }
-    \new Voice { \repeat unfold 18 { c'4 c'4 c'4 c'4 } }
+    \new Voice { \repeat unfold 15 { c'4 c'4 c'4 c'4 } }
   >>
   \new StaffGroup <<
     \new Staff {
-      \repeat unfold 18 { d'4 d'4 d'4 d'4 }
+      \repeat unfold 15 { d'4 d'4 d'4 d'4 }
     }
     \new Staff {
-      \repeat unfold 18 { e'4 e'4 e'4 e'4 }
+      \repeat unfold 15 { e'4 e'4 e'4 e'4 }
     }
   >>
 >>