No instrument names in instrument score, they are already in the title/header!
[orchestrallily.git] / oly_settings_instrument.ily
blob7dd97b4c9c8c6f1ac5f3b5efa3cf12c32788c452
1 % lilypond settings for instrumental scores
2 % changes to the global score settings for single-instrument sheets
3 \include "orchestrallily/oly_settings_global.ily"
6 \paper {
7   ragged-bottom = ##f
8   ragged-last-bottom = ##f
9   % Allow line-breaks only at rests!
10   #(define page-breaking ly:page-turn-breaking)
11   % Prevent blank pages inside the score
12   blank-page-force = #100000
13   blank-after-score-page-force = #100000
15 \layout {
16   \context {  \Staff
17     % No instrument names, they are already in the title/header!
18     \remove "Instrument_name_engraver"
19   }
20   \context {  \StaffGroup
21     % No instrument names, they are already in the title/header!
22     \remove "Instrument_name_engraver"
23   }
24   \context {
25     \RemoveEmptyStaffContext 
26     % No instrument names, they are already in the title/header! (Removing 
27     % the engraver only from the \Staff context is not sufficient!)
28     \remove "Instrument_name_engraver"
29   }
32 \layout {
33   \context { \Staff
34     \consists "Page_turn_engraver"
35     minimumPageTurnLength = #(ly:make-moment 9 8)
36   }