lilypond-user
[Top][All Lists]
Advanced

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

Re: Inputting fingerings separate from melody?


From: Davide Liessi
Subject: Re: Inputting fingerings separate from melody?
Date: Mon, 20 Jan 2020 19:50:47 +0100

Il giorno lun 20 gen 2020 alle ore 18:42 Jean-Julien Fleck
<address@hidden> ha scritto:
> Won't it be colliding if you replace f' by a' ?

You are right: I forgot to explicitly initiate a new Voice.
See below the fixed example.

Best wishes.
Davide

\version "2.18.2"

music-with-fingerings = {
  c'4-1 d'4-2
  a'4\finger \markup \tied-lyric #"4~3"
  c'4\finger "2 - 3"
}

\score {
  \new Staff {
    \music-with-fingerings
  }
}

music = {
  c'4 d'4 a'4 c'4
}

fingerings = {
  s4-1 s4-2
  s4\finger \markup \tied-lyric #"4~3"
  s4\finger "2 - 3"
}

\score {
  \new Staff {
    \new Voice <<
      \music
      \fingerings
    >>
  }
}



reply via email to

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