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=505f917a4ef584e297394ea160acc0127f78c0bb;hb=826b67718096de62e7564e19a05402740138398c;hp=0cb6667d65740abfa3a3ba5b28b444036d5cf0d8;hpb=4e8f3c896223d20f0504d480e04fa764a565fd81;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 0cb6667d65..505f917a4e 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,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.13.29" +\version "2.14.0" \header { lsrtags = "text, vocal-music, contexts-and-engravers, template" -%% Translation of GIT committish: 0b55335aeca1de539bf1125b717e0c21bb6fa31b +%% Translation of GIT committish: 70f5f30161f7b804a681cd080274bfcdc9f4fe8c 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 @@ -23,6 +26,15 @@ colocan utilizando @code{alignAboveContext} y @code{alignAboveContext} と @code{alignBelowContext} を用いて配置されています。 " +%% Translation of GIT committish: 514674cb00c18629242dfcde0c1a4976758adc56 + texidocit = " +Questo modello è fondamentalmente analogo al semplice modello @qq{Complesso vocale}, +con l'unica differenza che qui tutti i versi del testo sono posizionati +usando @code{alignAboveContext} e @code{alignBelowContext}. + +" + doctitleit = "Modello per gruppo vocale con testo allineato sotto e sopra i righi" + %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40 texidocde = " In diesem Beispiel werden die Texte mit den Befehlen @@ -86,33 +98,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) - } - } }