]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/repeat-tremolo-three-notes.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / input / regression / repeat-tremolo-three-notes.ly
1 \version "2.19.21"
2
3 \header {
4   texidoc = "A tremolo can have more than two notes. Also check that
5 linebreaks between tremolos still work and that empty tremolos don't crash."
6 }
7
8 \paper { ragged-right = ##t }
9 \score {
10   \new Staff \relative {
11     \time 3/4
12     \repeat tremolo 16 { a64 c e } |
13     \repeat tremolo 8 { a,64 c e }
14     \repeat tremolo 4 { a,64 c e }
15     \repeat tremolo 2 { a,32 c e } |\break
16     \repeat tremolo 16 { a64 c e }
17     \repeat tremolo 8 {} |
18   }
19 }