]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/vocal-ensemble-template-with-automatic-piano-reduction.ly
Doc: run makelsr locally
[lilypond.git] / Documentation / snippets / vocal-ensemble-template-with-automatic-piano-reduction.ly
index d18f0a3abfd19cd9ed8b53fc09e8dabf74b1b8f2..04506cd9f016d57b915d1f72b907ab7b599978df 100644 (file)
@@ -1,12 +1,15 @@
-%% 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.12.2"
+\version "2.14.2"
 
 \header {
-  lsrtags = "vocal-music, keyboards, template"
+  lsrtags = "template, vocal-music, keyboards, automatic-notation"
 
-%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00
+%% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
   texidoces = "
 
 Esta plantilla añade una reducción de piano automática a la partitura
@@ -28,6 +31,17 @@ entonces los cambios se aplicarán también a la reducción de piano.
 の音符) に変更が加えられた場合、その変更はピアノ譜にも適用されます。
 "
 
+%% Translation of GIT committish: c3b519f0dd5ff0f8ccfc9a39ed1fe8df8b43741c
+  texidocit = "
+Questo modello aggiunge una riduzione automatica per pianoforte alla tipica
+partitura vocale SATB illustrata in @qq{Modello per complesso vocale}. Si
+dimostra così uno dei punti di forza di LilyPond – è possibile usare una
+definizione musicale più di una volta. Qualsiasi modifica venga fatta alle note
+delle voci (ad esempio, @code{tenorMusic}) verrà applicata anche alla riduzione
+per pianoforte.
+"
+  doctitleit = "Modello per gruppo vocale con automatica riduzione per pianoforte"
+
 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
   texidocde = "
 In diesem Beispiel wird ein automatischer Klavierauszug zu der
@@ -38,11 +52,11 @@ tenorMusic), verändert sich auch der Klavierauszug entsprechend.
 "
 
 
-%% Translation of GIT committish: bdfe3dc8175a2d7e9ea0800b5b04cfb68fe58a7a
+%% Translation of GIT committish: 3b125956b08d27ef39cd48bfa3a2f1e1bb2ae8b4
   texidocfr = "
 Ce canevas ajoute une réduction pour piano à une partition standard pour
 chœur à quatre voix mixtes.  Ceci illustre l'un des avantages de
-LilyPond : une expression musicale peut être réutilisée sans effort.
+LilyPond@tie{}: une expression musicale peut être réutilisée sans effort.
 Toute modification apportée à l'une des voix, mettons @code{tenorMusique},
 sera automatiquement reportée dans la réduction pour piano.
 
@@ -61,6 +75,14 @@ reduction.
   doctitle = "Vocal ensemble template with automatic piano reduction"
 } % begin verbatim
 
+
+\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
+}
+
 global = {
   \key c \major
   \time 4/4
@@ -97,13 +119,20 @@ bassWords = \lyricmode {
 \score {
   <<
     \new ChoirStaff <<
-      \new Lyrics = "sopranos"
+      \new Lyrics = "sopranos" \with {
+        % This is needed for lyrics above a staff
+        \override VerticalAxisGroup #'staff-affinity = #DOWN
+      }
       \new Staff = "women" <<
         \new Voice = "sopranos" { \voiceOne << \global \sopMusic >> }
         \new Voice = "altos" { \voiceTwo << \global \altoMusic >> }
       >>
       \new Lyrics = "altos"
-      \new Lyrics = "tenors"
+      \new Lyrics = "tenors" \with {
+        % This is needed for lyrics above a staff
+        \override VerticalAxisGroup #'staff-affinity = #DOWN
+      }
+
       \new Staff = "men" <<
         \clef bass
         \new Voice = "tenors" { \voiceOne << \global \tenorMusic >> }
@@ -132,4 +161,3 @@ bassWords = \lyricmode {
     >>
   >>
 }
-