]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/filter-translators.ly
Doc-es: various updates.
[lilypond.git] / input / regression / filter-translators.ly
1 \version "2.16.0"
2
3 \header {
4   texidoc = "Context modification via @code{\\with} filters translators
5 of the wrong type: performers for an @code{Engraver_group} and engravers
6 for a @code{Performer_group}.  In this test, the
7 @code{Instrument_name_engraver} is added to a @code{StaffGroup}, but
8 does not affect midi output, since it is filtered out."
9 }
10
11 \score {
12   \new StaffGroup \with {
13     \consists "Instrument_name_engraver"
14     instrumentName = #"StaffGroup"
15   }
16   {
17     a'1
18   }
19   \layout { }
20   \midi { }
21 }