lilypond-user
[Top][All Lists]
Advanced

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

Re: Ties and Accidentals


From: Karl Hammar
Subject: Re: Ties and Accidentals
Date: Mon, 01 Jan 2007 22:04:42 +0100

>    Can anyone recommend a more elegant way to force the second of a pair 
> of tied notes to display an accidental?  I have been using constructions 
> such as this:

You could fake it with:

\layout {
  raggedright = ##t
}

\score{{
   #(set-accidental-style 'forget)
   \clef bass
   <<
     {
       \override NoteHead #'transparent = ##t
       \override Stem #'transparent = ##t
       \override Beam #'transparent = ##t
       ees'4 ees'4


     } \\
     {
       \tieUp
       ees'4~ ees'4
     }

   >>
   \override Staff.Tie #'minimum-length = #3.6
   \override Staff.TextScript #'extra-offset = #'(-1.1 . -1.6)
   ees'~ ees'^\markup{\flat}
}}


But that is a lot of manual tweeking.

/Regards
Karl




reply via email to

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