]> git.donarmstrong.com Git - lilypond.git/blob - ly/engraver-init.ly
Revert "Make EventClass hierarchy a property of Global context"
[lilypond.git] / ly / engraver-init.ly
1 %%%% This file is part of LilyPond, the GNU music typesetter.
2 %%%%
3 %%%% Copyright (C) 1996--2012 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.17.11"
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   \alias "Staff"
35   \description "A context for displaying fret diagrams."
36
37   \consists "Fretboard_engraver"
38   \consists "Output_property_engraver"
39   \consists "Axis_group_engraver"
40   \consists "Separating_line_group_engraver"
41   \consists "Font_size_engraver"
42   \consists "Instrument_name_engraver"
43
44   %% explicitly set instrument, so it is not inherited from the parent
45   instrumentName = #'()
46   shortInstrumentName = #'()
47
48   predefinedDiagramTable = #default-fret-table
49   handleNegativeFrets = #'recalculate
50   restrainOpenStrings = ##f
51 }
52
53 \context {
54   \type "Engraver_group"
55   \name "Staff"
56
57   \consists "Output_property_engraver"
58   \consists "Bar_engraver"
59   \consists "Pure_from_neighbor_engraver"
60   %% Bar_engraver must be first so default bars aren't overwritten
61   %% with empty ones.
62
63   \consists "Font_size_engraver"
64   \consists "Separating_line_group_engraver"
65   \consists "Dot_column_engraver"
66   \consists "Staff_collecting_engraver"
67
68  %% perhaps move to Voice context?
69   \consists "Ottava_spanner_engraver"
70   \consists "Clef_engraver"
71   \consists "Key_engraver"
72   \consists "Time_signature_engraver"
73   \consists "Ledger_line_engraver"
74   \consists "Staff_symbol_engraver"
75   \consists "Collision_engraver"
76   \consists "Grob_pq_engraver"
77   \consists "Rest_collision_engraver"
78   \consists "Accidental_engraver"
79   \consists "Piano_pedal_engraver"
80   \consists "Piano_pedal_align_engraver"
81   \consists "Instrument_name_engraver"
82   \consists "Axis_group_engraver"
83   \consists "Figured_bass_engraver"
84   \consists "Figured_bass_position_engraver"
85   \consists "Script_row_engraver"
86   \consists "Cue_clef_engraver"
87   \consists "Fingering_column_engraver"
88
89   localKeySignature = #'()
90   createSpacing = ##t
91   ignoreFiguredBassRest = ##f
92
93   %% explicitly set instrument, so we don't get
94   %% weird effects when doing instrument names for
95   %% piano staves
96   instrumentName = #'()
97   shortInstrumentName = #'()
98
99   \defaultchild "Voice"
100   \accepts "Voice"
101   \accepts "CueVoice"
102
103   \description "Handles clefs, bar lines, keys, accidentals.  It can contain
104 @code{Voice} contexts."
105
106 }
107
108 \context {
109   \Staff
110   \type "Engraver_group"
111   \name "DrumStaff"
112   \alias "Staff"
113
114   \remove "Accidental_engraver"
115   \remove "Ottava_spanner_engraver"
116   \remove "Key_engraver"
117   \remove "Piano_pedal_engraver"
118
119   \description "Handles typesetting for percussion."
120
121   \denies "Voice"
122   \accepts "DrumVoice"
123   \defaultchild "DrumVoice"
124
125   clefGlyph = #"clefs.percussion"
126   clefPosition = #0
127   \override Script.staff-padding = #0.75
128 }
129
130
131 \context {
132   \type "Engraver_group"
133   \name "ChoirStaff"
134   \consists "Vertical_align_engraver"
135   topLevelAlignment = ##f
136
137   \consists "Instrument_name_engraver"
138   \consists "System_start_delimiter_engraver"
139   systemStartDelimiter = #'SystemStartBracket
140   %% explicitly set instrument, so it is not inherited from the parent
141   instrumentName = #'()
142   shortInstrumentName = #'()
143   vocalName = #'()
144   shortVocalName = #'()
145
146   \accepts "Staff"
147   \accepts "DrumStaff"
148   \accepts "RhythmicStaff"
149   \accepts "GrandStaff"
150   \accepts "PianoStaff"
151   \accepts "Lyrics"
152   \accepts "ChordNames"
153   \accepts "FiguredBass"
154   \accepts "ChoirStaff"
155   \accepts "StaffGroup"
156   \defaultchild "Staff"
157   \description "Identical to @code{StaffGroup} except that the
158 contained staves are not connected vertically."
159 }
160
161 \context{
162   \type "Engraver_group"
163
164   localKeySignature = #'()
165   createSpacing = ##t
166
167   squashedPosition = #0
168   \name RhythmicStaff
169   \alias "Staff"
170
171   \override BarLine.bar-extent = #'(-2 . 2)
172   \override VoltaBracket.staff-padding = #3
173   \override StaffSymbol.line-count = #1
174
175   \override Stem.neutral-direction = #UP
176   \override Beam.neutral-direction = #UP
177
178   \consists "Output_property_engraver"
179   \consists "Font_size_engraver"
180   \consists "Separating_line_group_engraver"
181   \consists "Dot_column_engraver"
182   \consists "Bar_engraver"
183   \consists "Staff_symbol_engraver"
184   \consists "Pitch_squash_engraver"
185   \consists "Time_signature_engraver"
186   \consists "Instrument_name_engraver"
187   \consists "Axis_group_engraver"
188   \consists "Ledger_line_engraver"
189
190   %% explicitly set instrument, so it is not inherited from the parent
191   instrumentName = #'()
192   shortInstrumentName = #'()
193
194   \accepts "Voice"
195   \accepts "CueVoice"
196   \defaultchild "Voice"
197
198   \description "A context like @code{Staff} but for printing rhythms.
199 Pitches are ignored; the notes are printed on one line."
200 }
201
202
203 \context {
204   \type "Engraver_group"
205   \name "Voice"
206
207   \description "Corresponds to a voice on a staff.  This context
208 handles the conversion of dynamic signs, stems, beams, super- and
209 subscripts, slurs, ties, and rests.
210
211 You have to instantiate this explicitly if you want to have
212 multiple voices on the same staff."
213
214   \consists "Font_size_engraver"
215
216   \consists "Pitched_trill_engraver"
217   \consists "Output_property_engraver"
218   \consists "Arpeggio_engraver"
219   \consists "Multi_measure_rest_engraver"
220   \consists "Text_spanner_engraver"
221   \consists "Trill_spanner_engraver"
222   \consists "Grob_pq_engraver"
223   \consists "Forbid_line_break_engraver"
224   \consists "Laissez_vibrer_engraver"
225   \consists "Repeat_tie_engraver"
226   \consists "Note_head_line_engraver"
227   \consists "Glissando_engraver"
228   \consists "Ligature_bracket_engraver"
229   \consists "Breathing_sign_engraver"
230   \consists "Note_heads_engraver"
231   \consists "Dots_engraver"
232   \consists "Rest_engraver"
233
234   %% switch on to make stem directions interpolate for the
235   %% center line.
236   %  \consists "Melody_engraver"
237
238   \consists "Stem_engraver"
239   \consists "Beam_engraver"
240   \consists "Grace_beam_engraver"
241   \consists "Auto_beam_engraver"
242
243   %% must come before Script_column_engraver.
244   \consists "New_fingering_engraver"
245
246   \consists "Chord_tremolo_engraver"
247   \consists "Double_percent_repeat_engraver"
248   \consists "Percent_repeat_engraver"
249   \consists "Slash_repeat_engraver"
250   \consists "Part_combine_engraver"
251
252   \consists "Text_engraver"
253   \consists "New_dynamic_engraver"
254   \consists "Dynamic_align_engraver"
255 %  \consists "Dynamic_engraver"
256   \consists "Fingering_engraver"
257   \consists "Bend_engraver"
258
259   \consists "Script_engraver"
260   \consists "Script_column_engraver"
261   \consists "Rhythmic_column_engraver"
262   \consists "Note_spacing_engraver"
263   \consists "Spanner_break_forbid_engraver"
264   \consists "Phrasing_slur_engraver"
265   \consists "Cluster_spanner_engraver"
266   \consists "Slur_engraver"
267   \consists "Tie_engraver"
268   \consists "Tuplet_engraver"
269   \consists "Grace_engraver"
270   \consists "Instrument_switch_engraver"
271 }
272
273 \context{
274   \Voice
275
276   \name CueVoice
277   \alias Voice
278   fontSize = #-4
279   \override Stem.length-fraction = #(magstep -4)
280   \override Beam.length-fraction = #(magstep -4)
281   \override Beam.beam-thickness = #0.35
282 }
283
284 \context {
285   \Voice
286   \name DrumVoice
287   \alias Voice
288
289   \description "A voice on a percussion staff."
290   \remove "Arpeggio_engraver"
291   \consists "Grob_pq_engraver"
292
293   \remove "Note_head_line_engraver"
294   \remove "Glissando_engraver"
295   \remove "Ligature_bracket_engraver"
296   \remove "Note_heads_engraver"
297   \consists "Drum_notes_engraver"
298   \remove "New_fingering_engraver"
299
300   \remove "Fingering_engraver"
301
302   \remove "Cluster_spanner_engraver"
303 }
304
305 \context{
306   \type "Engraver_group"
307   \name GrandStaff
308   localKeySignature = #'()
309
310   \description "A group of staves, with a brace on the left
311 side, grouping the staves together.  The bar lines of the
312 contained staves are connected vertically."
313
314   \consists "Instrument_name_engraver"
315   \consists "Span_bar_engraver"
316   \consists "Span_bar_stub_engraver"
317   \consists "Span_arpeggio_engraver"
318   \consists "System_start_delimiter_engraver"
319   \consists "Vertical_align_engraver"
320   systemStartDelimiter = #'SystemStartBrace
321   topLevelAlignment = ##f
322   %% explicitly set instrument, so it is not inherited from the parent
323   instrumentName = #'()
324   shortInstrumentName = #'()
325
326   \defaultchild "Staff"
327   \accepts "Staff"
328   \accepts "RhythmicStaff"
329   \accepts "DrumStaff"
330   \accepts "TabStaff"
331   \accepts "Lyrics"
332   \accepts "FiguredBass"
333   \accepts "Dynamics"
334   \accepts "ChordNames"
335 }
336
337 \context{
338   \GrandStaff
339   \name "PianoStaff"
340   \alias "GrandStaff"
341
342   \description "Just like @code{GrandStaff}, but the staves are only removed
343 together, never separately."
344
345   \consists "Vertical_align_engraver"
346   \consists "Keep_alive_together_engraver"
347   topLevelAlignment = ##f
348
349   instrumentName = #'()
350   shortInstrumentName = #'()
351 }
352
353 \context {
354   \type "Engraver_group"
355   \name "StaffGroup"
356
357   \consists "Vertical_align_engraver"
358   topLevelAlignment = ##f
359
360   \consists "Instrument_name_engraver"
361   \consists "Span_bar_engraver"
362   \consists "Span_bar_stub_engraver"
363   \consists "Span_arpeggio_engraver"
364   \consists "Output_property_engraver"
365   systemStartDelimiter = #'SystemStartBracket
366   %% explicitly set instrument, so it is not inherited from the parent
367   instrumentName = #'()
368   shortInstrumentName = #'()
369
370   \consists "System_start_delimiter_engraver"
371
372   \defaultchild "Staff"
373   \accepts "Staff"
374   \accepts "RhythmicStaff"
375   \accepts "DrumStaff"
376   \accepts "GrandStaff"
377   \accepts "PianoStaff"
378   \accepts "TabStaff"
379   \accepts "Lyrics"
380   \accepts "ChordNames"
381   \accepts "FiguredBass"
382   \accepts "ChoirStaff"
383   \accepts "StaffGroup"
384
385   \description "Groups staves while adding a bracket on the left
386 side, grouping the staves together.  The bar lines of the contained
387 staves are connected vertically.  @code{StaffGroup} only consists of
388 a collection of staves, with a bracket in front and spanning bar lines."
389 }
390
391 \context {
392   \type "Engraver_group"
393   \name Dynamics
394   \alias Voice
395   \consists "Output_property_engraver"
396   \consists "Bar_engraver"
397   \consists "Piano_pedal_engraver"
398   \consists "Script_engraver"
399   \consists "New_dynamic_engraver"
400   \consists "Dynamic_align_engraver"
401   \consists "Text_engraver"
402   \consists "Text_spanner_engraver"
403   \consists "Font_size_engraver"
404   \consists "Axis_group_engraver"
405
406   pedalSustainStrings = #'("Ped." "*Ped." "*")
407   pedalUnaCordaStrings = #'("una corda" "" "tre corde")
408   \override VerticalAxisGroup.staff-affinity = #CENTER
409   \override VerticalAxisGroup.nonstaff-relatedstaff-spacing =
410     #'((basic-distance . 5)
411        (padding . 0.5))
412   \override TextScript.font-shape = #'italic
413   \override DynamicLineSpanner.Y-offset = #0
414   \override DynamicLineSpanner.outside-staff-priority = ##f
415   \override DynamicText.outside-staff-priority = ##f
416   \override Hairpin.outside-staff-priority = ##f
417   \override DynamicText.X-offset =
418   #(ly:make-simple-closure
419     `(,+
420       ,(ly:make-simple-closure
421          (list ly:self-alignment-interface::centered-on-note-columns))
422       ,(ly:make-simple-closure
423         (list ly:self-alignment-interface::x-aligned-on-self))))
424
425   \description "Holds a single line of dynamics, which will be
426 centered between the staves surrounding this context."
427 }
428
429
430 \context{
431   \type "Engraver_group"
432
433   \description "Corresponds to a voice with lyrics.  Handles the
434 printing of a single line of lyrics."
435
436   \name "Lyrics"
437   \consists "Lyric_engraver"
438   \consists "Extender_engraver"
439   \consists "Hyphen_engraver"
440   \consists "Stanza_number_engraver"
441   \consists "Instrument_name_engraver"
442   \consists "Font_size_engraver"
443   \consists "Axis_group_engraver"
444   \consists "Pure_from_neighbor_engraver"
445   searchForVoice = ##f
446   %% explicitly set instrument, so it is not inherited from the parent
447   instrumentName = #'()
448   shortInstrumentName = #'()
449
450   \override VerticalAxisGroup.remove-first = ##t
451   \override VerticalAxisGroup.remove-empty = ##t
452   \override VerticalAxisGroup.staff-affinity = #UP
453   \override VerticalAxisGroup.nonstaff-relatedstaff-spacing =
454     #'((basic-distance . 5.5)
455        (padding . 0.5)
456        (stretchability . 1))
457   \override VerticalAxisGroup.nonstaff-nonstaff-spacing =
458      #'((basic-distance . 0)
459         (minimum-distance . 2.8)
460         (padding . 0.2)
461         (stretchability . 0))
462   \override VerticalAxisGroup.nonstaff-unrelatedstaff-spacing.padding = #1.5
463   \override InstrumentName.self-alignment-Y = ##f
464
465   %% sync with define-grobs.scm ;
466   \override InstrumentName.font-size = #1.0
467
468   %% make sure that barlines aren't collapsed, when
469   %% Bar_engraver is there.
470   \override BarLine.bar-extent = #'(-0.05 . 0.05)
471
472 }
473
474 \context {
475   \type "Engraver_group"
476   \name NoteNames
477   \description "A context for printing the names of notes."
478   \consists "Axis_group_engraver"
479
480   \override VerticalAxisGroup.staff-affinity = #UP
481   \override VerticalAxisGroup.nonstaff-nonstaff-spacing =
482     #'((basic-distance . 0)
483        (minimum-distance . 2.8)
484        (padding . 0.2)
485        (stretchability . 0))
486   \override VerticalAxisGroup.nonstaff-relatedstaff-spacing =
487     #'((basic-distance . 5.5)
488        (padding . 0.5)
489        (stretchability . 1))
490   \override VerticalAxisGroup.nonstaff-unrelatedstaff-spacing.padding = 1.5
491
492   \consists "Tie_engraver"
493   \consists "Note_name_engraver"
494   \consists "Separating_line_group_engraver"
495 }
496
497 \context {
498   \type "Engraver_group"
499   \name ChordNames
500   \description "Typesets chord names."
501
502   \consists "Output_property_engraver"
503   \consists "Separating_line_group_engraver"
504   \consists "Chord_name_engraver"
505   \consists "Axis_group_engraver"
506 %  \consists "Note_spacing_engraver"
507
508   \override VerticalAxisGroup.remove-first = ##t
509   \override VerticalAxisGroup.remove-empty = ##t
510   \override VerticalAxisGroup.staff-affinity = #DOWN
511   \override VerticalAxisGroup.nonstaff-relatedstaff-spacing.padding = #0.5
512   \override VerticalAxisGroup.nonstaff-nonstaff-spacing.padding = #0.5
513 }
514
515 \context {
516   \type "Score_engraver"
517   \name "Score"
518
519   \description "This is the top level notation context.  No
520 other context can contain a @code{Score} context.  This context
521 handles the administration of time signatures.  It also makes sure
522 that items such as clefs, time signatures, and key-signatures are
523 aligned across staves.
524
525 You cannot explicitly instantiate a @code{Score} context (since it
526 is not contained in any other context).  It is instantiated
527 automatically when an output definition (a @code{\\score} or
528 @code{\\layout} block) is processed."
529
530   \consists "Paper_column_engraver"
531   \consists "Repeat_acknowledge_engraver"
532   \consists "Staff_collecting_engraver"
533
534   \alias "Timing"
535
536   %% An alias for Timing is established by the Timing_translator in
537   %% whatever context it is initialized, and the timing variables are
538   %% then copied from wherever Timing had been previously established.
539   %% The alias at Score level provides a target for initializing
540   %% Timing variables in layout definitions before any
541   %% Timing_translator has been run.
542
543   % timing translator must come BEFORE bar number engraver
544   \consists "Timing_translator"
545   \consists "Default_bar_line_engraver"
546   \consists "Output_property_engraver"
547   \consists "Tweak_engraver"
548   \consists "System_start_delimiter_engraver"
549   \consists "Mark_engraver"
550   \consists "Volta_engraver"
551   \consists "Metronome_mark_engraver"
552   \consists "Break_align_engraver"
553   \consists "Spacing_engraver"
554   \consists "Grace_spacing_engraver"
555   \consists "Vertical_align_engraver"
556   \consists "Stanza_number_align_engraver"
557   \consists "Bar_number_engraver"
558   \consists "Parenthesis_engraver"
559   \consists "Concurrent_hairpin_engraver"
560   \consists "Beam_collision_engraver"
561   \consists "Footnote_engraver"
562
563   \defaultchild "Staff"
564
565   \accepts "FretBoards"
566   \accepts "Staff"
567   \accepts "RhythmicStaff"
568   \accepts "TabStaff"
569   \accepts "VaticanaStaff"
570   \accepts "GregorianTranscriptionStaff"
571   \accepts "MensuralStaff"
572   \accepts "PetrucciStaff"
573   \accepts "StaffGroup"
574   \accepts "DrumStaff"
575   \accepts "KievanStaff"
576   \accepts "Lyrics"
577   \accepts "ChordNames"
578   \accepts "GrandStaff"
579   \accepts "ChoirStaff"
580   \accepts "PianoStaff"
581   \accepts "Devnull"
582   \accepts "NoteNames"
583   \accepts "FiguredBass"
584
585   noteToFretFunction = #determine-frets
586   predefinedDiagramTable = ##f
587   soloText = #"Solo"
588   soloIIText = #"Solo II"
589   aDueText = #"a2"
590   printPartCombineTexts = ##t
591   partCombineTextsOnNote = ##t
592   systemStartDelimiter =#'SystemStartBar
593
594   drumStyleTable = #drums-style
595
596   melismaBusyProperties = #default-melisma-properties
597   tieWaitForNote = ##f
598   clefGlyph = #"clefs.G"
599   clefPosition = #-2
600   middleCClefPosition = #-6
601   middleCPosition = #-6
602   firstClef = ##t
603
604   crescendoSpanner = #'hairpin
605   decrescendoSpanner = #'hairpin
606
607   defaultBarType = #"|"
608   doubleRepeatType = #":..:"
609   startRepeatType = #".|:"
610   endRepeatType = #":|."
611   barNumberVisibility = #first-bar-number-invisible-and-no-parenthesized-bar-numbers
612   barNumberFormatter = #robust-bar-number-function
613   clefTranspositionFormatter = #clef-transposition-markup
614   cueClefTranspositionFormatter = #clef-transposition-markup
615   automaticBars = ##t
616
617   explicitClefVisibility = #all-visible
618   explicitCueClefVisibility = #end-of-line-invisible
619   explicitKeySignatureVisibility = #all-visible
620   implicitTimeSignatureVisibility = #end-of-line-invisible
621
622   repeatCountVisibility = #all-repeat-counts-visible
623
624 %% Other Timing variables are derived and set by the Timing_translator
625 %% at initialization time by calling the functions in
626 %% scm/time-signature-settings.scm
627
628   timeSignatureSettings = #default-time-signature-settings
629   timeSignatureFraction = 4/4
630
631   beamHalfMeasure = ##t
632
633   autoBeaming = ##t
634   autoBeamCheck = #default-auto-beam-check
635
636   scriptDefinitions = #default-script-alist
637
638   pedalSustainStrings = #'("Ped." "*Ped." "*")
639   pedalSustainStyle = #'text
640   pedalUnaCordaStrings = #'("una corda" "" "tre corde")
641   pedalUnaCordaStyle = #'text
642
643 %% These are in ordinary italic font, including the *,
644 %% but they are unlikely to be used,
645 %% as the default pedal-style for SostenutoPedal is 'mixed':
646 %% i.e.  Sost. Ped_____________________
647   pedalSostenutoStrings = #'("Sost. Ped." "*Sost. Ped." "*")
648   pedalSostenutoStyle = #'mixed
649
650   harmonicAccidentals = ##t
651   fingeringOrientations = #'(up down)
652   stringNumberOrientations = #'(up down)
653   strokeFingerOrientations = #'(right)
654
655   lyricMelismaAlignment = #LEFT
656   markFormatter = #format-mark-letters
657   rehearsalMark = #1
658   subdivideBeams = ##f
659   extraNatural = ##t
660   autoAccidentals = #`(Staff ,(make-accidental-rule 'same-octave 0))
661   autoCautionaries = #'()
662
663   printKeyCancellation = ##t
664   keyAlterationOrder = #`(
665     (6 . ,FLAT) (2  . ,FLAT) (5 . ,FLAT ) (1  . ,FLAT) (4  . ,FLAT) (0  . ,FLAT) (3  . ,FLAT)
666     (3 . ,SHARP) (0 . ,SHARP) (4 . ,SHARP) (1 . ,SHARP) (5 . ,SHARP) (2 . ,SHARP) (6 . ,SHARP)
667     (6 . ,DOUBLE-FLAT) (2 . ,DOUBLE-FLAT) (5 . ,DOUBLE-FLAT ) (1 . ,DOUBLE-FLAT) (4 . ,DOUBLE-FLAT) (0 . ,DOUBLE-FLAT) (3 . ,DOUBLE-FLAT)
668     (3  . ,DOUBLE-SHARP) (0 . ,DOUBLE-SHARP) (4 . ,DOUBLE-SHARP) (1 . ,DOUBLE-SHARP) (5 . ,DOUBLE-SHARP) (2 . ,DOUBLE-SHARP) (6 . ,DOUBLE-SHARP)
669   )
670
671   barCheckSynchronize = ##f
672
673 %% chord names:
674   chordNameFunction = #ignatzek-chord-names
675   minorChordModifier = #(make-simple-markup "m")
676   additionalPitchPrefix = #"" % was "add"
677   majorSevenSymbol = #whiteTriangleMarkup
678   chordNameLowercaseMinor = ##f
679   chordNameSeparator = #(make-hspace-markup 0.5)
680   slashChordSeparator = #(make-simple-markup "/")
681   chordNameExceptions = #ignatzekExceptions
682   chordNoteNamer = #'()
683   chordRootNamer = #note-name->markup
684   chordPrefixSpacer = #0
685   chordNameExceptionsFull = #fullJazzExceptions
686   chordNameExceptionsPartial = #partialJazzExceptions
687   noChordSymbol = #(make-simple-markup "N.C.")
688
689   bassStaffProperties = #'((assign clefGlyph "clefs.F")
690   (assign clefPosition 2)
691   (assign middleCPosition 6)
692   (assign middleCClefPosition 6))
693 %% tablature:
694   stringOneTopmost = ##t
695   highStringOne = ##t
696
697 %% One may change the string tunings as follows :
698 %% The length of the list must be equal to the number of strings
699   stringTunings = #guitar-tuning
700   tablatureFormat = #fret-number-tablature-format
701   tabStaffLineLayoutFunction = #tablature-position-on-lines
702
703 %%
704   figuredBassFormatter = #format-bass-figure
705   metronomeMarkFormatter = #format-metronome-markup
706
707
708   %% See also make-voice-props-set
709   graceSettings = #`(
710     (Voice Stem direction ,UP)
711     (Voice Stem font-size -3)
712     (Voice Flag font-size -3)
713     (Voice NoteHead font-size -3)
714     (Voice TabNoteHead font-size -4)
715     (Voice Dots font-size -3)
716     (Voice Stem length-fraction 0.8)
717     (Voice Stem no-stem-extend #t)
718     (Voice Beam beam-thickness 0.384)
719     (Voice Beam length-fraction 0.8)
720     (Voice Accidental font-size -4)
721     (Voice AccidentalCautionary font-size -4)
722     (Voice Slur direction ,DOWN)
723     (Voice Script font-size -3)
724     (Voice Fingering font-size -8)
725     (Voice StringNumber font-size -8)
726   )
727
728   keepAliveInterfaces = #'(
729     bass-figure-interface
730     chord-name-interface
731     cluster-beacon-interface
732     fret-diagram-interface
733     lyric-syllable-interface
734     note-head-interface
735     tab-note-head-interface
736     lyric-interface
737     percent-repeat-item-interface
738     percent-repeat-interface
739
740     ;; need this, as stanza numbers are items, and appear only once.
741     stanza-number-interface
742   )
743   % \quoteDuring is supposed to quote everything, cueDuring only the essentials
744   quotedEventTypes = #'(StreamEvent)
745   quotedCueEventTypes = #'(
746     note-event
747     rest-event
748     tie-event
749     beam-event
750     tuplet-span-event)
751   instrumentTransposition = #(ly:make-pitch 0 0 0)
752
753   topLevelAlignment = ##t
754
755   timing = ##t
756 }
757
758
759
760
761 \context {
762   \type "Engraver_group"
763   \name "FiguredBass"
764   \description "A context for printing a figured bass line."
765
766   \consists "Figured_bass_engraver"
767   \consists "Separating_line_group_engraver"
768   \consists "Axis_group_engraver"
769
770   \override VerticalAxisGroup.remove-empty = ##t
771   \override VerticalAxisGroup.remove-first = ##t
772   \override VerticalAxisGroup.staff-affinity = #UP
773   \override VerticalAxisGroup.nonstaff-relatedstaff-spacing.padding = #0.5
774   \override VerticalAxisGroup.nonstaff-nonstaff-spacing.padding = #0.5
775 }
776
777 \context {
778   \name "Devnull"
779   \type "Engraver_group"
780
781 %% don't want to route anything out of here:
782   \alias "Staff"
783   \alias "Voice"
784   \description "Silently discards all musical information given to this
785 context."
786 }
787
788 \context {
789   \Voice
790   \name "TabVoice"
791   \alias "Voice"
792   \consists "Tab_note_heads_engraver"
793   \consists "Tab_tie_follow_engraver"
794
795   \remove "Note_heads_engraver"
796   \remove "Fingering_engraver"
797   \remove "New_fingering_engraver"
798   \remove "Pitched_trill_engraver"
799
800   \description "Context for drawing notes in a Tab staff."
801
802   %% No accidental in tablature !
803   \remove "Accidental_engraver"
804 }
805
806 \context {
807   \Staff
808   \alias "Staff"
809   \name "TabStaff"
810   \denies "Voice"
811   \consists "Tab_staff_symbol_engraver"
812
813   \description "Context for generating tablature. It accepts only @code{TabVoice}
814 contexts and handles the line spacing, the tablature clef etc. properly."
815
816   \accepts "TabVoice"
817   \defaultchild "TabVoice"
818
819   %% 6 strings, bigger spacing
820   \override StaffSymbol.staff-space = #1.5
821
822   %% Don't draw stems over the tablature figures !
823   \override Stem.avoid-note-head = ##t
824
825   %% No accidental in tablature !
826   \remove "Accidental_engraver"
827   \remove "Key_engraver"
828
829   \remove "Ottava_spanner_engraver"
830   %% the clef handler
831   \override Clef.stencil = #clef::print-modern-tab-if-set
832   %% no time signature
833   \override TimeSignature.stencil = ##f
834   %% no arpeggios
835   \override Arpeggio.stencil = ##f
836   %% we ignore collision warnings that may occur due to
837   %% stem overlapping, because we have no stems ;-)
838   \override NoteColumn.ignore-collision = ##t
839   %% Special "TAB" clef
840   clefGlyph = #"clefs.tab"
841   clefPosition = #0
842   %% Change string if note results in negative fret number
843   handleNegativeFrets = #'recalculate
844   %% Allow open strings even if minimumFret is set
845   restrainOpenStrings = ##f
846
847   %% TabStaff increase the staff-space, which in turn
848   %% increases beam thickness and spacing; beams are
849   %% too big. We have to adjust the beam settings:
850   \override Beam.beam-thickness = #0.32
851   \override Beam.length-fraction = #0.62
852   %% the same goes for tremolo beams
853   \override StemTremolo.beam-thickness = #0.32
854   %% NOTE: in lily/stem-tremolo.cc, we have length-fraction = 1,
855   %% and the tablature staff space is scaled (1.5 by default),
856   %% so we use the inversion of the scale factor:
857   \override StemTremolo.length-fraction = #(lambda (grob)
858                                                (/ 1 (ly:staff-symbol-staff-space grob)))
859   \override StemTremolo.beam-width = #stem-tremolo::calc-tab-width
860
861   %% make the Stems as short as possible to minimize their influence
862   %% on the slur::calc-control-points routine
863   \override Stem.no-stem-extend = ##t
864   \override Flag.style = #'no-flag
865   \override Stem.details = #'((lengths 0 0 0 0 0 0)
866                                 (beamed-lengths 0 0 0)
867                                 (beamed-minimum-free-lengths 0 0 0)
868                                 (beamed-extreme-minimum-free-lengths 0 0)
869                                 (stem-shorten 0 0))
870   %% after all, the stubs of the stems may still be visible, so ...
871   \override Stem.stencil = ##f
872   \override Flag.stencil = ##f
873   %% automatic beams should be suppressed for similar reasons ...
874   autoBeaming = ##f
875   %% remove beams, dots and rests ...
876   \override Beam.stencil = ##f
877   \override StemTremolo.stencil = ##f
878   \override Dots.stencil = ##f
879   \override Rest.stencil = ##f
880   \override MultiMeasureRest.stencil = ##f
881   \override MultiMeasureRestNumber.stencil = ##f
882   \override MultiMeasureRestText.stencil = ##f
883   %% ... all kinds of ties/slurs
884   \override Tie.stencil = ##f
885   \override RepeatTie.stencil = ##f
886   \override LaissezVibrerTie.stencil = ##f
887   \override Slur.stencil = #slur::draw-tab-slur
888   \override PhrasingSlur.stencil = ##f
889   %% 'tied to' fret numbers become invisible or parenthesized, respectively)
890   \override Tie.after-line-breaking = #tie::handle-tab-note-head
891   \override RepeatTie.after-line-breaking = #repeat-tie::handle-tab-note-head
892   %% ... and all kinds of markups, spanners etc.
893   \override TupletBracket.stencil = ##f
894   \override TupletNumber.stencil = ##f
895   \override DynamicText.stencil = ##f
896   \override DynamicTextSpanner.stencil = ##f
897   \override TextSpanner.stencil = ##f
898   \override Hairpin.stencil = ##f
899   \override Script.stencil = ##f
900   \override TextScript.stencil = ##f
901   \override Glissando.stencil = #glissando::draw-tab-glissando
902   %% the direction for glissando lines will be automatically corrected
903   \override Glissando.extra-dy = #glissando::calc-tab-extra-dy
904   \override Glissando.bound-details.right = #`((attach-dir . ,LEFT)
905                                                    (padding . 0.3))
906   \override Glissando.bound-details.left = #`((attach-dir . ,RIGHT)
907                                                    (padding . 0.3))
908   %% dead notes
909   \override TabNoteHead.glyph-name = #tab-note-head::calc-glyph-name
910   \override TabNoteHead.stencil = #tab-note-head::whiteout-if-style-set
911 }
912
913 \context {
914   \Voice
915   \name "VaticanaVoice"
916   \alias "Voice"
917   \description "Same as @code{Voice} context, except that it is
918 accommodated for typesetting Gregorian Chant in the notational style
919 of Editio Vaticana."
920
921   \remove "Slur_engraver"
922   \remove "Stem_engraver"
923   \remove "Ligature_bracket_engraver"
924   \consists "Vaticana_ligature_engraver"
925   \remove "Text_spanner_engraver"
926   \consists "Episema_engraver"
927
928   %% Set default head for notes outside of \[ \].
929   \override NoteHead.style = #'vaticana.punctum
930
931   %% Put some space before and after divisiones.
932   %% FIXME: This does not seem to show any effect.
933   \override Script.padding = #0.5
934
935   %% There are no beams in Gregorian Chant notation.
936   autoBeaming = ##f
937 }
938
939 \context {
940   \Staff
941   \name "VaticanaStaff"
942   \alias "Staff"
943   \denies "Voice"
944   \accepts "VaticanaVoice"
945   \defaultchild "VaticanaVoice"
946
947   \description "Same as @code{Staff} context, except that it is
948 accommodated for typesetting Gregorian Chant in the notational style
949 of Editio Vaticana."
950
951   \remove "Time_signature_engraver"
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.line-count = #4
960   \override StaffSymbol.thickness = #0.6
961
962   %% FIXME: unit on StaffSymbol's width should be \linewidth.
963   %% \override StaffSymbol.width = #60.0
964
965   %% Choose vaticana do clef on 3rd line as default.
966   clefGlyph = #"clefs.vaticana.do"
967   middleCPosition = #1
968   middleCClefPosition = #1
969   clefPosition = #1
970   clefTransposition = #0
971
972   %% Select vaticana style font.
973   \override KeySignature.glyph-name-alist = #alteration-vaticana-glyph-name-alist
974   \override Accidental.glyph-name-alist = #alteration-vaticana-glyph-name-alist
975   \override Custos.style = #'vaticana
976   \override Custos.neutral-position = #3
977   \override Custos.neutral-direction = #DOWN
978   \override Dots.style = #'vaticana
979 }
980
981 \context {
982   \Voice
983   \name "GregorianTranscriptionVoice"
984   \alias "Voice"
985   \consists "Episema_engraver"
986
987   %% Removing ligature bracket engraver without replacing it by some
988   %% other ligature engraver would cause a "Junking event: `LigatureEvent'"
989   %% warning for every "\[" and "\]".  Therefore, we make the grob
990   %% transparent instead.
991   \override LigatureBracket.transparent = ##t
992
993   %% Put some space before and after divisiones.
994   %% FIXME: This does not seem to show any effect.
995   \override Script.padding = #0.5
996
997   %% There are no beams in Gregorian Chant notation.
998   autoBeaming = ##f
999
1000 }
1001
1002 \context {
1003   \Staff
1004   \name "GregorianTranscriptionStaff"
1005   \alias "Staff"
1006   \denies "Voice"
1007   \accepts "GregorianTranscriptionVoice"
1008   \defaultchild "GregorianTranscriptionVoice"
1009
1010   %% We can not remove Bar_engraver; otherwise clefs and custodes will
1011   %% not show up any more among other line breaking issues.
1012   %% Instead, we make the grob transparent.
1013   \override BarLine.transparent = ##t
1014 }
1015
1016 \context {
1017   \Voice
1018   \name "MensuralVoice"
1019   \alias "Voice"
1020   \description "Same as @code{Voice} context, except that it is
1021 accommodated for typesetting a piece in mensural style."
1022
1023   \remove "Slur_engraver"
1024   \remove "Ligature_bracket_engraver"
1025   \consists "Mensural_ligature_engraver"
1026
1027   %% Set default head for notes outside of \[ \].
1028   \override NoteHead.style = #'mensural
1029   \override Rest.style = #'mensural
1030   \override Flag.style = #'mensural
1031
1032   %% There are no beams in mensural notation.
1033   autoBeaming = ##f
1034 }
1035
1036 \context {
1037   \Staff
1038   \name "MensuralStaff"
1039   \alias "Staff"
1040   \denies "Voice"
1041   \defaultchild "MensuralVoice"
1042   \accepts "MensuralVoice"
1043   \description "Same as @code{Staff} context, except that it is
1044 accommodated for typesetting a piece in mensural style."
1045
1046   \consists "Custos_engraver"
1047
1048   %% We can not remove Bar_engraver; otherwise clefs and custodes will
1049   %% not show up any more among other line breaking issues.
1050   %% Instead, we make the grob transparent.
1051   \override BarLine.transparent = ##t
1052
1053   \override StaffSymbol.thickness = #0.6
1054
1055   %% FIXME: unit on StaffSymbol's width should be \linewidth.
1056   %% \override StaffSymbol.width = #60.0
1057
1058   %% Choose mensural g clef on 2nd line as default.
1059   clefGlyph = #"clefs.mensural.g"
1060   middleCClefPosition = #-6
1061   middleCPosition = #-6
1062   clefPosition = #-2
1063   clefTransposition = #0
1064
1065   %% Select mensural style font.
1066   \override TimeSignature.style = #'mensural
1067   \override KeySignature.glyph-name-alist = #alteration-mensural-glyph-name-alist
1068   \override Accidental.glyph-name-alist = #alteration-mensural-glyph-name-alist
1069   \override Custos.style = #'mensural
1070   \override Custos.neutral-position = #3
1071   \override Custos.neutral-direction = #DOWN
1072
1073   %% Accidentals are valid only once (same as
1074   %% \accidentalStyle forget)
1075   extraNatural = ##f
1076   autoAccidentals = #`(Staff ,(make-accidental-rule 'same-octave -1))
1077   autoCautionaries = #'()
1078   printKeyCancellation = ##f
1079 }
1080
1081 \context {
1082   \Voice
1083   \name "PetrucciVoice"
1084   \alias "Voice"
1085   \description "Same as @code{Voice} context, except that it is
1086 accommodated for typesetting a piece in Petrucci style."
1087
1088   \remove "Ligature_bracket_engraver"
1089   \consists "Mensural_ligature_engraver"
1090
1091   %% Set glyph styles.
1092   \override NoteHead.style = #'petrucci
1093   \override Rest.style = #'mensural
1094
1095   % Thickens and shortens stems.
1096   \override Stem.thickness = #1.7
1097   \override Stem.length = #5
1098
1099   %% There are no beams in Petrucci notation.
1100   autoBeaming = ##f
1101 }
1102
1103 \context {
1104   \Staff
1105   \name "PetrucciStaff"
1106   \alias "Staff"
1107   \denies "Voice"
1108   \defaultchild "PetrucciVoice"
1109   \accepts "PetrucciVoice"
1110   \description "Same as @code{Staff} context, except that it is
1111 accommodated for typesetting a piece in Petrucci style."
1112
1113   \consists "Custos_engraver"
1114
1115   \override StaffSymbol.thickness = #1.3
1116
1117   %% Choose Petrucci g clef on 2nd line as default.
1118   clefGlyph = #"clefs.petrucci.g"
1119   middleCClefPosition = #-6
1120   middleCPosition = #-6
1121   clefPosition = #-2
1122   clefTransposition = #0
1123
1124   \override Custos.style = #'mensural
1125   \override Custos.neutral-position = #3
1126   \override Custos.neutral-direction = #DOWN
1127
1128   %% Accidentals are valid only once (if the following note is different)
1129   extraNatural = ##f
1130   autoAccidentals = #`(Staff ,(make-accidental-rule 'same-octave 0)
1131                              ,neo-modern-accidental-rule)
1132   autoCautionaries = #'()
1133   printKeyCancellation = ##f
1134 }
1135
1136 \context {
1137  \Voice
1138  \name "KievanVoice"
1139  \alias "Voice"
1140  \description "Same as @code{Voice} context, except that it is
1141 accommodated for typesetting a piece in Kievan style."
1142
1143   \remove "Ligature_bracket_engraver"
1144   \consists "Kievan_ligature_engraver"
1145
1146  %% Set glyph styles.
1147  \override NoteHead.style = #'kievan
1148  \override Stem.X-offset = #stem::kievan-offset-callback
1149  \override Stem.stencil = ##f
1150  \override Flag.stencil = ##f
1151  \override Rest.style = #'mensural
1152  \override Accidental.glyph-name-alist = #alteration-kievan-glyph-name-alist
1153  \override Dots.style = #'kievan
1154  \override Slur.stencil = ##f
1155  \override Stem.length = #0.0
1156  \override Beam.positions = #beam::get-kievan-positions
1157  \override Beam.quantized-positions = #beam::get-kievan-quantized-positions
1158  \override NoteHead.duration-log = #note-head::calc-kievan-duration-log
1159
1160  %% There are beams in Kievan notation, but they are invoked manually
1161  autoBeaming = ##f
1162 }
1163
1164 \context {
1165  \Staff
1166  \name "KievanStaff"
1167  \alias "Staff"
1168  \denies "Voice"
1169  \defaultchild "KievanVoice"
1170  \accepts "KievanVoice"
1171  \description "Same as @code{Staff} context, except that it is
1172 accommodated for typesetting a piece in Kievan style."
1173
1174  \remove "Time_signature_engraver"
1175
1176  %% Choose Kievan tsefaut clef
1177  clefGlyph = #"clefs.kievan.do"
1178  middleCClefPosition = #0
1179  middleCPosition = #0
1180  clefPosition = #0
1181  clefTransposition = #0
1182
1183  %% Accidentals are valid only once (if the following note is different)
1184  extraNatural = ##f
1185  autoAccidentals = #`(Staff ,(make-accidental-rule 'same-octave 0)
1186                             ,neo-modern-accidental-rule)
1187  autoCautionaries = #'()
1188  printKeyCancellation = ##f
1189
1190 }
1191
1192 %% Keep the old definitions in here for compatibility (they erase previous
1193 %% settings to the corresponding context!).
1194 %% For new scores, one should simply insert the \RemoveEmptyStaves settings
1195 %% into the desired context. That's just as easy, requires only one line more
1196 %% (the \*Staff), but preserves previous context mods.
1197 %% TODO: DEPRECATED_2.13.17, remove at some point in the future
1198 RemoveEmptyStaffContext = \context {
1199   \Staff
1200   \RemoveEmptyStaves
1201 }
1202
1203 AncientRemoveEmptyStaffContext = \context {
1204   \VaticanaStaff
1205   \RemoveEmptyStaves
1206 }
1207
1208 RemoveEmptyDrumStaffContext = \context {
1209   \DrumStaff
1210   \RemoveEmptyStaves
1211 }
1212
1213 RemoveEmptyRhythmicStaffContext = \context {
1214   \RhythmicStaff
1215   \RemoveEmptyStaves
1216 }
1217
1218 RemoveEmptyTabStaffContext = \context {
1219   \TabStaff
1220   \RemoveEmptyStaves
1221 }