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=a4bbc993cb3cb7098d470dd9a365869c5b8f3814;hb=7f2a45dd1f9e2b326282f8be152a916180a85c8c;hp=a98cf4f4b5448f739c88bc7e9cc56a8d4ab17cf4;hpb=94408d4a2e538e8812561f29e09116ede58dd042;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 a98cf4f4b5..a4bbc993cb 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.29" +\version "2.13.39" \header { lsrtags = "text, vocal-music, contexts-and-engravers, template" -%% Translation of GIT committish: 0b55335aeca1de539bf1125b717e0c21bb6fa31b +%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94 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 @@ -16,11 +16,13 @@ colocan utilizando @code{alignAboveContext} y " doctitlees = "Plantilla para conjunto vocal con letras alineadas encima y debajo de los pentagramas" + %% Translation of GIT committish: fa1aa6efe68346f465cfdb9565ffe35083797b86 texidocja = " このテンプレートは基本的に単純な \"合唱\" テンプレートと同じですが、歌詞が @code{alignAboveContext} と @code{alignBelowContext} を用いて配置されています。 " + %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40 texidocde = " In diesem Beispiel werden die Texte mit den Befehlen @@ -30,6 +32,7 @@ In diesem Beispiel werden die Texte mit den Befehlen doctitlede = "Vorlage für Vokalensemble mit dem Gesangstext über und unter dem System" + %% Translation of GIT committish: bdfe3dc8175a2d7e9ea0800b5b04cfb68fe58a7a texidocfr = " Ce canevas ressemble beaucoup à celui pour chœur à quatre voix mixtes. @@ -83,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) - } - } }