]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/accidental-suggestions.ly
Fix off-by-one error in constrained-breaking.
[lilypond.git] / input / regression / accidental-suggestions.ly
1
2 \header {
3
4  texidoc = "setting the @code{suggestAccidentals} will print
5 accidentals vertically relative to the note.  This is useful for
6 denoting Musica Ficta."
7  
8 }
9
10 \version "2.10.0"
11 \paper {
12   ragged-right = ##t
13 }
14
15 \relative c'' {
16   \time 2/4 
17   \set suggestAccidentals = ##t 
18   cis^> gis'-|
19   \override AccidentalSuggestion #'cautionary-style = #'parentheses
20   cis,_"paren" gis'
21   \override AccidentalSuggestion #'cautionary-style = #'()
22   cis,_"no caut style"  gis'
23
24 }
25   
26