]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/multi-measure-rest-instr-name.ly
074a19a4211144f85551bc1111dd1a555ef4ae2b
[lilypond.git] / input / regression / multi-measure-rest-instr-name.ly
1 \version "2.6.0"
2 \header {
3
4     texidoc = "There are both long and short instrument names.
5 Engraving instrument names should not be confused by the
6 multimeasure rests. "
7
8 }
9
10 \score{
11     \context Staff <<
12         \set Staff.instrument = "instrument"
13         \set Staff.instr = "instr"
14         {c''1 \break R1 }
15     >>
16     \layout {
17         raggedright = ##t
18         \context {
19             \Staff
20             \consists Instrument_name_engraver
21
22         }
23     }
24 }
25
26
27