lilypond-user
[Top][All Lists]
Advanced

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

Re: Accidentals and Fingerings


From: Trevor Daniels
Subject: Re: Accidentals and Fingerings
Date: Sun, 31 Jan 2010 00:13:51 -0000


copied to bug list

David Stocker wrote Friday, January 29, 2010 3:12 PM


Is there any reason why fingerings in these two chords should behave
differently relative to the noteheads in their respective chords?

It is because the first note in the first chord
carries the visible accidental, but not in the
second chord.  If you rewrite the order of the notes
in the second chord like this <a'!-1 fs-3 d'-2> so
the note with the natural sign comes first the
fingerings are placed correctly.

This bug was first reported in

http://lists.gnu.org/archive/html/bug-lilypond/2008-11/msg00055.html

and the bug is issue 728 in the tracker

Trevor

%%%%minimal example%%%%

\version "2.13"

\include "english.ly"

fingers = {
 \relative c {
   <ds-1 a'-3>4 r r2
   <fs-3 a!-1 d-2>4 r r2
 }
}

thumb = {
 \relative c {
   <b-2>4 r r2
   <b-1>4 r r2
 }
}

\score {
 \new Staff = "Guitar" {
   \clef "treble_8"
   \key d \major
   \time 4/4
   <<
     \new Voice = "fingers" {
   \voiceOne
   \set fingeringOrientations = #'(left)
   \override Fingering #'font-size = #-6
   \fingers
     }
     \new Voice = "thumb" {
   \voiceTwo
   \set fingeringOrientations = #'(left)
   \override Fingering #'font-size = #-6
   \thumb
     }
   >>
 }

%%%%end minimal example%%%%







reply via email to

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