]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/lyric-hyphen-break.ly
Fix off-by-one error in constrained-breaking.
[lilypond.git] / input / regression / lyric-hyphen-break.ly
1 \version "2.10.0"
2
3 \header {
4
5   texidoc = "Hyphens are print at the beginning of the line only when
6 they go past the first note. "
7
8 }
9
10
11 <<
12   \new Staff \relative c'' {
13     \time 1/4 c16[ c c  c]
14     \time 1/4
15     c16[ c c c]
16     \time 1/4
17     r c16[ c c]
18
19   }
20   \new Lyrics \lyricmode {
21     bla16 -- bla -- bla -- bla --
22     bla -- bla -- bla -- bla8 --
23     bla16 -- bla -- bla 
24   }
25 >>
26   \layout   {
27     indent = 0.0 \cm
28     line-width = 3.4 \cm
29
30     \context {
31       \Staff \remove "Time_signature_engraver"
32     }
33   }
34   
35
36
37