On 11/06/11 13:31, Marc Mouries wrote:


in the following code, lily prints both a natural and sharp sign before the G #.

Why?
Is there a way to avoid that?

\version "2.14"
\language "english"
{ \relative d' {
    \key df \major
     df ef f gs af bf c df
}
}


You can change this by setting accidental style to modern:

\version "2.14.0"

\language "english"

\score {
<<
    \new Staff {
        #(set-accidental-style 'modern)
        \relative d' {
            \key df \major
             df ef f gs af bf c df
        }
    }
>>
}

Nick

<<attachment: test.preview.png>>

_______________________________________________
lilypond-user mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to