]> git.donarmstrong.com Git - lilypond.git/blob - ly/engraver-init.ly
Metronome mark: check for interface rather than grob name in non-break-aligned.
[lilypond.git] / ly / engraver-init.ly
1 %%%% This file is part of LilyPond, the GNU music typesetter.
2 %%%%
3 %%%% Copyright (C) 1996--2010 Han-Wen Nienhuys <hanwen@xs4all.nl>
4 %%%%                          Jan Nieuwenhuizen <janneke@gnu.org>
5 %%%%
6 %%%% LilyPond is free software: you can redistribute it and/or modify
7 %%%% it under the terms of the GNU General Public License as published by
8 %%%% the Free Software Foundation, either version 3 of the License, or
9 %%%% (at your option) any later version.
10 %%%%
11 %%%% LilyPond is distributed in the hope that it will be useful,
12 %%%% but WITHOUT ANY WARRANTY; without even the implied warranty of
13 %%%% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 %%%% GNU General Public License for more details.
15 %%%%
16 %%%% You should have received a copy of the GNU General Public License
17 %%%% along with LilyPond.  If not, see <http://www.gnu.org/licenses/>.
18
19 \version "2.13.27"
20
21 \context {
22   \name "Global"
23
24   \accepts "Score"
25
26   \defaultchild "Score"
27   \description "Hard coded entry point for LilyPond.  Cannot be tuned."
28   \grobdescriptions #all-grob-descriptions
29 }
30
31 \context {
32   \type "Engraver_group"
33   \name "FretBoards"
34   \description "A context for displaying fret diagrams."
35
36   \consists "Fretboard_engraver"
37   \consists "Output_property_engraver"
38   \consists "Hara_kiri_engraver"
39   \consists "Separating_line_group_engraver"
40   \consists "Font_size_engraver"
41   \consists "Instrument_name_engraver"
42
43   predefinedDiagramTable = #fretboard-table
44 }
45
46 \context {
47   \type "Engraver_group"
48   \name "Staff"
49
50   \consists "Output_property_engraver"
51   \consists "Bar_engraver"
52   %% Bar_engraver must be first so default bars aren't overwritten
53   %% with empty ones.
54
55   \consists "Font_size_engraver"
56   \consists "Separating_line_group_engraver"
57   \consists "Dot_column_engraver"
58   \consists "Staff_collecting_engraver"
59
60  %% perhaps move to Voice context?
61   \consists "Ottava_spanner_engraver"
62   \consists "Clef_engraver"
63   \consists "Key_engraver"
64   \consists "Time_signature_engraver"
65   \consists "Ledger_line_engraver"
66   \consists "Staff_symbol_engraver"
67   \consists "Collision_engraver"
68   \consists "Grob_pq_engraver"
69   \consists "Rest_collision_engraver"
70   \consists "Accidental_engraver"
71   \consists "Piano_pedal_engraver"
72   \consists "Piano_pedal_align_engraver"
73   \consists "Instrument_name_engraver"
74   \consists "Axis_group_engraver"
75   \consists "Figured_bass_engraver"
76   \consists "Figured_bass_position_engraver"
77   \consists "Script_row_engraver"
78
79   localKeySignature = #'()
80   createSpacing = ##t
81   ignoreFiguredBassRest = ##f
82
83   %% explicitly set instrument, so we don't get
84   %% weird effects when doing instrument names for
85   %% piano staves
86
87   instrumentName = #'()
88   shortInstrumentName = #'()
89
90   \defaultchild "Voice"
91   \accepts "Voice"
92   \accepts "CueVoice"
93
94   \description "Handles clefs, bar lines, keys, accidentals.  It can contain
95 @code{Voice} contexts."
96
97 }
98
99 \context {
100   \Staff
101   \type "Engraver_group"
102   \name "DrumStaff"
103   \alias "Staff"
104
105   \remove "Accidental_engraver"
106   \remove "Ottava_spanner_engraver"
107   \remove "Key_engraver"
108   \remove "Piano_pedal_engraver"
109
110   \description "Handles typesetting for percussion."
111
112   \denies "Voice"
113   \accepts "DrumVoice"
114   \defaultchild "DrumVoice"
115
116   clefGlyph = #"clefs.percussion"
117   clefPosition = #0
118   \override Script #'staff-padding = #0.75
119 }
120
121
122 \context {
123   \type "Engraver_group"
124   \name "ChoirStaff"
125   \consists "Vertical_align_engraver"
126   topLevelAlignment = ##f
127
128   \consists "System_start_delimiter_engraver"
129   systemStartDelimiter = #'SystemStartBracket
130   vocalName = #'()
131   shortVocalName = #'()
132
133   \accepts "Staff"
134   \accepts "DrumStaff"
135   \accepts "RhythmicStaff"
136   \accepts "GrandStaff"
137   \accepts "PianoStaff"
138   \accepts "Lyrics"
139   \accepts "ChordNames"
140   \accepts "FiguredBass"
141   \accepts "ChoirStaff"
142   \accepts "StaffGroup"
143   \defaultchild "Staff"
144   \description "Identical to @code{StaffGroup} except that the
145 contained staves are not connected vertically."
146 }
147
148 \context{
149   \type "Engraver_group"
150
151   localKeySignature = #'()
152   createSpacing = ##t
153
154   squashedPosition = #0
155   \name RhythmicStaff
156   \alias "Staff"
157
158   \override BarLine #'bar-size = #4
159   \override VoltaBracket #'staff-padding = #3
160   \override StaffSymbol #'line-count = #1
161
162   \override Stem  #'neutral-direction = #UP
163   \override Beam  #'neutral-direction = #UP
164
165   \consists "Output_property_engraver"
166   \consists "Font_size_engraver"
167   \consists "Separating_line_group_engraver"
168   \consists "Dot_column_engraver"
169   \consists "Bar_engraver"
170   \consists "Staff_symbol_engraver"
171   \consists "Pitch_squash_engraver"
172   \consists "Time_signature_engraver"
173   \consists "Instrument_name_engraver"
174   \consists "Axis_group_engraver"
175   \consists "Ledger_line_engraver"
176
177   \accepts "Voice"
178   \accepts "CueVoice"
179   \defaultchild "Voice"
180
181   \description "A context like @code{Staff} but for printing rhythms.
182 Pitches are ignored; the notes are printed on one line."
183 }
184
185
186 \context {
187   \type "Engraver_group"
188   \name "Voice"
189
190   \description "Corresponds to a voice on a staff.  This context
191 handles the conversion of dynamic signs, stems, beams, super- and
192 subscripts, slurs, ties, and rests.
193
194 You have to instantiate this explicitly if you want to have
195 multiple voices on the same staff."
196
197   localKeySignature = #'()
198   \consists "Font_size_engraver"
199
200   \consists "Pitched_trill_engraver"
201   \consists "Output_property_engraver"
202   \consists "Arpeggio_engraver"
203   \consists "Multi_measure_rest_engraver"
204   \consists "Text_spanner_engraver"
205   \consists "Trill_spanner_engraver"
206   \consists "Grob_pq_engraver"
207   \consists "Forbid_line_break_engraver"
208   \consists "Laissez_vibrer_engraver"
209   \consists "Repeat_tie_engraver"
210   \consists "Note_head_line_engraver"
211   \consists "Glissando_engraver"
212   \consists "Ligature_bracket_engraver"
213   \consists "Breathing_sign_engraver"
214   \consists "Note_heads_engraver"
215   \consists "Dots_engraver"
216   \consists "Rest_engraver"
217   \consists "Tweak_engraver"
218
219   %% switch on to make stem directions interpolate for the
220   %% center line.
221   %  \consists "Melody_engraver"
222
223   \consists "Stem_engraver"
224   \consists "Beam_engraver"
225   \consists "Grace_beam_engraver"
226   \consists "Auto_beam_engraver"
227
228   %% must come before Script_column_engraver.
229   \consists "New_fingering_engraver"
230
231   \consists "Chord_tremolo_engraver"
232   \consists "Percent_repeat_engraver"
233   \consists "Slash_repeat_engraver"
234   \consists "Part_combine_engraver"
235
236   \consists "Text_engraver"
237   \consists "New_dynamic_engraver"
238   \consists "Dynamic_align_engraver"
239 %  \consists "Dynamic_engraver"
240   \consists "Fingering_engraver"
241   \consists "Bend_engraver"
242
243   \consists "Script_engraver"
244   \consists "Script_column_engraver"
245   \consists "Rhythmic_column_engraver"
246   \consists "Note_spacing_engraver"
247   \consists "Spanner_break_forbid_engraver"
248   \consists "Phrasing_slur_engraver"
249   \consists "Cluster_spanner_engraver"
250   \consists "Slur_engraver"
251   \consists "Tie_engraver"
252   \consists "Tuplet_engraver"
253   \consists "Grace_engraver"
254   \consists "Instrument_switch_engraver"
255 }
256
257 \context{
258   \Voice
259
260   \name CueVoice
261   \alias Voice
262   fontSize = #-4
263   \override Stem #'length-fraction = #(magstep -4)
264   \override Beam #'length-fraction = #(magstep -4)
265   \override Beam #'beam-thickness = #0.35
266 }
267
268 \context {
269   \Voice
270   \name DrumVoice
271   \alias Voice
272
273   \description "A voice on a percussion staff."
274   \remove "Arpeggio_engraver"
275   \consists "Grob_pq_engraver"
276
277   \remove "Note_head_line_engraver"
278   \remove "Glissando_engraver"
279   \remove "Ligature_bracket_engraver"
280   \remove "Note_heads_engraver"
281   \consists "Drum_notes_engraver"
282   \remove "New_fingering_engraver"
283
284   \remove "Fingering_engraver"
285
286   \remove "Cluster_spanner_engraver"
287 }
288
289 \context{
290   \type "Engraver_group"
291   \name GrandStaff
292   localKeySignature = #'()
293
294   \description "A group of staves, with a brace on the left
295 side, grouping the staves together.  The bar lines of the
296 contained staves are connected vertically."
297
298   \consists "Span_bar_engraver"
299   \consists "Span_arpeggio_engraver"
300   \consists "System_start_delimiter_engraver"
301   systemStartDelimiter = #'SystemStartBrace
302
303   \defaultchild "Staff"
304   \accepts "Staff"
305   \accepts "FiguredBass"
306   \accepts "Dynamics"
307 }
308
309 \context{
310   \GrandStaff
311   \name "PianoStaff"
312   \alias "GrandStaff"
313
314   \description "Just like @code{GrandStaff} but with support for
315 instrument names at the start of each system."
316
317   \consists "Instrument_name_engraver"
318   \consists "Vertical_align_engraver"
319   \consists "Keep_alive_together_engraver"
320   topLevelAlignment = ##f
321
322   \override StaffGrouper #'between-staff-spacing #'stretchability = #5
323
324   instrumentName = #'()
325   shortInstrumentName = #'()
326 }
327
328 \context {
329   \type "Engraver_group"
330   \name "StaffGroup"
331
332   \consists "Vertical_align_engraver"
333   topLevelAlignment = ##f
334
335   \consists "Span_bar_engraver"
336   \consists "Span_arpeggio_engraver"
337   \consists "Output_property_engraver"
338   systemStartDelimiter = #'SystemStartBracket
339
340   \consists "System_start_delimiter_engraver"
341
342   \defaultchild "Staff"
343   \accepts "Staff"
344   \accepts "RhythmicStaff"
345   \accepts "DrumStaff"
346   \accepts "GrandStaff"
347   \accepts "PianoStaff"
348   \accepts "TabStaff"
349   \accepts "Lyrics"
350   \accepts "ChordNames"
351   \accepts "FiguredBass"
352   \accepts "ChoirStaff"
353   \accepts "StaffGroup"
354
355   \description "Groups staves while adding a bracket on the left
356 side, grouping the staves together.  The bar lines of the contained
357 staves are connected vertically.  @code{StaffGroup} only consists of
358 a collection of staves, with a bracket in front and spanning bar lines."
359 }
360
361 \context {
362   \type "Engraver_group"
363   \name Dynamics
364   \alias Voice
365   \consists "Output_property_engraver"
366   \consists "Bar_engraver"
367   \consists "Piano_pedal_engraver"
368   \consists "Script_engraver"
369   \consists "New_dynamic_engraver"
370   \consists "Dynamic_align_engraver"
371   \consists "Text_engraver"
372   \consists "Text_spanner_engraver"
373   \consists "Axis_group_engraver"
374
375   pedalSustainStrings = #'("Ped." "*Ped." "*")
376   pedalUnaCordaStrings = #'("una corda" "" "tre corde")
377   \override VerticalAxisGroup #'staff-affinity = #CENTER
378   \override VerticalAxisGroup #'inter-staff-spacing = #'((space . 5) (padding . 0.5))
379   \override TextScript #'font-shape = #'italic
380   \override DynamicLineSpanner #'Y-offset = #0
381
382   \description "Holds a single line of dynamics, which will be
383 centered between the staves surrounding this context."
384 }
385
386
387 \context{
388   \type "Engraver_group"
389
390   \description "Corresponds to a voice with lyrics.  Handles the
391 printing of a single line of lyrics."
392
393   \name "Lyrics"
394   instrumentName = #'()
395   shortInstrumentName = #'()
396
397   \consists "Lyric_engraver"
398   \consists "Extender_engraver"
399   \consists "Hyphen_engraver"
400   \consists "Stanza_number_engraver"
401   \consists "Instrument_name_engraver"
402   \consists "Font_size_engraver"
403   \consists "Hara_kiri_engraver"
404
405   \override VerticalAxisGroup #'remove-first = ##t
406   \override VerticalAxisGroup #'remove-empty = ##t
407   \override VerticalAxisGroup #'staff-affinity = #UP
408   \override VerticalAxisGroup #'inter-staff-spacing = #'((space . 5.5) (stretchability . 1) (padding . 0.5))
409   \override VerticalAxisGroup #'inter-loose-line-spacing = #'((space . 0)
410                                                               (stretchability . 0)
411                                                               (padding . 0.2)
412                                                               (minimum-distance . 2.8))
413   \override VerticalAxisGroup #'non-affinity-spacing #'padding = #1.0
414   \override InstrumentName #'self-alignment-Y = ##f
415
416   %% sync with define-grobs.scm ;
417   \override InstrumentName #'font-size = #1.0
418
419   %% make sure that barlines aren't collapsed, when
420   %% Bar_engraver is there.
421   \override BarLine #'bar-size = #0.1
422
423 }
424
425 \context {
426   \type "Engraver_group"
427   \name NoteNames
428   \description "A context for printing the names of notes."
429   \consists "Axis_group_engraver"
430
431   % FIXME: not sure what the default should be here.
432   \override VerticalAxisGroup #'staff-affinity = #DOWN
433
434   \consists "Tie_engraver"
435   \consists "Note_name_engraver"
436   \consists "Separating_line_group_engraver"
437 }
438
439 \context {
440   \type "Engraver_group"
441   \name ChordNames
442   \description "Typesets chord names."
443
444   \consists "Output_property_engraver"
445   \consists "Separating_line_group_engraver"
446   \consists "Chord_name_engraver"
447   \consists "Hara_kiri_engraver"
448 %  \consists "Note_spacing_engraver"
449   \override VerticalAxisGroup #'remove-first = ##t
450   \override VerticalAxisGroup #'remove-empty = ##t
451   \override VerticalAxisGroup #'staff-affinity = #DOWN
452   \override VerticalAxisGroup #'inter-staff-spacing #'padding = #0.5
453   \override VerticalAxisGroup #'inter-loose-line-spacing #'padding = #0.5
454 }
455
456
457 RemoveEmptyStaves = \with {
458   \remove "Axis_group_engraver"
459   \remove "Hara_kiri_engraver"
460   \consists "Hara_kiri_engraver"
461   \override Beam #'auto-knee-gap = #'()
462   \override VerticalAxisGroup #'remove-empty = ##t
463 }
464
465
466 \context {
467   \type "Score_engraver"
468   \name "Score"
469
470   \description "This is the top level notation context.  No
471 other context can contain a @code{Score} context.  This context
472 handles the administration of time signatures.  It also makes sure
473 that items such as clefs, time signatures, and key-signatures are
474 aligned across staves.
475
476 You cannot explicitly instantiate a @code{Score} context (since it
477 is not contained in any other context).  It is instantiated
478 automatically when an output definition (a @code{\score} or
479 @code{\layout} block) is processed."
480
481   \consists "Paper_column_engraver"
482   \consists "Repeat_acknowledge_engraver"
483   \consists "Staff_collecting_engraver"
484
485   %% move the alias along with the engraver.
486
487   \consists "Timing_translator"
488   \consists "Default_bar_line_engraver"
489   \consists "Output_property_engraver"
490   \consists "System_start_delimiter_engraver"
491   \consists "Mark_engraver"
492   \consists "Volta_engraver"
493   \consists "Metronome_mark_engraver"
494   \consists "Break_align_engraver"
495   \consists "Spacing_engraver"
496   \consists "Grace_spacing_engraver"
497   \consists "Vertical_align_engraver"
498   \consists "Stanza_number_align_engraver"
499   \consists "Bar_number_engraver"
500   \consists "Parenthesis_engraver"
501
502   \defaultchild "Staff"
503
504   \accepts "FretBoards"
505   \accepts "Staff"
506   \accepts "RhythmicStaff"
507   \accepts "TabStaff"
508   \accepts "VaticanaStaff"
509   \accepts "GregorianTranscriptionStaff"
510   \accepts "MensuralStaff"
511   \accepts "StaffGroup"
512   \accepts "DrumStaff"
513   \accepts "Lyrics"
514   \accepts "ChordNames"
515   \accepts "GrandStaff"
516   \accepts "ChoirStaff"
517   \accepts "PianoStaff"
518   \accepts "Devnull"
519   \accepts "NoteNames"
520   \accepts "FiguredBass"
521
522
523   noteToFretFunction = #determine-frets
524   predefinedDiagramTable = ##f
525   soloText = #"Solo"
526   soloIIText = #"Solo II"
527   aDueText = #"a2"
528   printPartCombineTexts = ##t
529   systemStartDelimiter =#'SystemStartBar
530
531   drumStyleTable = #drums-style
532
533   melismaBusyProperties = #default-melisma-properties
534   tieWaitForNote = ##f
535   clefGlyph = #"clefs.G"
536   clefPosition = #-2
537   middleCClefPosition = #-6
538   middleCPosition = #-6
539   firstClef = ##t
540
541   crescendoSpanner = #'hairpin
542   decrescendoSpanner = #'hairpin
543
544   defaultBarType = #"|"
545   doubleRepeatType = #":|:"
546   barNumberVisibility = #first-bar-number-invisible
547   automaticBars = ##t
548
549   explicitClefVisibility = #all-visible
550   explicitKeySignatureVisibility = #all-visible
551   implicitTimeSignatureVisibility = #end-of-line-invisible
552
553   repeatCountVisibility = #all-repeat-counts-visible
554
555   timeSignatureSettings = #default-time-signature-settings
556   timeSignatureFraction = #'(4 . 4)
557
558 %% These defaults should be the same as the rules established in
559 %%   scm/time-signature-settings.scm for 4/4 time
560   measureLength = #(ly:make-moment 4 4)
561   baseMoment = #(ly:make-moment 1  4)
562   beatStructure = #'(1 1 1 1)
563   beamExceptions = #'((end . (((1 . 8) . (4 4))
564                               ((1 . 12) . (3 3 3 3)))))
565   autoBeaming = ##t
566   autoBeamCheck = #default-auto-beam-check
567
568   scriptDefinitions = #default-script-alist
569
570   pedalSustainStrings = #'("Ped." "*Ped." "*")
571   pedalSustainStyle = #'text
572   pedalUnaCordaStrings = #'("una corda" "" "tre corde")
573   pedalUnaCordaStyle = #'text
574
575 %% These are in ordinary italic font, including the *,
576 %% but they are unlikely to be used,
577 %% as the default pedal-style for SostenutoPedal is 'mixed':
578 %% i.e.  Sost. Ped_____________________
579   pedalSostenutoStrings = #'("Sost. Ped." "*Sost. Ped." "*")
580   pedalSostenutoStyle = #'mixed
581
582   harmonicAccidentals = ##t
583   fingeringOrientations = #'(up down)
584   stringNumberOrientations = #'(up down)
585   strokeFingerOrientations = #'(right)
586
587   lyricMelismaAlignment = #LEFT
588   markFormatter = #format-mark-letters
589   rehearsalMark = #1
590   subdivideBeams = ##f
591   extraNatural = ##t
592   autoAccidentals = #`(Staff ,(make-accidental-rule 'same-octave 0))
593   autoCautionaries = #'()
594
595   printKeyCancellation = ##t
596   keyAlterationOrder = #`(
597     (6 . ,FLAT) (2  . ,FLAT) (5 . ,FLAT ) (1  . ,FLAT) (4  . ,FLAT) (0  . ,FLAT) (3  . ,FLAT)
598     (3 . ,SHARP) (0 . ,SHARP) (4 . ,SHARP) (1 . ,SHARP) (5 . ,SHARP) (2 . ,SHARP) (6 . ,SHARP)
599     (6 . ,DOUBLE-FLAT) (2 . ,DOUBLE-FLAT) (5 . ,DOUBLE-FLAT ) (1 . ,DOUBLE-FLAT) (4 . ,DOUBLE-FLAT) (0 . ,DOUBLE-FLAT) (3 . ,DOUBLE-FLAT)
600     (3  . ,DOUBLE-SHARP) (0 . ,DOUBLE-SHARP) (4 . ,DOUBLE-SHARP) (2 . ,DOUBLE-SHARP) (5 . ,DOUBLE-SHARP) (2 . ,DOUBLE-SHARP) (6 . ,DOUBLE-SHARP)
601   )
602
603   barCheckSynchronize = ##f
604
605 %% chord names:
606   chordNameFunction = #ignatzek-chord-names
607   majorSevenSymbol = #whiteTriangleMarkup
608   chordNameLowercaseMinor = ##f
609   chordNameSeparator = #(make-simple-markup  "/")
610   chordNameExceptions = #ignatzekExceptions
611   chordNoteNamer = #'()
612   chordRootNamer = #note-name->markup
613   chordPrefixSpacer = #0
614   chordNameExceptionsFull = #fullJazzExceptions
615   chordNameExceptionsPartial = #partialJazzExceptions
616   noChordSymbol = #(make-simple-markup "N.C.")
617
618   bassStaffProperties = #'((assign clefGlyph "clefs.F")
619   (assign clefPosition 2)
620   (assign middleCPosition 6)
621   (assign middleCClefPosition 6))
622 %% tablature:
623   stringOneTopmost = ##t
624   highStringOne = ##t
625
626 %% One may change the string tunings as follows :
627 %% The length of the list must be equal to the number of strings
628   stringTunings = #guitar-tuning
629   tablatureFormat = #fret-number-tablature-format
630   tabStaffLineLayoutFunction = #tablature-position-on-lines
631
632 %%
633   figuredBassFormatter = #format-bass-figure
634   metronomeMarkFormatter = #format-metronome-markup
635
636
637   %% See also make-voice-props-set
638   graceSettings = #`(
639     (Voice Stem direction ,UP)
640     (Voice Stem font-size -3)
641     (Voice NoteHead font-size -3)
642     (Voice TabNoteHead font-size -4)
643     (Voice Dots font-size -3)
644     (Voice Stem length-fraction 0.8)
645     (Voice Stem no-stem-extend #t)
646     (Voice Beam beam-thickness 0.384)
647     (Voice Beam length-fraction 0.8)
648     (Voice Accidental font-size -4)
649     (Voice AccidentalCautionary font-size -4)
650     (Voice Slur direction ,DOWN)
651     (Voice Script font-size -3)
652     (Voice Fingering font-size -8)
653     (Voice StringNumber font-size -8)
654   )
655
656   keepAliveInterfaces = #'(
657     rhythmic-grob-interface
658     lyric-interface
659     percent-repeat-item-interface
660     percent-repeat-interface
661
662     ;; need this, as stanza numbers are items, and appear only once.
663     stanza-number-interface
664   )
665   % \quoteDuring is supposed to quote everything, cueDuring only the essentials
666   quotedEventTypes = #'(StreamEvent)
667   quotedCueEventTypes = #'(
668     note-event
669     rest-event
670     tie-event
671     beam-event
672     tuplet-span-event)
673   instrumentTransposition = #(ly:make-pitch 0 0 0)
674
675   topLevelAlignment = ##t
676
677   timing = ##t
678 }
679
680
681
682
683 \context {
684   \type "Engraver_group"
685   \name "FiguredBass"
686   \description "A context for printing a figured bass line."
687
688   \consists "Figured_bass_engraver"
689   \consists "Separating_line_group_engraver"
690   \consists "Hara_kiri_engraver"
691
692   \override VerticalAxisGroup #'remove-empty = ##t
693   \override VerticalAxisGroup #'remove-first = ##t
694   \override VerticalAxisGroup #'staff-affinity = #UP
695   \override VerticalAxisGroup #'inter-staff-spacing #'padding = #0.5
696   \override VerticalAxisGroup #'inter-loose-line-spacing #'padding = #0.5
697 }
698
699 \context {
700   \name "Devnull"
701   \type "Engraver_group"
702
703 %% don't want to route anything out of here:
704   \alias "Staff"
705   \alias "Voice"
706   \description "Silently discards all musical information given to this
707 context."
708 }
709
710 \context {
711   \Voice
712   \name "TabVoice"
713   \alias "Voice"
714   \consists "Tab_note_heads_engraver"
715   \consists "Tab_harmonic_engraver"
716
717   \remove "Note_heads_engraver"
718   \remove "Fingering_engraver"
719   \remove "New_fingering_engraver"
720
721   \description "Context for drawing notes in a Tab staff."
722
723   %% TabStaff increase the staff-space, which in turn
724   %% increases beam thickness and spacing; beams are
725   %% too big. We have to adjust the beam settings:
726   \override Beam #'beam-thickness = #0.32
727   \override Beam #'length-fraction = #0.62
728
729   %% No accidental in tablature !
730   \remove "Accidental_engraver"
731   %% make the Stems as short as possible to minimize their influence
732   %% on the slur::calc-control-points routine
733   \override Stem #'length = #0
734   \override Stem #'no-stem-extend = ##t
735   \override Stem #'flag-style = #'no-flag
736   \override Stem #'details = #'((lengths 0 0 0 0 0 0)
737                                 (beamed-lengths 0 0 0)
738                                 (beamed-minimum-free-lengths 0 0 0)
739                                 (beamed-extreme-minimum-free-lengths 0 0)
740                                 (stem-shorten 0 0))
741   %% after all, the stubs of the stems may still be visible, so ...
742   \override Stem #'transparent = ##t
743   %% automatic beams should be suppressed for similar reasons ...
744   autoBeaming = ##f
745   %% remove beams, dots and rests ...
746   \override Beam #'stencil = ##f
747   \override Dots #'stencil = ##f
748   \override Rest #'stencil = ##f
749   \override MultiMeasureRest #'stencil = ##f
750   \override MultiMeasureRestNumber #'transparent = ##t
751   %% ... all kinds of ties/slurs
752   \override Tie  #'stencil = ##f
753   \override RepeatTie #'stencil = ##f
754   \override LaissezVibrerTie #'stencil = ##f
755   \override Slur #'stencil = #slur::draw-tab-slur
756   \override PhrasingSlur #'stencil = ##f
757   %% 'tied to' fret numbers become invisible or parenthesized, respectively)
758   \override Tie #'after-line-breaking = #tie::handle-tab-note-head
759   \override RepeatTie #'after-line-breaking = #repeat-tie::handle-tab-note-head
760   %% ... and all kinds of markups, spanners etc.
761   \override TupletBracket #'stencil = ##f
762   \override TupletNumber #'stencil = ##f
763   \override DynamicText #'transparent = ##t
764   \override DynamicTextSpanner #'stencil = ##f
765   \override TextSpanner #'stencil = ##f
766   \override Hairpin #'transparent = ##t
767   \override Script #'stencil = ##f
768   \override TextScript #'stencil = ##f
769   %% the direction for glissando lines will be automatically corrected
770   \override Glissando #'extra-dy = #glissando::calc-tab-extra-dy
771   \override Glissando #'bound-details #'right = #`((attach-dir . ,LEFT)
772                                                    (padding . 0.3))
773   \override Glissando #'bound-details #'left = #`((attach-dir . ,RIGHT)
774                                                    (padding . 0.3))
775   %% dead notes
776   \override TabNoteHead #'glyph-name = #tab-note-head::calc-glyph-name
777   \override TabNoteHead #'stencil = #tab-note-head::whiteout-if-style-set
778 }
779
780 \context {
781   \Staff
782   \alias "Staff"
783   \name "TabStaff"
784   \denies "Voice"
785   \consists "Tab_staff_symbol_engraver"
786
787   \description "Context for generating tablature. It accepts only @code{TabVoice}
788 contexts and handles the line spacing, the tablature clef etc. properly."
789
790   \accepts "TabVoice"
791   \defaultchild "TabVoice"
792
793   %% 6 strings, bigger spacing
794   \override StaffSymbol #'staff-space = #1.5
795
796   %% Don't draw stems over the tablature figures !
797   \override Stem #'avoid-note-head = ##t
798
799   %% No accidental in tablature !
800   \remove "Accidental_engraver"
801   \remove "Key_engraver"
802
803   \remove "Ottava_spanner_engraver"
804   %% the clef handler
805   \override Clef #'stencil = #clef::print-modern-tab-if-set
806   %% no time signature
807   \override TimeSignature #'stencil = ##f
808   %% better parentheses in a TabStaff
809   \override ParenthesesItem #'stencils = #parentheses-item::calc-tabstaff-parenthesis-stencils
810   %% no arpeggios
811   \override Arpeggio #'stencil = ##f
812   %% we ignore collision warnings that may occur due to
813   %% stem overlapping, because we have no stems ;-)
814   \override NoteColumn #'ignore-collision = ##t
815   %% Special "TAB" clef
816   clefGlyph = #"clefs.tab"
817   clefPosition = #0
818 }
819
820 \context {
821   \Voice
822   \name "VaticanaVoice"
823   \alias "Voice"
824   \description "Same as @code{Voice} context, except that it is
825 accommodated for typesetting Gregorian Chant in the notational style
826 of Editio Vaticana."
827
828   \remove "Slur_engraver"
829   \remove "Stem_engraver"
830   \remove "Ligature_bracket_engraver"
831   \consists "Vaticana_ligature_engraver"
832   \remove "Text_spanner_engraver"
833   \consists "Episema_engraver"
834
835   %% Set default head for notes outside of \[ \].
836   \override NoteHead #'style = #'vaticana.punctum
837
838   %% Put some space before and after divisiones.
839   %% FIXME: This does not seem to show any effect.
840   \override Script #'padding = #0.5
841
842   %% There are no beams in Gregorian Chant notation.
843   autoBeaming = ##f
844 }
845
846 \context {
847   \Staff
848   \name "VaticanaStaff"
849   \alias "Staff"
850   \denies "Voice"
851   \accepts "VaticanaVoice"
852   \defaultchild "VaticanaVoice"
853
854   \description "Same as @code{Staff} context, except that it is
855 accommodated for typesetting Gregorian Chant in the notational style
856 of Editio Vaticana."
857
858   \remove "Time_signature_engraver"
859   \consists "Custos_engraver"
860
861   %% We can not remove Bar_engraver; otherwise clefs and custodes will
862   %% not show up any more among other line breaking issues.
863   %% Instead, we make the grob transparent.
864   \override BarLine #'transparent = ##t
865
866   \override StaffSymbol #'line-count = #4
867   \override StaffSymbol #'thickness = #0.6
868
869   %% FIXME: unit on StaffSymbol's width should be \linewidth.
870   %% \override StaffSymbol #'width = #60.0
871
872   %% Choose vaticana do clef on 3rd line as default.
873   clefGlyph = #"clefs.vaticana.do"
874   middleCPosition = #1
875   middleCClefPosition = #1
876   clefPosition = #1
877   clefOctavation = #0
878
879   %% Select vaticana style font.
880   \override KeySignature #'glyph-name-alist = #alteration-vaticana-glyph-name-alist
881   \override Accidental #'glyph-name-alist = #alteration-vaticana-glyph-name-alist
882   \override Custos #'style = #'vaticana
883   \override Custos #'neutral-position = #3
884   \override Custos #'neutral-direction = #DOWN
885   \override Dots #'style = #'vaticana
886 }
887
888 \context {
889   \Voice
890   \name "GregorianTranscriptionVoice"
891   \alias "Voice"
892   \consists "Episema_engraver"
893
894   %% Removing ligature bracket engraver without replacing it by some
895   %% other ligature engraver would cause a "Junking event: `LigatureEvent'"
896   %% warning for every "\[" and "\]".  Therefore, we make the grob
897   %% transparent instead.
898   \override LigatureBracket #'transparent = ##t
899
900   %% Put some space before and after divisiones.
901   %% FIXME: This does not seem to show any effect.
902   \override Script #'padding = #0.5
903
904   %% There are no beams in Gregorian Chant notation.
905   autoBeaming = ##f
906
907 }
908
909 \context {
910   \Staff
911   \name "GregorianTranscriptionStaff"
912   \alias "Staff"
913   \denies "Voice"
914   \accepts "GregorianTranscriptionVoice"
915   \defaultchild "GregorianTranscriptionVoice"
916
917   %% We can not remove Bar_engraver; otherwise clefs and custodes will
918   %% not show up any more among other line breaking issues.
919   %% Instead, we make the grob transparent.
920   \override BarLine #'transparent = ##t
921 }
922
923 \context {
924   \Voice
925   \name "MensuralVoice"
926   \alias "Voice"
927   \description "Same as @code{Voice} context, except that it is
928 accommodated for typesetting a piece in mensural style."
929
930   \remove "Slur_engraver"
931   \remove "Ligature_bracket_engraver"
932   \consists "Mensural_ligature_engraver"
933
934   %% Set default head for notes outside of \[ \].
935   \override NoteHead #'style = #'mensural
936   \override Rest #'style = #'mensural
937
938   %% There are no beams in mensural notation.
939   autoBeaming = ##f
940 }
941
942 \context {
943   \Staff
944   \name "MensuralStaff"
945   \alias "Staff"
946   \denies "Voice"
947   \defaultchild "MensuralVoice"
948   \accepts "MensuralVoice"
949   \description "Same as @code{Staff} context, except that it is
950 accommodated for typesetting a piece in mensural style."
951
952   \consists "Custos_engraver"
953
954   %% We can not remove Bar_engraver; otherwise clefs and custodes will
955   %% not show up any more among other line breaking issues.
956   %% Instead, we make the grob transparent.
957   \override BarLine #'transparent = ##t
958
959   \override StaffSymbol #'thickness = #0.6
960
961   %% FIXME: unit on StaffSymbol's width should be \linewidth.
962   %% \override StaffSymbol #'width = #60.0
963
964   %% Choose mensural g clef on 2nd line as default.
965   clefGlyph = #"clefs.mensural.g"
966   middleCClefPosition = #-6
967   middleCPosition = #-6
968   clefPosition = #-2
969   clefOctavation = #0
970
971   %% Select mensural style font.
972   \override TimeSignature #'style = #'mensural
973   \override KeySignature #'glyph-name-alist = #alteration-mensural-glyph-name-alist
974   \override Accidental #'glyph-name-alist = #alteration-mensural-glyph-name-alist
975   \override Custos #'style = #'mensural
976   \override Custos #'neutral-position = #3
977   \override Custos #'neutral-direction = #DOWN
978
979   %% Accidentals are valid only once (same as
980   %% #(set-accidental-style 'forget))
981   extraNatural = ##f
982   autoAccidentals = #`(Staff ,(make-accidental-rule 'same-octave -1))
983   autoCautionaries = #'()
984   printKeyCancellation = ##f
985 }
986
987
988 %% Keep the old definitions in here for compatibility (they erase previous
989 %% settings to the corresponding context!).
990 %% For new scores, one should simply insert the \RemoveEmptyStaves settings
991 %% into the desired context. That's just as easy, requires only one line more
992 %% (the \*Staff), but preserves previous context mods.
993 %% TODO: DEPRECATED_2.13.17, remove at some point in the future
994 RemoveEmptyStaffContext = \context {
995   \Staff
996   \RemoveEmptyStaves
997 }
998
999 AncientRemoveEmptyStaffContext = \context {
1000   \VaticanaStaff
1001   \RemoveEmptyStaves
1002 }
1003
1004 RemoveEmptyDrumStaffContext = \context {
1005   \DrumStaff
1006   \RemoveEmptyStaves
1007 }
1008
1009 RemoveEmptyRhythmicStaffContext = \context {
1010   \RhythmicStaff
1011   \RemoveEmptyStaves
1012 }
1013
1014 RemoveEmptyTabStaffContext = \context {
1015   \TabStaff
1016   \RemoveEmptyStaves
1017 }
1018