]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/satb-choir-template---four-staves.ly
Merge remote-tracking branch 'origin/translation'
[lilypond.git] / Documentation / snippets / satb-choir-template---four-staves.ly
index 09ecf707b9e19ba672817f01e55b1095eb490c5b..8df49621015116ca335a7c364461d29d1538e22e 100644 (file)
@@ -1,10 +1,13 @@
-%% Do not edit this file; it is automatically
+%% DO NOT EDIT this file manually; it is automatically
 %% generated from LSR http://lsr.dsi.unimi.it
+%% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
+%% and then run scripts/auxiliar/makelsr.py
+%%
 %% This file is in the public domain.
-\version "2.13.31"
+\version "2.19.2"
 
 \header {
-  lsrtags = "vocal-music, template"
+  lsrtags = "template, vocal-music"
 
   texidoc = "
 SATB choir template (four staves)
@@ -13,41 +16,60 @@ SATB choir template (four staves)
   doctitle = "SATB Choir template - four staves"
 } % begin verbatim
 
+
 global = {
   \key c \major
   \time 4/4
+  \dynamicUp
+}
+sopranonotes = \relative c'' {
+  c2 \p \< d c d \f
 }
-sopranonotes = \relative c'' {c2 d2}
-sopranowords = \lyricmode { do do }
-altonotes = \relative c'' {c2 d2}
-altowords = \lyricmode { re re }
+sopranowords = \lyricmode { do do do do }
+altonotes = \relative c'' {
+  c2\p d c d
+}
+altowords = \lyricmode { re re re re }
 tenornotes = {
-  \clef "G_8" c2 d2}
-tenorwords = \lyricmode { mi mi }
+  \clef "G_8"
+  c2\mp d c d
+}
+tenorwords = \lyricmode { mi mi mi mi }
 bassnotes = {
-  \clef bass c2 d2}
-basswords = \lyricmode { mi mi }
+  \clef bass
+  c2\mf d c d
+}
+basswords = \lyricmode { mi mi mi mi }
 
-\score{
-  \context ChoirStaff
-  <<
-    \context Staff = soprano <<
-      \context Voice = sop { << \global \sopranonotes >> }
-      \lyricsto "sop" \new Lyrics \sopranowords
+\score {
+  \new ChoirStaff <<
+    \new Staff <<
+      \new Voice = "soprano" <<
+        \global
+        \sopranonotes
+      >>
+      \new Lyrics \lyricsto "soprano" \sopranowords
     >>
-    \context Staff = alto <<
-      \context Voice = alt { << \global \altonotes >> }
-      \lyricsto "alt" \new Lyrics \altowords
+    \new Staff <<
+      \new Voice = "alto" <<
+        \global
+        \altonotes
+      >>
+      \new Lyrics \lyricsto "alto" \altowords
     >>
-    \context Staff = tenor <<
-      \context Voice = ten { << \global \tenornotes >> }
-      \lyricsto "ten" \new Lyrics \tenorwords
+    \new Staff <<
+      \new Voice = "tenor" <<
+        \global
+        \tenornotes
+      >>
+      \new Lyrics \lyricsto "tenor" \tenorwords
     >>
-    \context Staff = bass <<
-      \context Voice = bas { << \global \bassnotes >> }
-      \lyricsto "bas" \new Lyrics \basswords
+    \new Staff <<
+      \new Voice = "bass" <<
+        \global
+        \bassnotes
+      >>
+      \new Lyrics \lyricsto "bass" \basswords
     >>
   >>
 }
-
-