]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/partial-in-mid-piece.ly
Merge branch 'master' of /home/jcharles/GIT/Lily/. into translation
[lilypond.git] / input / regression / partial-in-mid-piece.ly
1 \version "2.19.11"
2
3 \header {
4   texidoc = "@code{\\partial} can be can be called in mid-piece in
5 multiple contexts."
6 }
7
8
9 melodyOne = \relative {
10   \time 6/8
11   a'8 a a a a a |
12   \partial 8
13   d8 |
14   c8 c c c c c |
15 }
16
17 chordsOne = \chordmode {
18   \time 6/8
19   a2. |
20   \partial 8
21   s8 |
22   a2. |
23 }
24
25 \score {
26   <<
27     \set Score.barNumberVisibility = #all-bar-numbers-visible
28     \override Score.BarNumber.break-visibility = #all-visible
29     \new ChordNames { \chordsOne }
30     \new Staff { \melodyOne }
31   >>
32 }