lilypond-user
[Top][All Lists]
Advanced

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

Re: Confused about output


From: Malte Meyn
Subject: Re: Confused about output
Date: Wed, 25 Nov 2015 08:10:24 +0100
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.3.0



Am 25.11.2015 um 02:19 schrieb Shane Brandes:
After fiddling with this for hours i cannot figure out why the added
lyrics e and i drop below the bass as opposed to the voices they ought
to be associated with which is here "melody" and "mel" that live on
the soprano staff. What am I missing?

You can use alignBelowContext. I must admit I didn’t really overlook your code structure so I didn’t use any variables. But it should be possible with your code structure too.

\version "2.18.2"

\score {
  <<
    \new Staff \with {
      instrumentName = "Soprano"
    } \new Voice = "soprano_v1" {
      a2
      <<
        c'
        \new Voice {
          \voiceTwo a
        }
        \new Lyrics \with {
          alignBelowContext = "soprano_l1"
        } \lyricmode {
          i
        }
      >>
    }
    \new Lyrics = "soprano_l1" \lyricsto "soprano_v1" {
      a e
    }
    \new Staff \with {
      instrumentName = "Bass"
    } \relative {
      \clef bass
      f e
    }
    \addlyrics {
      o u
    }
  >>
}



reply via email to

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