]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/tuplet-broken.ly
* input/regression/markup-arrows.ly: new file.
[lilypond.git] / input / regression / tuplet-broken.ly
1
2 \header
3 {
4   texidoc = "Broken tuplets are adorned with little arrows."
5 }
6 \version "2.7.4"
7
8 \paper {
9   raggedright = ##t  
10   indent = 0.0
11 }
12
13
14 \relative c'' {
15   \set tupletNumberFormatFunction = #fraction-tuplet-formatter
16
17   \override TupletBracket #'edge-text = #(cons
18                                           (markup #:fontsize 6
19                                              #:arrow-head 0 -1 #f)
20                                           (markup #:arrow-head 0 1 #f))
21   \times 11/19 {
22     c4 c4 c4 c4
23     \bar "empty" \break
24     c4 c4 c4 c4
25     c4 c4 c4 c4
26     \bar "empty" \break
27     c4 c4 c4 c4
28     c4 c4 c4 
29   }
30 }