X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fvocal-ensemble-template-with-lyrics-aligned-below-and-above-the-staves.ly;h=8f697d60a12b8308910582880bc48ff58c698fa0;hb=adc6cbf9a271370c1453bfca918f810d9f2906f1;hp=05e4f8ea3ab03815fd095418d2c99e201b0dd0f2;hpb=162b5d842f34770c92b173878348a0afcc81f281;p=lilypond.git diff --git a/Documentation/snippets/vocal-ensemble-template-with-lyrics-aligned-below-and-above-the-staves.ly b/Documentation/snippets/vocal-ensemble-template-with-lyrics-aligned-below-and-above-the-staves.ly index 05e4f8ea3a..8f697d60a1 100644 --- a/Documentation/snippets/vocal-ensemble-template-with-lyrics-aligned-below-and-above-the-staves.ly +++ b/Documentation/snippets/vocal-ensemble-template-with-lyrics-aligned-below-and-above-the-staves.ly @@ -1,12 +1,12 @@ %% Do not edit this file; it is automatically %% generated from LSR http://lsr.dsi.unimi.it %% This file is in the public domain. -\version "2.13.16" +\version "2.12.2" \header { lsrtags = "text, vocal-music, contexts-and-engravers, template" -%% Translation of GIT committish: 5a7301fc350ffc3ab5bd3a2084c91666c9e9a549 +%% Translation of GIT committish: fa19277d20f8ab0397c560eb0e7b814bd804ecec texidoces = " Esta plantilla es, básicamente, la misma que la sencilla plantilla @qq{Conjunto vocal}, excepto que aquí todas las líneas de letra se @@ -86,33 +86,25 @@ bassWords = \lyricmode { \score { \new ChoirStaff << - \new Staff = women << + \new Staff = "women" << \new Voice = "sopranos" { \voiceOne << \global \sopMusic >> } \new Voice = "altos" { \voiceTwo << \global \altoMusic >> } >> - \new Lyrics \with { alignAboveContext = women } \lyricsto sopranos \sopWords - \new Lyrics \with { alignBelowContext = women } \lyricsto altos \altoWords + \new Lyrics \with { alignAboveContext = #"women" } \lyricsto "sopranos" \sopWords + \new Lyrics \with { alignBelowContext = #"women" } \lyricsto "altos" \altoWords % we could remove the line about this with the line below, since we want % the alto lyrics to be below the alto Voice anyway. - % \new Lyrics \lyricsto altos \altoWords + % \new Lyrics \lyricsto "altos" \altoWords - \new Staff = men << + \new Staff = "men" << \clef bass \new Voice = "tenors" { \voiceOne << \global \tenorMusic >> } \new Voice = "basses" { \voiceTwo << \global \bassMusic >> } >> - \new Lyrics \with { alignAboveContext = men } \lyricsto tenors \tenorWords - \new Lyrics \with { alignBelowContext = men } \lyricsto basses \bassWords + \new Lyrics \with { alignAboveContext = #"men" } \lyricsto "tenors" \tenorWords + \new Lyrics \with { alignBelowContext = #"men" } \lyricsto "basses" \bassWords % again, we could replace the line above this with the line below. - % \new Lyrics \lyricsto basses \bassWords + % \new Lyrics \lyricsto "basses" \bassWords >> - \layout { - \context { - % a little smaller so lyrics - % can be closer to the staff - \Staff - \override VerticalAxisGroup #'minimum-Y-extent = #'(-3 . 3) - } - } }