]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/satb-choir-template---four-staves.ly
Doc: run makelsr locally
[lilypond.git] / Documentation / snippets / satb-choir-template---four-staves.ly
index 09ecf707b9e19ba672817f01e55b1095eb490c5b..cdd5b17609efb4d6287146042cc93fa76ea8f8cb 100644 (file)
@@ -1,10 +1,46 @@
-%% 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.14.2"
 
 \header {
-  lsrtags = "vocal-music, template"
+  lsrtags = "template, vocal-music"
+
+%% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
+
+  texidoces = "
+Plantilla de coro SATB (en cuatro pentagramas)
+
+"
+  doctitlees = "Plantilla de coro SATB a cuatro pentagramas"
+
+%% Translation of GIT committish: 34607d3e36a93030690ccd780a7ffce621ca1e0f
+  texidocit = "
+Modello per coro SATB (quattro righi)
+
+"
+  doctitleit = "Modello per coro SATB - quattro righi"
+
+%% Translation of GIT committish:  144cd434d02e6d90b2fb738eeee99119a7c5e1d2
+
+  texidocde = "
+SATB-Chorvorlage auf vier Systemen
+
+"
+  doctitlede = "SATB-Chorvorlage auf vier Systemen"
+
+
+%% Translation of GIT committish: 3b125956b08d27ef39cd48bfa3a2f1e1bb2ae8b4
+  texidocfr = "
+Modèle pour chœur à quatre voix mixtes, chaque pupitre ayant sa propre
+portée.
+
+"
+  doctitlefr = "Modèle pour chœur SATB sur quatre portées"
+
 
   texidoc = "
 SATB choir template (four staves)
@@ -13,41 +49,61 @@ 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 }
-
-\score{
-  \context ChoirStaff
-  <<
-    \context Staff = soprano <<
-      \context Voice = sop { << \global \sopranonotes >> }
-      \lyricsto "sop" \new Lyrics \sopranowords
+  \clef bass
+  c2\mf d c d
+}
+basswords = \lyricmode { mi mi mi mi }
+
+\score {
+  \new ChoirStaff <<
+    \new Staff <<
+      \new Voice = "soprano" <<
+        \global
+        \sopranonotes
+      >>
+      \lyricsto "soprano" \new Lyrics \sopranowords
     >>
-    \context Staff = alto <<
-      \context Voice = alt { << \global \altonotes >> }
-      \lyricsto "alt" \new Lyrics \altowords
+    \new Staff <<
+      \new Voice = "alto" <<
+        \global
+        \altonotes
+      >>
+      \lyricsto "alto" \new Lyrics \altowords
     >>
-    \context Staff = tenor <<
-      \context Voice = ten { << \global \tenornotes >> }
-      \lyricsto "ten" \new Lyrics \tenorwords
+    \new Staff <<
+      \new Voice = "tenor" <<
+        \global
+        \tenornotes
+      >>
+      \lyricsto "tenor" \new Lyrics \tenorwords
     >>
-    \context Staff = bass <<
-      \context Voice = bas { << \global \bassnotes >> }
-      \lyricsto "bas" \new Lyrics \basswords
+    \new Staff <<
+      \new Voice = "bass" <<
+        \global
+        \bassnotes
+      >>
+      \lyricsto "bass" \new Lyrics \basswords
     >>
   >>
 }
 
-