]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/tuplet-broken.ly
Fix some bugs in the dynamic engraver and PostScript backend
[lilypond.git] / input / regression / tuplet-broken.ly
1
2 \header
3 {
4
5   texidoc = "Broken tuplets are adorned with little arrows. The arrows
6   come from the @code{edge-text} property, and thus be replaced with
7   larger glyphs or other text. "
8
9 }
10
11 \version "2.7.39"
12
13 \paper {
14   ragged-right = ##t  
15   indent = 0.0
16 }
17
18
19 \relative c'' {
20   \set tupletNumberFormatFunction = #fraction-tuplet-formatter
21
22   \override TupletBracket #'edge-text = #(cons
23                                           (markup #:fontsize 6
24                                              #:arrow-head X LEFT #f)
25                                           (markup #:arrow-head X RIGHT #f))
26   \times 11/19 {
27     c4 c4 c4 c4
28     \bar "empty" \break
29     c4 c4 c4 c4
30     c4 c4 c4 c4
31     \bar "empty" \break
32     c4 c4 c4 c4
33     c4 c4 c4 
34   }
35 }