lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Inserting lyrics in a global situation


From: Pierre Perol-Schneider
Subject: Re: Inserting lyrics in a global situation
Date: Mon, 13 May 2019 09:37:21 +0200

Hi Vicente,

try simply:
...
lyr = \lyricmode {
  A -- ve, a -- ve ve -- rum
}
...
  \new StaffGroup <<
        \new Staff \with { instrumentName = \markup {\bold
#"Soprano." }} << \global \sop \addlyrics \lyr >>
        \new Staff \with { instrumentName = \markup {\bold #"Alto." }}
<< \global \alt \addlyrics \lyr >>
        \new Staff \with { instrumentName = \markup {\bold #"Tenore."
}} << \global \ten \addlyrics \lyr >>
        \new Staff \with { instrumentName = \markup {\bold #"Basso."
}} << \global \bass \addlyrics \lyr >>
  >>
... etc

HTH
Cheers,
Pierre

Le lun. 13 mai 2019 à 07:02, Vicente Sanches
<address@hidden> a écrit :
>
> Hi,
> I'm editing the Mozart's Ave Verum for a college work.
> As there are many instruments and voices, i tried to organize things 
> separating notes from staff and layout information, but i don't know how to 
> insert lyrics in such organizational structure.
>
> the skeleton of the doc looks like this:
>
> \version "2.18.2"
>
> \header {
>   title = "Ave Verum"
>   composer = "W. A. Mozart"
>
> }
>
> global = {
>   \key d \major
>   \time 2/2
>   \tempo "Adagio."
>
>   \repeat unfold 18 { s1*2/2 | }
>
>   \bar "|"
> }
>
> vlnOne = \relative c'' {
>
> }
>
> vlnTwo = \relative c'' {
>
> }
>
> vla = \relative c'' {
>   \clef alto
>
> }
>
> sop = \relative c''{
>
> }
>
> alt = \relative c''{
>
> }
>
> ten = \relative c''{
>   \clef "treble_8"
>
> }
>
> bass = \relative c' {
>
> }
>
> dbo = \relative c' {
>   \clef bass
>  }
>
> \book {
>   \score {
>     \new StaffGroup <<
>       \new GrandStaff <<
>           \new Staff \with { instrumentName = #"Violino I." } << \global 
> \vlnOne  >>
>           \new Staff \with { instrumentName = #"Violino II." } << \global 
> \vlnTwo >>
>     >>
>           \new Staff \with { instrumentName = #"Viola." } << \global \vla >>
>
>
>     \new StaffGroup <<
>           \new Staff \with { instrumentName = \markup {\bold  #"Soprano." }} 
> << \global \sop >>
>           \new Staff \with { instrumentName = \markup {\bold #"Alto." }} << 
> \global \alt >>
>           \new Staff \with { instrumentName = \markup {\bold #"Tenore." }} << 
> \global \ten >>
>           \new Staff \with { instrumentName = \markup {\bold #"Basso." }} << 
> \global \bass >>
>     >>
>
>           \new Staff \with { instrumentName = #"Basso ed Organo." } << 
> \global \dbo >>
>
>     >>
>   }
>   }
>
>
> _______________________________________________
> lilypond-user mailing list
> address@hidden
> https://lists.gnu.org/mailman/listinfo/lilypond-user



reply via email to

[Prev in Thread] Current Thread [Next in Thread]