]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/new/vocal-ensemble-template-with-automatic-piano-reduction.ly
Run scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / Documentation / snippets / new / vocal-ensemble-template-with-automatic-piano-reduction.ly
index 7c99b53f186914b8ad281f41078575099b9a3d01..f144448eb38da4fd0c36b1aaecbfbf87c13a5691 100644 (file)
@@ -1,7 +1,7 @@
-\version "2.14.0"
+\version "2.19.21"
 
 \header {
-  lsrtags = "vocal-music, keyboards, template"
+  lsrtags = "automatic-notation, keyboards, template, vocal-music"
 
   texidoc = "
 This template adds an automatic piano reduction to the standard SATB
@@ -10,15 +10,15 @@ demonstrates one of the strengths of LilyPond – you can use a music
 definition more than once. If any changes are made to the vocal notes
 (say, @code{tenorMusic}), then the changes will also apply to the piano
 reduction.
+
 "
   doctitle = "Vocal ensemble template with automatic piano reduction"
 }
-
 \paper {
-  top-system-spacing #'basic-distance = #10
-  score-system-spacing #'basic-distance = #20
-  system-system-spacing #'basic-distance = #20
-  last-bottom-spacing #'basic-distance = #10
+  top-system-spacing.basic-distance = #10
+  score-system-spacing.basic-distance = #20
+  system-system-spacing.basic-distance = #20
+  last-bottom-spacing.basic-distance = #10
 }
 
 global = {
@@ -26,28 +26,28 @@ global = {
   \time 4/4
 }
 
-sopMusic = \relative c'' {
-  c4 c c8[( b)] c4
+sopMusic = \relative {
+  c''4 c c8[( b)] c4
 }
 sopWords = \lyricmode {
   hi hi hi hi
 }
 
-altoMusic = \relative c' {
-  e4 f d e
+altoMusic = \relative {
+  e'4 f d e
 }
 altoWords =\lyricmode {
   ha ha ha ha
 }
 
-tenorMusic = \relative c' {
+tenorMusic = \relative {
   g4 a f g
 }
 tenorWords = \lyricmode {
   hu hu hu hu
 }
 
-bassMusic = \relative {
+bassMusic = \relative {
   c4 c g c
 }
 bassWords = \lyricmode {
@@ -59,7 +59,7 @@ bassWords = \lyricmode {
     \new ChoirStaff <<
       \new Lyrics = "sopranos" \with {
         % This is needed for lyrics above a staff
-        \override VerticalAxisGroup #'staff-affinity = #DOWN
+        \override VerticalAxisGroup.staff-affinity = #DOWN
       }
       \new Staff = "women" <<
         \new Voice = "sopranos" { \voiceOne << \global \sopMusic >> }
@@ -68,7 +68,7 @@ bassWords = \lyricmode {
       \new Lyrics = "altos"
       \new Lyrics = "tenors" \with {
         % This is needed for lyrics above a staff
-        \override VerticalAxisGroup #'staff-affinity = #DOWN
+        \override VerticalAxisGroup.staff-affinity = #DOWN
       }
 
       \new Staff = "men" <<