]> git.donarmstrong.com Git - lilypond.git/blob - accidental-tie.ly
04a4b372d1fb5e6b82325fd4f661d392072ac493
[lilypond.git] / accidental-tie.ly
1 \version "2.12.0"
2
3 \header {
4   texidoc = "The second and third notes should not get accidentals,
5     because they are tied to a note.  However, an accidental is
6     present if the line is broken at the tie, which happens for the G
7     sharp."
8
9 }
10 \layout {
11   ragged-right = ##t
12 }
13
14 mus =   \relative c' {
15   f1~
16   f2~f4 % ~ f8
17   fis8  gis8 ~
18   \break
19   gis1
20 }
21
22 <<
23   \new NoteNames \mus
24   \new Voice { \key g \major \mus }
25 >>