]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/repeat-volta-segno.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / input / regression / repeat-volta-segno.ly
1 \version "2.19.21"
2
3 \header {
4   texidoc="
5   The segno sign should be automatically combined with the
6   appropriate repeat bar line when @code{\inStaffSegno} is
7   used.
8 "
9 }
10
11 \relative {
12   c'1
13   \inStaffSegno
14   c2^"no repeat" c c c
15   \repeat volta 2 {
16     \inStaffSegno  % start repeat
17   c2^"start repeat" c c c
18   }
19   \break
20   c1
21   \repeat volta 2 {
22   c2 c c c^"end repeat"
23     \inStaffSegno  % end repeat
24   }
25   c2 c c c
26   \repeat volta 2 {
27   c2 c c c
28   }
29   \inStaffSegno  % double repeat
30   \repeat volta 2 {
31   c2^"double repeat" c c c
32   }
33 }