]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/breve-extent.ly
Run scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / input / regression / breve-extent.ly
1 \version "2.16.0"
2
3 \header  {
4   texidoc = "LilyPond knows that breves and longas are wider than whole notes
5   (because of vertical lines on their sides).  Breves and longas don't collide
6   with accidentals, barlines, neighbor notes etc.  The distance between
7   accidental and note is the same for whole notes, breves and longas."
8 }
9
10
11   gis'1
12   gis'\breve*1/2
13   gis'\longa*1/4
14   \override NoteHead #'style = #'altdefault 
15   gis'\breve*1/2
16 }
17
18 \score {
19     \new Staff {
20       \repeat unfold 8 { a'\breve*1/16 }
21       \override NoteHead #'style = #'altdefault 
22       \repeat unfold 8 { a'\breve*1/16 }
23     }
24     \layout {
25         \context {
26             \Score
27             \override SpacingSpanner
28             #'common-shortest-duration = #(ly:make-moment 1 1 )
29         }
30     }
31 }