]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/notation/staff.itely
Add the Instrument_name_engraver also to all group contexts
[lilypond.git] / Documentation / notation / staff.itely
1 @c -*- coding: utf-8; mode: texinfo; -*-
2 @ignore
3     Translation of GIT committish: FILL-IN-HEAD-COMMITTISH
4
5     When revising a translation, copy the HEAD committish of the
6     version that you are working on.  For details, see the Contributors'
7     Guide, node Updating translation committishes..
8 @end ignore
9
10 @c \version "2.13.36"
11
12 @node Staff notation
13 @section Staff notation
14
15 @lilypondfile[quote]{staff-headword.ly}
16
17 This section explains how to influence the appearance of staves,
18 how to print scores with more than one staff, and how to add tempo
19 indications and cue notes to staves.
20
21 @menu
22 * Displaying staves::
23 * Modifying single staves::
24 * Writing parts::
25 @end menu
26
27
28 @node Displaying staves
29 @subsection Displaying staves
30
31 This section describes the different methods of creating and
32 grouping staves.
33
34 @menu
35 * Instantiating new staves::
36 * Grouping staves::
37 * Nested staff groups::
38 * Separating systems::
39 @end menu
40
41
42 @node Instantiating new staves
43 @unnumberedsubsubsec Instantiating new staves
44
45 @cindex new staff
46 @cindex staff initiation
47 @cindex staff instantiation
48 @cindex staff, new
49 @cindex staff, single
50 @cindex staff, drum
51 @cindex staff, percussion
52 @cindex drum staff
53 @cindex percussion staff
54 @cindex Gregorian transcription staff
55 @cindex rhythmic staff
56 @cindex tabstaff
57 @cindex tablature
58
59 @funindex \drummode
60 @funindex drummode
61 @funindex DrumStaff
62 @funindex RhythmicStaff
63 @funindex TabStaff
64 @funindex MensuralStaff
65 @funindex VaticanaStaff
66 @funindex GregorianTranscriptionStaff
67
68 @notation{Staves} (singular: @notation{staff}) are created with
69 the @code{\new} or @code{\context} commands.  For details, see
70 @ref{Creating contexts}.
71
72 The basic staff context is @code{Staff}:
73
74 @lilypond[verbatim,quote,relative=2]
75 \new Staff { c4 d e f }
76 @end lilypond
77
78 The @code{DrumStaff} context creates a five-line staff set up for
79 a typical drum set.  Each instrument is shown with a different
80 symbol.  The instruments are entered in drum mode following a
81 @code{\drummode} command, with each instrument specified by name.
82 For details, see @ref{Percussion staves}.
83
84 @lilypond[verbatim,quote]
85 \new DrumStaff {
86   \drummode { cymc hh ss tomh }
87 }
88 @end lilypond
89
90 @code{RhythmicStaff} creates a single-line staff that only
91 displays the rhythmic values of the input.  Real durations are
92 preserved.  For details, see @ref{Showing melody rhythms}.
93
94 @lilypond[verbatim,quote,relative=2]
95 \new RhythmicStaff { c4 d e f }
96 @end lilypond
97
98 @code{TabStaff} creates a tablature with six strings in standard
99 guitar tuning.  For details, see @ref{Default tablatures}.
100
101 @lilypond[verbatim,quote,relative=2]
102 \new TabStaff { c4 d e f }
103 @end lilypond
104
105 There are two staff contexts specific for the notation of ancient
106 music: @code{MensuralStaff} and @code{VaticanaStaff}.  They are
107 described in @ref{Pre-defined contexts}.
108
109 The @code{GregorianTranscriptionStaff} context creates a staff to
110 notate modern Gregorian chant.  It does not show bar lines.
111
112 @lilypond[verbatim,quote,relative=2]
113 \new GregorianTranscriptionStaff { c4 d e f e d }
114 @end lilypond
115
116 New single staff contexts may be defined.  For details, see
117 @ref{Defining new contexts}.
118
119
120 @seealso
121 Music Glossary:
122 @rglos{staff},
123 @rglos{staves}.
124
125 Notation Reference:
126 @ref{Creating contexts},
127 @ref{Percussion staves},
128 @ref{Showing melody rhythms},
129 @ref{Default tablatures},
130 @ref{Pre-defined contexts},
131 @ref{Staff symbol},
132 @ref{Gregorian chant contexts},
133 @ref{Mensural contexts},
134 @ref{Defining new contexts}.
135
136 Snippets:
137 @rlsr{Staff notation}.
138
139 Internals Reference:
140 @rinternals{Staff},
141 @rinternals{DrumStaff},
142 @rinternals{GregorianTranscriptionStaff},
143 @rinternals{RhythmicStaff},
144 @rinternals{TabStaff},
145 @rinternals{MensuralStaff},
146 @rinternals{VaticanaStaff},
147 @rinternals{StaffSymbol}.
148
149
150 @node Grouping staves
151 @unnumberedsubsubsec Grouping staves
152
153 @cindex start of system
154 @cindex staff, multiple
155 @cindex staves, multiple
156 @cindex system start delimiters
157 @cindex bracket, vertical
158 @cindex brace, vertical
159 @cindex choir staff
160 @cindex grand staff
161 @cindex piano staff
162 @cindex staff group
163 @cindex staff, choir
164 @cindex staff, piano
165 @cindex staff, grand
166 @cindex system
167
168 Various contexts exist to group single staves together in order to
169 form multi-stave systems.  Each grouping context sets the style of
170 the system start delimiter and the behavior of bar lines.
171
172 If no context is specified, the default properties will be used:
173 the group is started with a vertical line, and the bar lines are
174 not connected.
175
176 @lilypond[verbatim,quote,relative=2]
177 <<
178   \new Staff { c1 c }
179   \new Staff { c1 c }
180 >>
181 @end lilypond
182
183 In the @code{StaffGroup} context, the group is started with a
184 bracket and bar lines are drawn through all the staves.
185
186 @lilypond[verbatim,quote,relative=2]
187 \new StaffGroup <<
188   \new Staff { c1 c }
189   \new Staff { c1 c }
190 >>
191 @end lilypond
192
193 In a @code{ChoirStaff}, the group starts with a bracket, but bar
194 lines are not connected.
195
196 @lilypond[verbatim,quote,relative=2]
197 \new ChoirStaff <<
198   \new Staff { c1 c }
199   \new Staff { c1 c }
200 >>
201 @end lilypond
202
203 In a @code{GrandStaff}, the group begins with a brace, and bar
204 lines are connected between the staves.
205
206 @lilypond[verbatim,quote,relative=2]
207 \new GrandStaff <<
208   \new Staff { c1 c }
209   \new Staff { c1 c }
210 >>
211 @end lilypond
212
213 The @code{PianoStaff} is identical to a @code{GrandStaff}, except
214 that it supports printing the instrument name directly.  For
215 details, see @ref{Instrument names}.
216
217 @lilypond[verbatim,quote,relative=2]
218 \new PianoStaff <<
219   \set PianoStaff.instrumentName = #"Piano"
220   \new Staff { c1 c }
221   \new Staff { c1 c }
222 >>
223 @end lilypond
224
225 Each staff group context sets the property
226 @code{systemStartDelimiter} to one of the following values:
227 @code{SystemStartBar}, @code{SystemStartBrace}, or
228 @code{SystemStartBracket}.  A fourth delimiter,
229 @code{SystemStartSquare}, is also available, but it must be
230 explicitly specified.
231
232 New staff group contexts may be defined.  For details, see
233 @ref{Defining new contexts}.
234
235
236 @snippets
237
238 @lilypondfile[verbatim,lilyquote,texidoc,doctitle]
239 {use-square-bracket-at-the-start-of-a-staff-group.ly}
240
241 @lilypondfile[verbatim,lilyquote,texidoc,doctitle]
242 {display-bracket-with-only-one-staff-in-a-system.ly}
243
244 @cindex mensurstriche layout
245 @cindex renaissance music
246 @cindex transcription of mensural music
247 @cindex mensural music, transcription of
248
249 @lilypondfile[verbatim,lilyquote,texidoc,doctitle]
250 {mensurstriche-layout-bar-lines-between-the-staves.ly}
251
252
253 @seealso
254 Music Glossary:
255 @rglos{brace},
256 @rglos{bracket},
257 @rglos{grand staff}.
258
259 Notation Reference:
260 @ref{Instrument names},
261 @ref{Defining new contexts}.
262
263 Snippets:
264 @rlsr{Staff notation}.
265
266 Internals Reference:
267 @rinternals{Staff},
268 @rinternals{StaffGroup},
269 @rinternals{ChoirStaff},
270 @rinternals{GrandStaff},
271 @rinternals{PianoStaff},
272 @rinternals{SystemStartBar},
273 @rinternals{SystemStartBrace},
274 @rinternals{SystemStartBracket},
275 @rinternals{SystemStartSquare}.
276
277 @knownissues
278 @code{PianoStaff} does not, by default, accept @code{ChordNames}.
279
280
281 @node Nested staff groups
282 @unnumberedsubsubsec Nested staff groups
283
284 @cindex staff, nested
285 @cindex staves, nested
286 @cindex nesting of staves
287 @cindex system start delimiters, nested
288 @cindex nested staff brackets
289 @cindex brackets, nesting of
290 @cindex braces, nesting of
291
292 Staff-group contexts can be nested to arbitrary depths.  In this
293 case, each child context creates a new bracket adjacent to the
294 bracket of its parent group.
295
296 @lilypond[verbatim,quote,relative=2]
297 \new StaffGroup <<
298   \new Staff { c2 c | c2 c }
299   \new StaffGroup <<
300     \new Staff { g2 g | g2 g }
301     \new StaffGroup \with {
302       systemStartDelimiter = #'SystemStartSquare
303     }
304     <<
305       \new Staff { e2 e | e2 e }
306       \new Staff { c2 c | c2 c }
307     >>
308   >>
309 >>
310 @end lilypond
311
312 New nested staff group contexts can be defined.  For details, see
313 @ref{Defining new contexts}.
314
315
316 @snippets
317
318 @lilypondfile[verbatim,lilyquote,texidoc,doctitle]
319 {nesting-staves.ly}
320
321
322 @seealso
323 Notation Reference:
324 @ref{Grouping staves},
325 @ref{Instrument names},
326 @ref{Defining new contexts}.
327
328 Snippets:
329 @rlsr{Staff notation}.
330
331 Internals Reference:
332 @rinternals{StaffGroup},
333 @rinternals{ChoirStaff},
334 @rinternals{SystemStartBar},
335 @rinternals{SystemStartBrace},
336 @rinternals{SystemStartBracket},
337 @rinternals{SystemStartSquare}.
338
339 @node Separating systems
340 @unnumberedsubsubsec Separating systems
341
342 @cindex system separator mark
343
344 If the number of systems per page changes from page to page it is
345 customary to separate the systems by placing a system separator mark
346 between them.  By default the system separator is blank, but can be
347 turned on with a @code{\paper} option.
348
349 @c \book is required here to display the system separator
350 @c ragged-right is required as there are two systems
351 @lilypond[verbatim,quote,ragged-right]
352 \book {
353   \score {
354     \new StaffGroup <<
355       \new Staff {
356         \relative c'' {
357           c4 c c c
358           \break
359           c4 c c c
360         }
361       }
362       \new Staff {
363         \relative c'' {
364           c4 c c c
365           \break
366           c4 c c c
367         }
368       }
369     >>
370   }
371   \paper {
372     system-separator-markup = \slashSeparator
373     % following commands are needed only to format this documentation
374     paper-width = 100\mm
375     paper-height = 100\mm
376     tagline = ##f
377   }
378 }
379 @end lilypond
380
381 @seealso
382 Notation Reference:
383 @ref{Page layout}.
384
385 Snippets:
386 @rlsr{Staff notation}.
387
388
389 @node Modifying single staves
390 @subsection Modifying single staves
391
392 This section explains how to change specific attributes of one
393 staff: for example, modifying the number of staff lines or the
394 staff size.  Methods to start and stop staves and set ossia
395 sections are also described.
396
397 @menu
398 * Staff symbol::
399 * Ossia staves::
400 * Hiding staves::
401 @end menu
402
403
404 @node Staff symbol
405 @unnumberedsubsubsec Staff symbol
406
407 @cindex adjusting staff symbol
408 @cindex drawing staff symbol
409 @cindex staff symbol, setting of
410 @cindex staff symbol, drawing
411 @cindex stop staff lines
412 @cindex start staff lines
413 @cindex staff lines, amount of
414 @cindex staff lines, number of
415 @cindex staff line, thickness of
416 @cindex amount of staff lines
417 @cindex thickness of staff lines
418 @cindex ledger lines, setting
419 @cindex setting of ledger lines
420 @cindex spacing of ledger lines
421 @cindex number of staff lines
422
423 The lines of a staff belong to the @code{StaffSymbol} grob.
424 @code{StaffSymbol} properties can be modified to change the
425 appearance of a staff, but they must be modified before the staff
426 is created.
427
428 The number of staff lines may be changed.  The clef position and
429 the position of middle C may need to be modified to fit the new
430 staff.  For an explanation, refer to the snippet section in
431 @ref{Clef}.
432
433 @lilypond[verbatim,quote,relative=2]
434 \new Staff \with {
435   \override StaffSymbol #'line-count = #3
436 }
437 { d4 d d d }
438 @end lilypond
439
440 Staff line thickness can be modified.  The thickness of ledger
441 lines and stems are also affected, since they depend on staff line
442 thickness.
443
444 @lilypond[verbatim,quote,relative=1]
445 \new Staff \with {
446   \override StaffSymbol #'thickness = #3
447 }
448 { e4 d c b }
449 @end lilypond
450
451 Ledger line thickness can be set independently of staff line
452 thickness.  In the example the two numbers are factors multiplying
453 the staff line thickness and the staff line spacing.  The two
454 contributions are added to give the ledger line thickness.
455
456 @lilypond[verbatim,quote,relative=1]
457 \new Staff \with {
458   \override StaffSymbol #'ledger-line-thickness = #'(1 . 0.2)
459 }
460 { e4 d c b }
461 @end lilypond
462
463 The distance between staff lines can be changed.  This setting
464 affects the spacing of ledger lines as well.
465
466 @lilypond[verbatim,quote,relative=1]
467 \new Staff \with {
468   \override StaffSymbol #'staff-space = #1.5
469 }
470 { a4 b c d }
471 @end lilypond
472
473 Further details about the properties of @code{StaffSymbol} can be
474 found in @rinternals{staff-symbol-interface}.
475
476 @cindex stopping a staff
477 @cindex starting a staff
478 @cindex staff, starting
479 @cindex staff, stopping
480
481 @funindex \startStaff
482 @funindex startStaff
483 @funindex \stopStaff
484 @funindex stopStaff
485
486 Modifications to staff properties in the middle of a score can be
487 placed between @code{\stopStaff} and @code{\startStaff}:
488
489 @lilypond[verbatim,quote,relative=2]
490 c2 c
491 \stopStaff
492 \override Staff.StaffSymbol #'line-count = #2
493 \startStaff
494 b2 b
495 \stopStaff
496 \revert Staff.StaffSymbol #'line-count
497 \startStaff
498 a2 a
499 @end lilypond
500
501 @noindent
502 In general, @code{\startStaff} and @code{\stopStaff} can be used
503 to stop or start a staff in the middle of a score.
504
505 @lilypond[verbatim,quote,relative=2]
506 c4 b a2
507 \stopStaff
508 b4 c d2
509 \startStaff
510 e4 d c2
511 @end lilypond
512
513
514 @predefined
515 @code{\startStaff},
516 @code{\stopStaff}.
517 @endpredefined
518
519
520 @snippets
521
522 @lilypondfile[verbatim,lilyquote,texidoc,doctitle]
523 {making-some-staff-lines-thicker-than-the-others.ly}
524
525
526 @seealso
527 Music Glossary:
528 @rglos{line},
529 @rglos{ledger line},
530 @rglos{staff}.
531
532 Notation Reference:
533 @ref{Clef}.
534
535 Snippets:
536 @rlsr{Staff notation}.
537
538 Internals Reference:
539 @rinternals{StaffSymbol},
540 @rinternals{staff-symbol-interface}.
541
542
543 @node Ossia staves
544 @unnumberedsubsubsec Ossia staves
545
546 @cindex staff, Frenched
547 @cindex ossia
548 @cindex Frenched staves
549 @cindex staff, resizing of
550 @cindex resizing of staves
551
552 @funindex \startStaff
553 @funindex startStaff
554 @funindex \stopStaff
555 @funindex stopStaff
556
557 @notation{Ossia} staves can be set by creating a new simultaneous
558 staff in the appropriate location:
559
560 @lilypond[verbatim,quote]
561 \new Staff \relative c'' {
562   c4 b d c
563   <<
564     { c4 b d c }
565     \new Staff { e4 d f e }
566   >>
567   c4 b c2
568 }
569 @end lilypond
570
571 @noindent
572 However, the above example is not what is usually desired.  To
573 create ossia staves that are above the original staff, have no
574 time signature or clef, and have a smaller font size, tweaks must
575 be used.  The Learning Manual describes a specific technique to
576 achieve this goal, beginning with
577 @rlearning{Nesting music expressions}.
578
579 The following example uses the @code{alignAboveContext} property
580 to align the ossia staff.  This method is most appropriate when
581 only a few ossia staves are needed.
582
583 @lilypond[verbatim,quote]
584 \new Staff = main \relative c'' {
585   c4 b d c
586   <<
587     { c4 b d c }
588
589     \new Staff \with {
590       \remove "Time_signature_engraver"
591       alignAboveContext = #"main"
592       fontSize = #-3
593       \override StaffSymbol #'staff-space = #(magstep -3)
594       \override StaffSymbol #'thickness = #(magstep -3)
595       firstClef = ##f
596     }
597     { e4 d f e }
598   >>
599   c4 b c2
600 }
601 @end lilypond
602
603 If many isolated ossia staves are needed, creating an empty
604 @code{Staff} context with a specific @emph{context id} may be more
605 appropriate; the ossia staves may then be created by
606 @emph{calling} this context and using @code{\startStaff} and
607 @code{\stopStaff} at the desired locations.  The benefits of this
608 method are more apparent if the piece is longer than the following
609 example.
610
611 @lilypond[verbatim,quote,ragged-right]
612 <<
613   \new Staff = ossia \with {
614     \remove "Time_signature_engraver"
615     \override Clef #'transparent = ##t
616     fontSize = #-3
617     \override StaffSymbol #'staff-space = #(magstep -3)
618     \override StaffSymbol #'thickness = #(magstep -3)
619   }
620   { \stopStaff s1*6 }
621
622   \new Staff \relative c' {
623     c4 b c2
624     <<
625       { e4 f e2 }
626       \context Staff = ossia {
627         \startStaff e4 g8 f e2 \stopStaff
628       }
629     >>
630     g4 a g2 \break
631     c4 b c2
632     <<
633       { g4 a g2 }
634       \context Staff = ossia {
635         \startStaff g4 e8 f g2 \stopStaff
636       }
637     >>
638     e4 d c2
639   }
640 >>
641 @end lilypond
642
643
644 Using the @code{\Staff \RemoveEmptyStaves} command to create ossia
645 staves may be used as an alternative.  This method is most
646 convenient when ossia staves occur immediately following a line
647 break.  For more information about
648 @code{\Staff \RemoveEmptyStaves}, see @ref{Hiding staves}.
649
650 @lilypond[verbatim,quote,ragged-right]
651 <<
652   \new Staff = ossia \with {
653     \remove "Time_signature_engraver"
654     \override Clef #'transparent = ##t
655     fontSize = #-3
656     \override StaffSymbol #'staff-space = #(magstep -3)
657     \override StaffSymbol #'thickness = #(magstep -3)
658   } \relative c'' {
659     R1*3
660     c4 e8 d c2
661   }
662   \new Staff \relative c' {
663     c4 b c2
664     e4 f e2
665     g4 a g2 \break
666     c4 b c2
667     g4 a g2
668     e4 d c2
669   }
670 >>
671
672 \layout {
673   \context {
674     \Staff \RemoveEmptyStaves
675     \override VerticalAxisGroup #'remove-first = ##t
676   }
677 }
678 @end lilypond
679
680
681 @snippets
682
683 @lilypondfile[verbatim,lilyquote,texidoc,doctitle]
684 {vertically-aligning-ossias-and-lyrics.ly}
685
686
687 @seealso
688 Music Glossary:
689 @rglos{ossia},
690 @rglos{staff},
691 @rglos{Frenched staff}.
692
693 Learning Manual:
694 @rlearning{Nesting music expressions},
695 @rlearning{Size of objects},
696 @rlearning{Length and thickness of objects}.
697
698 Notation Reference:
699 @ref{Hiding staves}.
700
701 Snippets:
702 @rlsr{Staff notation}.
703
704 Internals Reference:
705 @rinternals{StaffSymbol}.
706
707
708 @node Hiding staves
709 @unnumberedsubsubsec Hiding staves
710
711 @cindex Frenched score
712 @cindex Frenched staff
713 @cindex staff, hiding
714 @cindex staff, empty
715 @cindex hiding of staves
716 @cindex empty staves
717
718 @funindex \RemoveEmptyStaves
719 @funindex Staff_symbol_engraver
720 @funindex \stopStaff
721 @funindex stopStaff
722
723
724 Staff lines can be hidden by removing the
725 @code{Staff_symbol_engraver} from the @code{Staff} context.  As an
726 alternative, @code{\stopStaff} may be used.
727
728 @lilypond[verbatim,quote]
729 \new Staff \with {
730   \remove "Staff_symbol_engraver"
731 }
732 \relative c''' { a8 f e16 d c b a2 }
733 @end lilypond
734
735
736 Empty staves can be hidden by setting the
737 @code{\Staff \RemoveEmptyStaves} command in the @code{\layout}
738 block.  In orchestral scores, this style is known as @q{Frenched
739 Score}.  By default, this command hides and removes all empty
740 staves in a score except for those in the first system.
741
742 @warning{A staff is considered empty when it contains only
743 multi-measure rests, rests, skips, spacer rests, or a combination of these
744 elements.}
745
746 @lilypond[verbatim,quote,ragged-right]
747 \layout {
748   \context {
749     \Staff \RemoveEmptyStaves
750   }
751 }
752
753 \relative c' <<
754   \new Staff {
755     e4 f g a \break
756     b1 \break
757     a4 b c2
758   }
759   \new Staff {
760     c,4 d e f \break
761     R1 \break
762     f4 g c,2
763   }
764 >>
765 @end lilypond
766
767 @cindex ossia
768
769 @noindent
770 @code{\Staff \RemoveEmptyStaves} can also be used to create ossia
771 sections for a staff.  For details, see @ref{Ossia staves}.
772
773 @cindex hiding ancient staves
774 @cindex hiding rhythmic staves
775
776 @funindex \RemoveEmptyStaves
777
778 The @code{\VaticanaStaff \RemoveEmptyStaves} command may be used to
779 hide empty staves in ancient music contexts.  Similarly,
780 @code{\RhythmicStaff \RemoveEmptyStaves} may be used to hide empty
781 @code{RhythmicStaff} contexts.
782
783
784 @predefined
785 @code{\Staff \RemoveEmptyStaves},
786 @code{\VaticanaStaff \RemoveEmptyStaves},
787 @code{\RhythmicStaff \RemoveEmptyStaves}.
788 @endpredefined
789
790
791 @snippets
792
793 @lilypondfile[verbatim,lilyquote,texidoc,doctitle]
794 {removing-the-first-empty-line.ly}
795
796
797 @seealso
798 Music Glossary:
799 @rglos{Frenched staff}.
800
801 Learning Manual:
802 @rlearning{Visibility and color of objects}.
803
804 Notation Reference:
805 @ref{Changing context default settings},
806 @ref{Staff symbol},
807 @ref{Ossia staves},
808 @ref{Hidden notes},
809 @ref{Invisible rests},
810 @ref{Visibility of objects}.
811
812 Snippets:
813 @rlsr{Staff notation}.
814
815 Internals Reference:
816 @rinternals{ChordNames},
817 @rinternals{FiguredBass},
818 @rinternals{Lyrics},
819 @rinternals{Staff},
820 @rinternals{VerticalAxisGroup},
821 @rinternals{Staff_symbol_engraver}.
822
823
824 @knownissues
825
826 Removing @code{Staff_symbol_engraver} also hides bar lines.  If
827 bar line visibility is forced, formatting errors may occur.  In
828 this case, use the following overrides instead of removing the
829 engraver:
830
831 @example
832 \override StaffSymbol #'stencil = ##f
833 \override NoteHead #'no-ledgers = ##t
834 @end example
835
836 For the Known issues and warnings associated with
837 @code{\Staff \RemoveEmptyStaves} see
838 @ref{Changing context default settings}.
839
840 @node Writing parts
841 @subsection Writing parts
842
843 This section explains how to insert tempo indications and
844 instrument names into a score.  Methods to quote other voices and
845 format cue notes are also described.
846
847 @menu
848 * Instrument names::
849 * Quoting other voices::
850 * Formatting cue notes::
851 @end menu
852
853 @node Instrument names
854 @unnumberedsubsubsec Instrument names
855
856 @cindex instrument names
857 @cindex instrument names, short
858
859 Instrument names can be printed on the left side of staves in the
860 @code{Staff}, @code{PianoStaff}, @code{StaffGroup}, @code{GrandStaff}
861 and @code{ChoirStaff} contexts.  The value of
862 @code{instrumentName} is used for the first staff, and the value
863 of @code{shortInstrumentName} is used for all succeeding staves.
864
865 @lilypond[verbatim,quote,ragged-right,relative=1]
866 \set Staff.instrumentName = #"Violin "
867 \set Staff.shortInstrumentName = #"Vln "
868 c4.. g'16 c4.. g'16
869 \break
870 c1
871 @end lilypond
872
873 Markup mode can be used to create more complicated instrument
874 names:
875
876 @lilypond[verbatim,quote,relative=2]
877 \set Staff.instrumentName = \markup {
878   \column { "Clarinetti"
879             \line { "in B" \smaller \flat } } }
880 c4 c,16 d e f g2
881 @end lilypond
882
883 @cindex instrument names, centering
884
885 When two or more staff contexts are grouped together, the
886 instrument names and short instrument names are centered by
887 default.  To center multi-line instrument names,
888 @code{\center-column} must be used:
889
890 @lilypond[verbatim,quote,indent=1.5\cm,relative=2]
891 <<
892   \new Staff {
893     \set Staff.instrumentName = #"Flute"
894     f2 g4 f
895   }
896   \new Staff {
897     \set Staff.instrumentName = \markup \center-column {
898       Clarinet
899       \line { "in B" \smaller \flat }
900     }
901     c4 b c2
902   }
903 >>
904 @end lilypond
905
906 @funindex indent
907 @funindex short-indent
908
909 However, if the instrument names are longer, the instrument names
910 in a staff group may not be centered unless the @code{indent} and
911 @code{short-indent} settings are increased.  For details about
912 these settings, see @ref{\paper variables for shifts and indents}.
913
914 @lilypond[verbatim,quote,ragged-right]
915 \layout {
916   indent = 3.0\cm
917   short-indent = 1.5\cm
918 }
919
920 \relative c'' <<
921   \new Staff {
922     \set Staff.instrumentName = #"Alto Flute in G"
923     \set Staff.shortInstrumentName = #"Fl."
924     f2 g4 f \break
925     g4 f g2
926   }
927   \new Staff {
928     \set Staff.instrumentName = #"Clarinet"
929     \set Staff.shortInstrumentName = #"Clar."
930     c,4 b c2 \break
931     c2 b4 c
932   }
933 >>
934 @end lilypond
935
936 @cindex instrument names, adding to other contexts
937
938 To add instrument names to other contexts (such as
939 @code{ChordNames} or @code{FiguredBass}),
940 @code{Instrument_name_engraver} must be added to that context.
941 For details, see @ref{Modifying context plug-ins}.
942
943 @cindex instrument names, changing
944 @cindex changing instrument names
945
946 Instrument names may be changed in the middle of a piece.
947 However, remember that @code{instrumentName} will not be
948 displayed in the middle of the piece, as it only appears
949 on the first staff:
950
951 @lilypond[verbatim,quote,ragged-right,relative=1]
952 \set Staff.instrumentName = #"First"
953 \set Staff.shortInstrumentName = #"one"
954 c1 c c c \break
955 c1 c c c \break
956 \set Staff.instrumentName = #"Second"
957 \set Staff.shortInstrumentName = #"two"
958 c1 c c c \break
959 c1 c c c \break
960 @end lilypond
961
962 @cindex instrument switch
963 @cindex switching instruments
964
965 @funindex \addInstrumentDefinition
966 @funindex addInstrumentDefinition
967 @funindex \instrumentSwitch
968 @funindex instrumentSwitch
969
970 If an instrument @emph{switch} is needed,
971 @code{\addInstrumentDefinition} may be used in combination with
972 @code{\instrumentSwitch} to create a detailed list of the
973 necessary changes for the switch.  The
974 @code{\addInstrumentDefinition} command has two arguments: an
975 identifying string, and an association list of context properties
976 and values to be used for the instrument.  It must be placed in
977 the toplevel scope.  @code{\instrumentSwitch} is used in the music
978 expression to declare the instrument switch:
979
980 @lilypond[verbatim,quote,ragged-right]
981 \addInstrumentDefinition #"contrabassoon"
982   #`((instrumentTransposition . ,(ly:make-pitch -1 0 0))
983      (shortInstrumentName . "Cbsn.")
984      (clefGlyph . "clefs.F")
985      (middleCPosition . 6)
986      (clefPosition . 2)
987      (instrumentCueName . ,(make-bold-markup "cbsn."))
988      (midiInstrument . "bassoon"))
989
990 \new Staff \with {
991   instrumentName = #"Bassoon"
992 }
993 \relative c' {
994   \clef tenor
995   \compressFullBarRests
996   c2 g'
997   R1*16
998   \instrumentSwitch "contrabassoon"
999   c,,2 g \break
1000   c,1 ~ | c1
1001 }
1002 @end lilypond
1003
1004
1005 @seealso
1006 Notation Reference:
1007 @ref{\paper variables for shifts and indents},
1008 @ref{Modifying context plug-ins}.
1009
1010 Snippets:
1011 @rlsr{Staff notation}.
1012
1013 Internals Reference:
1014 @rinternals{InstrumentName},
1015 @rinternals{PianoStaff},
1016 @rinternals{Staff}.
1017
1018
1019 @node Quoting other voices
1020 @unnumberedsubsubsec Quoting other voices
1021
1022 @cindex cues
1023 @cindex quoting other voices
1024 @cindex fragments
1025 @cindex cue notes
1026
1027 @funindex \addQuote
1028 @funindex addQuote
1029 @funindex \quoteDuring
1030 @funindex quoteDuring
1031 @funindex \transposition
1032 @funindex transposition
1033
1034 It is very common for one voice to double some of the music from
1035 another voice.  For example, the first and second violins may play the
1036 same notes during a passage of music.  In LilyPond this is accomplished
1037 by letting one voice @emph{quote} the other voice without having to
1038 re-enter it.
1039
1040 Before a part can be quoted, the @code{\addQuote} command must be used
1041 to initialize the quoted fragment.  This command must be used in the
1042 toplevel scope.  The first argument is an identifying string, and the
1043 second is a music expression:
1044
1045 @example
1046 flute = \relative c'' @{
1047   a4 gis g gis
1048 @}
1049 \addQuote "flute" @{ \flute @}
1050 @end example
1051
1052 The @code{\quoteDuring} command is used to indicate the point where the
1053 quotation begins.  It is followed by two arguments: the name of the
1054 quoted voice, as defined with @code{\addQuote}, and a music expression
1055 that indicates the duration of the quote, usually spacer rests or
1056 multi-measure rests.  The corresponding music (including all articulations,
1057 dynamics, markup, etc.) from the quoted voice is inserted into the music
1058 expression:
1059
1060 @lilypond[verbatim,quote]
1061 flute = \relative c'' {
1062   a4 gis g->\f gis^\markup{quoted}
1063 }
1064 \addQuote "flute" { \flute }
1065
1066 \relative c' {
1067   c4 cis \quoteDuring #"flute" { s2 }
1068 }
1069 @end lilypond
1070
1071 If the music expression used for @code{\quoteDuring} contains
1072 anything but a spacer rest or multi-measure rest, a polyphonic
1073 situation is created, which is often not desirable:
1074
1075 @lilypond[verbatim,quote]
1076 flute = \relative c'' {
1077   a4 gis g gis
1078 }
1079 \addQuote "flute" { \flute }
1080
1081 \relative c' {
1082   c4 cis \quoteDuring #"flute" { c4 b }
1083 }
1084 @end lilypond
1085
1086 Quotations recognize instrument transposition settings for both
1087 the source and target instruments if the @code{\transposition}
1088 command is used.  For details about @code{\transposition}, see
1089 @ref{Instrument transpositions}.
1090
1091 @lilypond[verbatim,quote]
1092 clarinet = \relative c'' {
1093   \transposition bes
1094   a4 gis g gis
1095 }
1096 \addQuote "clarinet" { \clarinet }
1097
1098 \relative c' {
1099   c4 cis \quoteDuring #"clarinet" { s2 }
1100 }
1101 @end lilypond
1102
1103 It is possible to tag quotations with unique names in order to
1104 process them in different ways.  For details about this procedure,
1105 see @ref{Using tags}.
1106
1107 It is also possible to adjust which objects from the original voice are quoted
1108 by changing the @code{quotedEventTypes} property.  By default, its value is
1109 @code{#'(StreamEvent)}, which means that everything is quoted.  Setting it
1110 to e.g. @code{#'(note-event rest-event tie-event)} causes lilypond to quote
1111 only notes, rests and ties, but no articulations, markup or dynamics.
1112
1113 @lilypond[verbatim,quote]
1114 clarinet = \relative c'' {
1115   a4 gis g->\f gis^\markup{quoted}
1116 }
1117 \addQuote "clarinet" { \clarinet }
1118
1119 \relative c' {
1120   \set Score.quotedEventTypes = #'(note-event rest-event tie-event)
1121   c4 cis \quoteDuring #"clarinet" { s2 }
1122 }
1123 @end lilypond
1124
1125 @snippets
1126
1127 @lilypondfile[verbatim,lilyquote,texidoc,doctitle]
1128 {quoting-another-voice-with-transposition.ly}
1129
1130 @cindex note-event
1131 @cindex articulation-event
1132 @cindex dynamic-event
1133 @cindex rest-event
1134
1135 @funindex quotedEventTypes
1136 @funindex quotedCueEventTypes
1137
1138 @lilypondfile[verbatim,lilyquote,texidoc,doctitle]
1139 {quoting-another-voice.ly}
1140
1141
1142 @seealso
1143 Notation Reference:
1144 @ref{Instrument transpositions},
1145 @ref{Using tags}.
1146
1147 Snippets:
1148 @rlsr{Staff notation}.
1149
1150 Internals Reference:
1151 @rinternals{QuoteMusic},
1152 @rinternals{Voice}.
1153
1154
1155 @knownissues
1156
1157 Only the contents of the first @code{Voice} occurring in an
1158 @code{\addQuote} command will be considered for quotation, so
1159 @code{@var{music}} cannot contain @code{\new} and
1160 @code{\context Voice} statements that would switch to a different
1161 Voice.
1162
1163 Quoting grace notes is broken and can even cause LilyPond to
1164 crash.
1165
1166 Quoting nested triplets may result in poor notation.
1167
1168 In earlier versions of LilyPond (pre 2.11), @code{addQuote} was
1169 written entirely in lower-case letters: @code{\addquote}.
1170
1171
1172 @node Formatting cue notes
1173 @unnumberedsubsubsec Formatting cue notes
1174
1175 @cindex cues
1176 @cindex cue notes
1177 @cindex cue notes, formatting
1178 @cindex fragments
1179 @cindex quoting other voices
1180 @cindex cues, formatting
1181
1182 @funindex \cueDuring
1183 @funindex cueDuring
1184 @funindex \quoteDuring
1185 @funindex quoteDuring
1186
1187 The previous section explains how to create quotations.  The
1188 @code{\cueDuring} command is a more specialized form of
1189 @code{\quoteDuring}, being particularly useful for inserting cue
1190 notes into a part.  The syntax is as follows:
1191
1192 @example
1193 \cueDuring #@var{partname} #@var{voice} @var{music}
1194 @end example
1195
1196 This command copies only the notes and rests from the
1197 corresponding measures from @code{@var{partname}} into a
1198 @code{CueVoice} context.  The @code{CueVoice} is created
1199 implicitly, and occurs simultaneously with @code{@var{music}},
1200 which creates a polyphonic situation.  The @code{@var{voice}}
1201 argument determines whether the cue notes should be notated as a
1202 first or second voice; @code{UP} corresponds to the first voice,
1203 and @code{DOWN} corresponds to the second.
1204
1205 @lilypond[verbatim,quote]
1206 oboe = \relative c'' {
1207   r2 r8 d16(\f f e g f a)
1208   g8 g16 g g2.
1209 }
1210 \addQuote "oboe" { \oboe }
1211
1212 \new Voice \relative c'' {
1213   \cueDuring #"oboe" #UP { R1 }
1214   g2 c,
1215 }
1216 @end lilypond
1217
1218 @noindent
1219 In the above example, the @code{Voice} context had to be
1220 explicitly declared, or else the entire music expression would
1221 belong to the @code{CueVoice} context.
1222
1223 It is possible to adjust which aspects of the music are quoted with
1224 @code{\cueDuring} by setting the @code{quotedCueEventTypes}
1225 property.  Its default value is @code{#'(note-event rest-event
1226 tie-event beam-event tuplet-span-event)}, which means that only
1227 notes, rests, ties, beams and tuplets are quoted, but not
1228 articulations, dynamic marks, markup etc.
1229
1230 @lilypond[verbatim,quote]
1231 oboe = \relative c'' {
1232   r2 r8 d16(\f f e g f a)
1233   g8 g16 g g2.
1234 }
1235 \addQuote "oboe" { \oboe }
1236
1237 \new Voice \relative c'' {
1238   \set Score.quotedCueEventTypes = #'(note-event rest-event tie-event
1239                                       beam-event tuplet-span-event
1240                                       dynamic-event slur-event)
1241   \cueDuring #"oboe" #UP { R1 }
1242   g2 c,
1243 }
1244 @end lilypond
1245
1246 Markup can be used to show the name of the quoted instrument.  Also,
1247 if the cue notes require a change in clef, the original clef should
1248 be restored at the end of the cue notes.
1249
1250 @lilypond[verbatim,quote]
1251 flute = \relative c'' {
1252   r2. c4 d8 c d e fis2 g2 d2
1253 }
1254 bassoon = \relative c {
1255   \clef bass
1256   R1
1257   \clef treble
1258   s1*0^\markup { \tiny "flute" }
1259   \cueDuring #"flute" #UP { R1 }
1260   \clef bass
1261   g4. b8 d2
1262 }
1263 \addQuote "flute" { \flute }
1264 \new Staff {
1265   \bassoon
1266 }
1267 @end lilypond
1268
1269 @cindex removing cues
1270 @cindex removing cue notes
1271 @cindex cue notes, removing
1272
1273 @funindex \killCues
1274 @funindex killCues
1275
1276 The @code{\killCues} command removes cue notes from a music
1277 expression, so the same music expression can be used to produce
1278 the instrument part with cues and the score.  The @code{\killCues}
1279 command removes only the notes and events that were quoted by
1280 @code{\cueDuring}.  Other markup associated with cues, such as clef
1281 changes and a label identifying the source instrument, can be
1282 tagged for selective inclusion in the score; see @ref{Using tags}.
1283
1284 @lilypond[verbatim,quote]
1285 flute = \relative c'' {
1286   r2. c4 d8 c d e fis2 g2 d2
1287 }
1288 bassoon = \relative c {
1289   \clef bass
1290   R1
1291   \tag #'part {
1292     \clef treble
1293     s1*0^\markup { \tiny "flute" }
1294   }
1295   \cueDuring #"flute" #UP { R1 }
1296   \tag #'part \clef bass
1297   g4. b8 d2
1298 }
1299 \addQuote "flute" { \flute }
1300
1301 \new Staff {
1302   \bassoon
1303 }
1304 \new StaffGroup <<
1305   \new Staff {
1306     \flute
1307   }
1308   \new Staff {
1309     \removeWithTag #'part { \killCues { \bassoon } }
1310   }
1311 >>
1312 @end lilypond
1313
1314 Alternatively, Clef changes and instrument labels can be
1315 collected into an instrument definition for repeated use, using
1316 @code{\addInstrumentDefinition} described in
1317 @ref{Instrument names}.
1318
1319 @funindex \transposedCueDuring
1320 @funindex transposedCueDuring
1321
1322 Like @code{\quoteDuring}, @code{\cueDuring} takes instrument
1323 transpositions into account.  Cue notes are produced at the
1324 pitches that would be written for the instrument receiving the cue
1325 to produce the sounding pitches of the source instrument.
1326
1327 To transpose cue notes differently, use
1328 @code{\transposedCueDuring}.  This command takes an extra argument
1329 to specify (in absolute mode) the printed pitch that you want to
1330 represent the sound of a concert middle C.  This is useful for
1331 taking cues from an instrument in a completely different register.
1332
1333 @lilypond[verbatim,quote]
1334 piccolo = \relative c''' {
1335   \clef "treble^8"
1336   R1
1337   c8 c c e g2
1338   c4 g g2
1339 }
1340 bassClarinet = \relative c' {
1341   \key d \major
1342   \transposition bes,
1343   d4 r a r
1344   \transposedCueDuring #"piccolo" #UP d { R1 }
1345   d4 r a r
1346 }
1347
1348 \addQuote "piccolo" { \piccolo }
1349
1350 <<
1351   \new Staff \piccolo
1352   \new Staff \bassClarinet
1353 >>
1354 @end lilypond
1355
1356 @cindex notes, smaller
1357 @cindex smaller notes
1358
1359 A @code{CueVoice} context may be created explicitly if notes of a
1360 smaller size are required, for example to set an alternative
1361 sequence of notes more suitable for a higher or lower voice.
1362
1363 @lilypond[verbatim,relative=2]
1364 \time 12/8
1365 \key ees \major
1366 g4 ees8 f4 g8
1367 \stemDown
1368 <<
1369   { d4. bes4 c8 }
1370   \new CueVoice
1371   { g'4. f4 ees8 }
1372 >>
1373 \stemUp
1374 d2. d2.
1375 @end lilypond
1376
1377
1378 @seealso
1379 Notation Reference:
1380 @ref{Instrument transpositions},
1381 @ref{Instrument names},
1382 @ref{Musical cues},
1383 @ref{Using tags}.
1384
1385 Snippets:
1386 @rlsr{Staff notation}.
1387
1388 Internals Reference:
1389 @rinternals{CueVoice},
1390 @rinternals{Voice}.
1391
1392
1393 @knownissues
1394
1395 Collisions can occur with rests, when using @code{\cueDuring},
1396 between @code{Voice} and @code{CueVoice} contexts.
1397