]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/notation/staff.itely
efb3ff6aad100ec1b294d1a8cd0abe0d03a6b82a
[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
278 @node Nested staff groups
279 @unnumberedsubsubsec Nested staff groups
280
281 @cindex staff, nested
282 @cindex staves, nested
283 @cindex nesting of staves
284 @cindex system start delimiters, nested
285 @cindex nested staff brackets
286 @cindex brackets, nesting of
287 @cindex braces, nesting of
288
289 Staff-group contexts can be nested to arbitrary depths.  In this
290 case, each child context creates a new bracket adjacent to the
291 bracket of its parent group.
292
293 @lilypond[verbatim,quote,relative=2]
294 \new StaffGroup <<
295   \new Staff { c2 c | c2 c }
296   \new StaffGroup <<
297     \new Staff { g2 g | g2 g }
298     \new StaffGroup \with {
299       systemStartDelimiter = #'SystemStartSquare
300     }
301     <<
302       \new Staff { e2 e | e2 e }
303       \new Staff { c2 c | c2 c }
304     >>
305   >>
306 >>
307 @end lilypond
308
309 New nested staff group contexts can be defined.  For details, see
310 @ref{Defining new contexts}.
311
312
313 @snippets
314
315 @lilypondfile[verbatim,lilyquote,texidoc,doctitle]
316 {nesting-staves.ly}
317
318
319 @seealso
320 Notation Reference:
321 @ref{Grouping staves},
322 @ref{Instrument names},
323 @ref{Defining new contexts}.
324
325 Snippets:
326 @rlsr{Staff notation}.
327
328 Internals Reference:
329 @rinternals{StaffGroup},
330 @rinternals{ChoirStaff},
331 @rinternals{SystemStartBar},
332 @rinternals{SystemStartBrace},
333 @rinternals{SystemStartBracket},
334 @rinternals{SystemStartSquare}.
335
336 @node Separating systems
337 @unnumberedsubsubsec Separating systems
338
339 @cindex system separator mark
340
341 If the number of systems per page changes from page to page it is
342 customary to separate the systems by placing a system separator mark
343 between them.  By default the system separator is blank, but can be
344 turned on with a @code{\paper} option.
345
346 @c \book is required here to display the system separator
347 @c ragged-right is required as there are two systems
348 @lilypond[verbatim,quote,ragged-right]
349 \book {
350   \score {
351     \new StaffGroup <<
352       \new Staff {
353         \relative c'' {
354           c4 c c c
355           \break
356           c4 c c c
357         }
358       }
359       \new Staff {
360         \relative c'' {
361           c4 c c c
362           \break
363           c4 c c c
364         }
365       }
366     >>
367   }
368   \paper {
369     system-separator-markup = \slashSeparator
370     % following commands are needed only to format this documentation
371     paper-width = 100\mm
372     paper-height = 100\mm
373     tagline = ##f
374   }
375 }
376 @end lilypond
377
378 @seealso
379 Notation Reference:
380 @ref{Page formatting}.
381
382 Snippets:
383 @rlsr{Staff notation}.
384
385
386 @node Modifying single staves
387 @subsection Modifying single staves
388
389 This section explains how to change specific attributes of one
390 staff: for example, modifying the number of staff lines or the
391 staff size.  Methods to start and stop staves and set ossia
392 sections are also described.
393
394 @menu
395 * Staff symbol::
396 * Ossia staves::
397 * Hiding staves::
398 @end menu
399
400
401 @node Staff symbol
402 @unnumberedsubsubsec Staff symbol
403
404 @cindex adjusting staff symbol
405 @cindex drawing staff symbol
406 @cindex staff symbol, setting of
407 @cindex staff symbol, drawing
408 @cindex stop staff lines
409 @cindex start staff lines
410 @cindex staff lines, amount of
411 @cindex staff lines, number of
412 @cindex staff line, thickness of
413 @cindex amount of staff lines
414 @cindex thickness of staff lines
415 @cindex ledger lines, setting
416 @cindex setting of ledger lines
417 @cindex spacing of ledger lines
418 @cindex number of staff lines
419
420 The lines of a staff belong to the @code{StaffSymbol} grob.
421 @code{StaffSymbol} properties can be modified to change the
422 appearance of a staff, but they must be modified before the staff
423 is created.
424
425 The number of staff lines may be changed.  The clef position and
426 the position of middle C may need to be modified to fit the new
427 staff.  For an explanation, refer to the snippet section in
428 @ref{Clef}.
429
430 @lilypond[verbatim,quote,relative=2]
431 \new Staff \with {
432   \override StaffSymbol #'line-count = #3
433 }
434 { d4 d d d }
435 @end lilypond
436
437 Staff line thickness can be modified.  The thickness of ledger
438 lines and stems are also affected, since they depend on staff line
439 thickness.
440
441 @lilypond[verbatim,quote,relative=1]
442 \new Staff \with {
443   \override StaffSymbol #'thickness = #3
444 }
445 { e4 d c b }
446 @end lilypond
447
448 Ledger line thickness can be set independently of staff line
449 thickness.  In the example the two numbers are factors multiplying
450 the staff line thickness and the staff line spacing.  The two
451 contributions are added to give the ledger line thickness.
452
453 @lilypond[verbatim,quote,relative=1]
454 \new Staff \with {
455   \override StaffSymbol #'ledger-line-thickness = #'(1 . 0.2)
456 }
457 { e4 d c b }
458 @end lilypond
459
460 The distance between staff lines can be changed.  This setting
461 affects the spacing of ledger lines as well.
462
463 @lilypond[verbatim,quote,relative=1]
464 \new Staff \with {
465   \override StaffSymbol #'staff-space = #1.5
466 }
467 { a4 b c d }
468 @end lilypond
469
470 Further details about the properties of @code{StaffSymbol} can be
471 found in @rinternals{staff-symbol-interface}.
472
473 @cindex stopping a staff
474 @cindex starting a staff
475 @cindex staff, starting
476 @cindex staff, stopping
477
478 @funindex \startStaff
479 @funindex startStaff
480 @funindex \stopStaff
481 @funindex stopStaff
482
483 Modifications to staff properties in the middle of a score can be
484 placed between @code{\stopStaff} and @code{\startStaff}:
485
486 @lilypond[verbatim,quote,relative=2]
487 c2 c
488 \stopStaff
489 \override Staff.StaffSymbol #'line-count = #2
490 \startStaff
491 b2 b
492 \stopStaff
493 \revert Staff.StaffSymbol #'line-count
494 \startStaff
495 a2 a
496 @end lilypond
497
498 @noindent
499 In general, @code{\startStaff} and @code{\stopStaff} can be used
500 to stop or start a staff in the middle of a score.
501
502 @lilypond[verbatim,quote,relative=2]
503 c4 b a2
504 \stopStaff
505 b4 c d2
506 \startStaff
507 e4 d c2
508 @end lilypond
509
510
511 @predefined
512 @code{\startStaff},
513 @code{\stopStaff}.
514 @endpredefined
515
516
517 @snippets
518
519 @lilypondfile[verbatim,lilyquote,texidoc,doctitle]
520 {making-some-staff-lines-thicker-than-the-others.ly}
521
522
523 @seealso
524 Music Glossary:
525 @rglos{line},
526 @rglos{ledger line},
527 @rglos{staff}.
528
529 Notation Reference:
530 @ref{Clef}.
531
532 Snippets:
533 @rlsr{Staff notation}.
534
535 Internals Reference:
536 @rinternals{StaffSymbol},
537 @rinternals{staff-symbol-interface}.
538
539
540 @node Ossia staves
541 @unnumberedsubsubsec Ossia staves
542
543 @cindex staff, Frenched
544 @cindex ossia
545 @cindex Frenched staves
546 @cindex staff, resizing of
547 @cindex resizing of staves
548
549 @funindex \startStaff
550 @funindex startStaff
551 @funindex \stopStaff
552 @funindex stopStaff
553
554 @notation{Ossia} staves can be set by creating a new simultaneous
555 staff in the appropriate location:
556
557 @lilypond[verbatim,quote]
558 \new Staff \relative c'' {
559   c4 b d c
560   <<
561     { c4 b d c }
562     \new Staff { e4 d f e }
563   >>
564   c4 b c2
565 }
566 @end lilypond
567
568 @noindent
569 However, the above example is not what is usually desired.  To
570 create ossia staves that are above the original staff, have no
571 time signature or clef, and have a smaller font size, tweaks must
572 be used.  The Learning Manual describes a specific technique to
573 achieve this goal, beginning with
574 @rlearning{Nesting music expressions}.
575
576 The following example uses the @code{alignAboveContext} property
577 to align the ossia staff.  This method is most appropriate when
578 only a few ossia staves are needed.
579
580 @lilypond[verbatim,quote]
581 \new Staff = main \relative c'' {
582   c4 b d c
583   <<
584     { c4 b d c }
585
586     \new Staff \with {
587       \remove "Time_signature_engraver"
588       alignAboveContext = #"main"
589       fontSize = #-3
590       \override StaffSymbol #'staff-space = #(magstep -3)
591       \override StaffSymbol #'thickness = #(magstep -3)
592       firstClef = ##f
593     }
594     { e4 d f e }
595   >>
596   c4 b c2
597 }
598 @end lilypond
599
600 If many isolated ossia staves are needed, creating an empty
601 @code{Staff} context with a specific @emph{context id} may be more
602 appropriate; the ossia staves may then be created by
603 @emph{calling} this context and using @code{\startStaff} and
604 @code{\stopStaff} at the desired locations.  The benefits of this
605 method are more apparent if the piece is longer than the following
606 example.
607
608 @lilypond[verbatim,quote,ragged-right]
609 <<
610   \new Staff = ossia \with {
611     \remove "Time_signature_engraver"
612     \override Clef #'transparent = ##t
613     fontSize = #-3
614     \override StaffSymbol #'staff-space = #(magstep -3)
615     \override StaffSymbol #'thickness = #(magstep -3)
616   }
617   { \stopStaff s1*6 }
618
619   \new Staff \relative c' {
620     c4 b c2
621     <<
622       { e4 f e2 }
623       \context Staff = ossia {
624         \startStaff e4 g8 f e2 \stopStaff
625       }
626     >>
627     g4 a g2 \break
628     c4 b c2
629     <<
630       { g4 a g2 }
631       \context Staff = ossia {
632         \startStaff g4 e8 f g2 \stopStaff
633       }
634     >>
635     e4 d c2
636   }
637 >>
638 @end lilypond
639
640
641 Using the @code{\Staff \RemoveEmptyStaves} command to create ossia
642 staves may be used as an alternative.  This method is most
643 convenient when ossia staves occur immediately following a line
644 break.  For more information about
645 @code{\Staff \RemoveEmptyStaves}, see @ref{Hiding staves}.
646
647 @lilypond[verbatim,quote,ragged-right]
648 <<
649   \new Staff = ossia \with {
650     \remove "Time_signature_engraver"
651     \override Clef #'transparent = ##t
652     fontSize = #-3
653     \override StaffSymbol #'staff-space = #(magstep -3)
654     \override StaffSymbol #'thickness = #(magstep -3)
655   } \relative c'' {
656     R1*3
657     c4 e8 d c2
658   }
659   \new Staff \relative c' {
660     c4 b c2
661     e4 f e2
662     g4 a g2 \break
663     c4 b c2
664     g4 a g2
665     e4 d c2
666   }
667 >>
668
669 \layout {
670   \context {
671     \Staff \RemoveEmptyStaves
672     \override VerticalAxisGroup #'remove-first = ##t
673   }
674 }
675 @end lilypond
676
677
678 @snippets
679
680 @lilypondfile[verbatim,lilyquote,texidoc,doctitle]
681 {vertically-aligning-ossias-and-lyrics.ly}
682
683
684 @seealso
685 Music Glossary:
686 @rglos{ossia},
687 @rglos{staff},
688 @rglos{Frenched staff}.
689
690 Learning Manual:
691 @rlearning{Nesting music expressions},
692 @rlearning{Size of objects},
693 @rlearning{Length and thickness of objects}.
694
695 Notation Reference:
696 @ref{Hiding staves}.
697
698 Snippets:
699 @rlsr{Staff notation}.
700
701 Internals Reference:
702 @rinternals{StaffSymbol}.
703
704
705 @node Hiding staves
706 @unnumberedsubsubsec Hiding staves
707
708 @cindex Frenched score
709 @cindex Frenched staff
710 @cindex staff, hiding
711 @cindex staff, empty
712 @cindex hiding of staves
713 @cindex empty staves
714
715 @funindex \RemoveEmptyStaves
716 @funindex RemoveEmptyStaffContext
717 @funindex Staff_symbol_engraver
718 @funindex \stopStaff
719 @funindex stopStaff
720
721
722 Staff lines can be hidden by removing the
723 @code{Staff_symbol_engraver} from the @code{Staff} context.  As an
724 alternative, @code{\stopStaff} may be used.
725
726 @lilypond[verbatim,quote]
727 \new Staff \with {
728   \remove "Staff_symbol_engraver"
729 }
730 \relative c''' { a8 f e16 d c b a2 }
731 @end lilypond
732
733
734 Empty staves can be hidden by setting the
735 @code{\Staff \RemoveEmptyStaves} command in the @code{\layout}
736 block.  In orchestral scores, this style is known as @q{Frenched
737 Score}.  By default, this command hides and removes all empty
738 staves in a score except for those in the first system.
739
740 @warning{A staff is considered empty when it contains only
741 multi-measure rests, rests, skips, spacer rests, or a combination of these
742 elements.}
743
744 @lilypond[verbatim,quote,ragged-right]
745 \layout {
746   \context {
747     \Staff \RemoveEmptyStaves
748   }
749 }
750
751 \relative c' <<
752   \new Staff {
753     e4 f g a \break
754     b1 \break
755     a4 b c2
756   }
757   \new Staff {
758     c,4 d e f \break
759     R1 \break
760     f4 g c,2
761   }
762 >>
763 @end lilypond
764
765 @cindex ossia
766
767 @noindent
768 @code{\Staff \RemoveEmptyStaves} can also be used to create ossia
769 sections for a staff.  For details, see @ref{Ossia staves}.
770
771 @cindex hiding ancient staves
772 @cindex hiding rhythmic staves
773
774 @funindex \RemoveEmptyStaves
775
776 The @code{\VaticanaStaff \RemoveEmptyStaves} command may be used to
777 hide empty staves in ancient music contexts.  Similarly,
778 @code{\RhythmicStaff \RemoveEmptyStaves} may be used to hide empty
779 @code{RhythmicStaff} contexts.
780
781
782 @predefined
783 @code{\Staff \RemoveEmptyStaves},
784 @code{\VaticanaStaff \RemoveEmptyStaves},
785 @code{\RhythmicStaff \RemoveEmptyStaves}.
786 @endpredefined
787
788
789 @snippets
790
791 @lilypondfile[verbatim,lilyquote,texidoc,doctitle]
792 {removing-the-first-empty-line.ly}
793
794
795 @seealso
796 Music Glossary:
797 @rglos{Frenched staff}.
798
799 Learning Manual:
800 @rlearning{Visibility and color of objects}.
801
802 Notation Reference:
803 @ref{Changing context default settings},
804 @ref{Staff symbol},
805 @ref{Ossia staves},
806 @ref{Hidden notes},
807 @ref{Invisible rests},
808 @ref{Visibility of objects}.
809
810 Snippets:
811 @rlsr{Staff notation}.
812
813 Internals Reference:
814 @rinternals{ChordNames},
815 @rinternals{FiguredBass},
816 @rinternals{Lyrics},
817 @rinternals{Staff},
818 @rinternals{VerticalAxisGroup},
819 @rinternals{Staff_symbol_engraver}.
820
821
822 @knownissues
823
824 Removing @code{Staff_symbol_engraver} also hides bar lines.  If
825 bar line visibility is forced, formatting errors may occur.  In
826 this case, use the following overrides instead of removing the
827 engraver:
828
829 @example
830 \override StaffSymbol #'stencil = ##f
831 \override NoteHead #'no-ledgers = ##t
832 @end example
833
834 For the Known issues and warnings associated with
835 @code{\Staff \RemoveEmptyStaves} see @ref{Changing context default
836 settings}.
837
838 @node Writing parts
839 @subsection Writing parts
840
841 This section explains how to insert tempo indications and
842 instrument names into a score.  Methods to quote other voices and
843 format cue notes are also described.
844
845 @menu
846 * Instrument names::
847 * Quoting other voices::
848 * Formatting cue notes::
849 @end menu
850
851 @node Instrument names
852 @unnumberedsubsubsec Instrument names
853
854 @cindex instrument names
855 @cindex instrument names, short
856
857 Instrument names can be printed on the left side of staves in the
858 @code{Staff} and @code{PianoStaff} contexts.  The value of
859 @code{instrumentName} is used for the first staff, and the value
860 of @code{shortInstrumentName} is used for all succeeding staves.
861
862 @lilypond[verbatim,quote,ragged-right,relative=1]
863 \set Staff.instrumentName = #"Violin "
864 \set Staff.shortInstrumentName = #"Vln "
865 c4.. g'16 c4.. g'16
866 \break
867 c1
868 @end lilypond
869
870 Markup mode can be used to create more complicated instrument
871 names:
872
873 @lilypond[verbatim,quote,relative=2]
874 \set Staff.instrumentName = \markup {
875   \column { "Clarinetti"
876             \line { "in B" \smaller \flat } } }
877 c4 c,16 d e f g2
878 @end lilypond
879
880 @cindex instrument names, centering
881
882 When two or more staff contexts are grouped together, the
883 instrument names and short instrument names are centered by
884 default.  To center multi-line instrument names,
885 @code{\center-column} must be used:
886
887 @lilypond[verbatim,quote,indent=1.5\cm,relative=2]
888 <<
889   \new Staff {
890     \set Staff.instrumentName = #"Flute"
891     f2 g4 f
892   }
893   \new Staff {
894     \set Staff.instrumentName = \markup \center-column {
895       Clarinet
896       \line { "in B" \smaller \flat }
897     }
898     c4 b c2
899   }
900 >>
901 @end lilypond
902
903 @funindex indent
904 @funindex short-indent
905
906 However, if the instrument names are longer, the instrument names
907 in a staff group may not be centered unless the @code{indent} and
908 @code{short-indent} settings are increased.  For details about
909 these settings, see @ref{Horizontal dimensions}.
910
911 @lilypond[verbatim,quote,ragged-right]
912 \layout {
913   indent = 3.0\cm
914   short-indent = 1.5\cm
915 }
916
917 \relative c'' <<
918   \new Staff {
919     \set Staff.instrumentName = #"Alto Flute in G"
920     \set Staff.shortInstrumentName = #"Fl."
921     f2 g4 f \break
922     g4 f g2
923   }
924   \new Staff {
925     \set Staff.instrumentName = #"Clarinet"
926     \set Staff.shortInstrumentName = #"Clar."
927     c,4 b c2 \break
928     c2 b4 c
929   }
930 >>
931 @end lilypond
932
933 @cindex instrument names, adding to other contexts
934
935 To add instrument names to other contexts (such as
936 @code{GrandStaff}, @code{ChoirStaff}, or @code{StaffGroup}),
937 @code{Instrument_name_engraver} must be added to that context.
938 For details, see @ref{Modifying context plug-ins}.
939
940 @cindex instrument names, changing
941 @cindex changing instrument names
942
943 Instrument names may be changed in the middle of a piece.
944 However, remember that @code{instrumentName} will not be
945 displayed in the middle of the piece, as it only appears
946 on the first staff:
947
948 @lilypond[verbatim,quote,ragged-right,relative=1]
949 \set Staff.instrumentName = #"First"
950 \set Staff.shortInstrumentName = #"one"
951 c1 c c c \break
952 c1 c c c \break
953 \set Staff.instrumentName = #"Second"
954 \set Staff.shortInstrumentName = #"two"
955 c1 c c c \break
956 c1 c c c \break
957 @end lilypond
958
959 @cindex instrument switch
960 @cindex switching instruments
961
962 @funindex \addInstrumentDefinition
963 @funindex addInstrumentDefinition
964 @funindex \instrumentSwitch
965 @funindex instrumentSwitch
966
967 If an instrument @emph{switch} is needed,
968 @code{\addInstrumentDefinition} may be used in combination with
969 @code{\instrumentSwitch} to create a detailed list of the
970 necessary changes for the switch.  The
971 @code{\addInstrumentDefinition} command has two arguments: an
972 identifying string, and an association list of context properties
973 and values to be used for the instrument.  It must be placed in
974 the toplevel scope.  @code{\instrumentSwitch} is used in the music
975 expression to declare the instrument switch:
976
977 @lilypond[verbatim,quote,ragged-right]
978 \addInstrumentDefinition #"contrabassoon"
979   #`((instrumentTransposition . ,(ly:make-pitch -1 0 0))
980      (shortInstrumentName . "Cbsn.")
981      (clefGlyph . "clefs.F")
982      (middleCPosition . 6)
983      (clefPosition . 2)
984      (instrumentCueName . ,(make-bold-markup "cbsn."))
985      (midiInstrument . "bassoon"))
986
987 \new Staff \with {
988   instrumentName = #"Bassoon"
989 }
990 \relative c' {
991   \clef tenor
992   \compressFullBarRests
993   c2 g'
994   R1*16
995   \instrumentSwitch "contrabassoon"
996   c,,2 g \break
997   c,1 ~ | c1
998 }
999 @end lilypond
1000
1001
1002 @seealso
1003 Notation Reference:
1004 @ref{Horizontal dimensions},
1005 @ref{Modifying context plug-ins}.
1006
1007 Snippets:
1008 @rlsr{Staff notation}.
1009
1010 Internals Reference:
1011 @rinternals{InstrumentName},
1012 @rinternals{PianoStaff},
1013 @rinternals{Staff}.
1014
1015
1016 @node Quoting other voices
1017 @unnumberedsubsubsec Quoting other voices
1018
1019 @cindex cues
1020 @cindex quoting other voices
1021 @cindex fragments
1022 @cindex cue notes
1023
1024 @funindex \addQuote
1025 @funindex addQuote
1026 @funindex \quoteDuring
1027 @funindex quoteDuring
1028 @funindex \transposition
1029 @funindex transposition
1030
1031 It is very common for one voice to double some of the music from
1032 another voice.  For example, the first and second violins may play the
1033 same notes during a passage of music.  In LilyPond this is accomplished
1034 by letting one voice @emph{quote} the other voice without having to
1035 re-enter it.
1036
1037 Before a part can be quoted, the @code{\addQuote} command must be used
1038 to initialize the quoted fragment.  This command must be used in the
1039 toplevel scope.  The first argument is an identifying string, and the
1040 second is a music expression:
1041
1042 @example
1043 flute = \relative c'' @{
1044   a4 gis g gis
1045 @}
1046 \addQuote "flute" @{ \flute @}
1047 @end example
1048
1049 The @code{\quoteDuring} command is used to indicate the point where the
1050 quotation begins.  It is followed by two arguments: the name of the
1051 quoted voice, as defined with @code{\addQuote}, and a music expression
1052 that indicates the duration of the quote, usually spacer rests or
1053 multi-measure rests.  The corresponding music (including all articulations,
1054 dynamics, markup, etc.) from the quoted voice is inserted into the music
1055 expression:
1056
1057 @lilypond[verbatim,quote]
1058 flute = \relative c'' {
1059   a4 gis g->\f gis^\markup{quoted}
1060 }
1061 \addQuote "flute" { \flute }
1062
1063 \relative c' {
1064   c4 cis \quoteDuring #"flute" { s2 }
1065 }
1066 @end lilypond
1067
1068 If the music expression used for @code{\quoteDuring} contains
1069 anything but a spacer rest or multi-measure rest, a polyphonic
1070 situation is created, which is often not desirable:
1071
1072 @lilypond[verbatim,quote]
1073 flute = \relative c'' {
1074   a4 gis g gis
1075 }
1076 \addQuote "flute" { \flute }
1077
1078 \relative c' {
1079   c4 cis \quoteDuring #"flute" { c4 b }
1080 }
1081 @end lilypond
1082
1083 Quotations recognize instrument transposition settings for both
1084 the source and target instruments if the @code{\transposition}
1085 command is used.  For details about @code{\transposition}, see
1086 @ref{Instrument transpositions}.
1087
1088 @lilypond[verbatim,quote]
1089 clarinet = \relative c'' {
1090   \transposition bes
1091   a4 gis g gis
1092 }
1093 \addQuote "clarinet" { \clarinet }
1094
1095 \relative c' {
1096   c4 cis \quoteDuring #"clarinet" { s2 }
1097 }
1098 @end lilypond
1099
1100 It is possible to tag quotations with unique names in order to
1101 process them in different ways.  For details about this procedure,
1102 see @ref{Using tags}.
1103
1104 It is also possible to adjust which objects from the original voice are quoted
1105 by changing the @code{quotedEventTypes} property.  By default, its value is
1106 @code{#'(StreamEvent)}, which means that everything is quoted.  Setting it
1107 to e.g. @code{#'(note-event rest-event tie-event)} causes lilypond to quote
1108 only notes, rests and ties, but no articulations, markup or dynamics.
1109
1110 @lilypond[verbatim,quote]
1111 clarinet = \relative c'' {
1112   a4 gis g->\f gis^\markup{quoted}
1113 }
1114 \addQuote "clarinet" { \clarinet }
1115
1116 \relative c' {
1117   \set Score.quotedEventTypes = #'(note-event rest-event tie-event)
1118   c4 cis \quoteDuring #"clarinet" { s2 }
1119 }
1120 @end lilypond
1121
1122 @snippets
1123
1124 @lilypondfile[verbatim,lilyquote,texidoc,doctitle]
1125 {quoting-another-voice-with-transposition.ly}
1126
1127 @cindex note-event
1128 @cindex articulation-event
1129 @cindex dynamic-event
1130 @cindex rest-event
1131
1132 @funindex quotedEventTypes
1133 @funindex quotedCueEventTypes
1134
1135 @lilypondfile[verbatim,lilyquote,texidoc,doctitle]
1136 {quoting-another-voice.ly}
1137
1138
1139 @seealso
1140 Notation Reference:
1141 @ref{Instrument transpositions},
1142 @ref{Using tags}.
1143
1144 Snippets:
1145 @rlsr{Staff notation}.
1146
1147 Internals Reference:
1148 @rinternals{QuoteMusic},
1149 @rinternals{Voice}.
1150
1151
1152 @knownissues
1153
1154 Only the contents of the first @code{Voice} occurring in an
1155 @code{\addQuote} command will be considered for quotation, so
1156 @code{@var{music}} cannot contain @code{\new} and
1157 @code{\context Voice} statements that would switch to a different
1158 Voice.
1159
1160 Quoting grace notes is broken and can even cause LilyPond to
1161 crash.
1162
1163 Quoting nested triplets may result in poor notation.
1164
1165 In earlier versions of LilyPond (pre 2.11), @code{addQuote} was
1166 written entirely in lower-case letters: @code{\addquote}.
1167
1168
1169 @node Formatting cue notes
1170 @unnumberedsubsubsec Formatting cue notes
1171
1172 @cindex cues
1173 @cindex cue notes
1174 @cindex cue notes, formatting
1175 @cindex fragments
1176 @cindex quoting other voices
1177 @cindex cues, formatting
1178
1179 @funindex \cueDuring
1180 @funindex cueDuring
1181 @funindex \quoteDuring
1182 @funindex quoteDuring
1183
1184 The previous section explains how to create quotations.  The
1185 @code{\cueDuring} command is a more specialized form of
1186 @code{\quoteDuring}, being particularly useful for inserting cue
1187 notes into a part.  The syntax is as follows:
1188
1189 @example
1190 \cueDuring #@var{partname} #@var{voice} @var{music}
1191 @end example
1192
1193 This command copies only the notes and rests from the
1194 corresponding measures from @code{@var{partname}} into a
1195 @code{CueVoice} context.  The @code{CueVoice} is created
1196 implicitly, and occurs simultaneously with @code{@var{music}},
1197 which creates a polyphonic situation.  The @code{@var{voice}}
1198 argument determines whether the cue notes should be notated as a
1199 first or second voice; @code{UP} corresponds to the first voice,
1200 and @code{DOWN} corresponds to the second.
1201
1202 @lilypond[verbatim,quote]
1203 oboe = \relative c'' {
1204   r2 r8 d16(\f f e g f a)
1205   g8 g16 g g2.
1206 }
1207 \addQuote "oboe" { \oboe }
1208
1209 \new Voice \relative c'' {
1210   \cueDuring #"oboe" #UP { R1 }
1211   g2 c,
1212 }
1213 @end lilypond
1214
1215 @noindent
1216 In the above example, the @code{Voice} context had to be
1217 explicitly declared, or else the entire music expression would
1218 belong to the @code{CueVoice} context.
1219
1220 It is possible to adjust which aspects of the music are quoted with
1221 @code{\cueDuring} by setting the @code{quotedCueEventTypes} property.  Its
1222 default value is @code{#'(note-event rest-event tie-event beam-event
1223 tuplet-span-event)}, which means that only notes, rest, ties, beams and
1224 tuplets are quoted, but not articulations, dynamic marks, markup etc.
1225
1226 @lilypond[verbatim,quote]
1227 oboe = \relative c'' {
1228   r2 r8 d16(\f f e g f a)
1229   g8 g16 g g2.
1230 }
1231 \addQuote "oboe" { \oboe }
1232
1233 \new Voice \relative c'' {
1234   \set Score.quotedCueEventTypes = #'(note-event rest-event tie-event
1235                                       beam-event tuplet-span-event
1236                                       dynamic-event slur-event)
1237   \cueDuring #"oboe" #UP { R1 }
1238   g2 c,
1239 }
1240 @end lilypond
1241
1242
1243
1244 The name of the cued instrument can be printed by setting the
1245 @code{instrumentCueName} property in the @code{CueVoice} context.
1246
1247 @lilypond[verbatim,quote]
1248 oboe = \relative c''' {
1249   g4 r8 e16 f e4 d
1250 }
1251 \addQuote "oboe" { \oboe }
1252
1253 \new Staff \relative c'' <<
1254   \new CueVoice \with {
1255     instrumentCueName = "ob."
1256   }
1257   \new Voice {
1258     \cueDuring #"oboe" #UP { R1 }
1259     g4. b8 d2
1260   }
1261 >>
1262 @end lilypond
1263
1264 @cindex removing cues
1265 @cindex removing cue notes
1266 @cindex cue notes, removing
1267
1268 @funindex \killCues
1269 @funindex killCues
1270 @funindex \transposedCueDuring
1271 @funindex transposedCueDuring
1272
1273 In addition to printing the name of the cued instrument, when cue
1274 notes end, the name of the original instrument should be printed,
1275 and any other changes introduced by the cued part should be
1276 undone.  This can be accomplished by using
1277 @code{\addInstrumentDefinition} and @code{\instrumentSwitch}.  For
1278 an example and explanation, see @ref{Instrument names}.
1279
1280 The @code{\killCues} command removes cue notes from a music
1281 expression.  This can be useful if cue notes need to be removed
1282 from a part but may be restored at a later time.
1283
1284 @lilypond[verbatim,quote]
1285 flute = \relative c''' {
1286   r2 cis2 r2 dis2
1287 }
1288 \addQuote "flute" { \flute }
1289
1290 \new Voice \relative c'' {
1291   \killCues {
1292     \cueDuring #"flute" #UP { R1 }
1293     g4. b8 d2
1294   }
1295 }
1296 @end lilypond
1297
1298 The @code{\transposedCueDuring} command is useful for adding
1299 instrumental cues from a completely different register.  The
1300 syntax is similar to @code{\cueDuring}, but it requires one extra
1301 argument to specify the transposition of the cued instrument.  For
1302 more information about transposition, see
1303 @ref{Instrument transpositions}.
1304
1305 @lilypond[verbatim,quote]
1306 piccolo = \relative c''' {
1307   \clef "treble^8"
1308   R1
1309   c8 c c e g2
1310   a4 g g2
1311 }
1312 \addQuote "piccolo" { \piccolo }
1313
1314 cbassoon = \relative c, {
1315   \clef "bass_8"
1316   c4 r g r
1317   \transposedCueDuring #"piccolo" #UP c,, { R1 }
1318   c4 r g r
1319 }
1320
1321 <<
1322   \new Staff = "piccolo" \piccolo
1323   \new Staff = "cbassoon" \cbassoon
1324 >>
1325 @end lilypond
1326
1327 It is possible to tag cued parts with unique names in order to
1328 process them in different ways.  For details about this procedure,
1329 see @ref{Using tags}.
1330
1331 @cindex notes, smaller
1332 @cindex smaller notes
1333
1334 A @code{CueVoice} context may be created explicitly if notes of a
1335 smaller size are required, for example to set an alternative
1336 sequence of notes more suitable for a higher or lower voice.
1337
1338 @lilypond[verbatim,relative=2]
1339 \time 12/8
1340 \key ees \major
1341 g4 ees8 f4 g8
1342 \stemDown
1343 <<
1344   { d4. bes4 c8 }
1345   \new CueVoice
1346   { g'4. f4 ees8 }
1347 >>
1348 \stemUp
1349 d2. d2.
1350 @end lilypond
1351
1352
1353 @seealso
1354 Notation Reference:
1355 @ref{Instrument transpositions},
1356 @ref{Instrument names},
1357 @ref{Using tags}.
1358
1359 Snippets:
1360 @rlsr{Staff notation}.
1361
1362 Internals Reference:
1363 @rinternals{CueVoice},
1364 @rinternals{Voice}.
1365
1366
1367 @knownissues
1368
1369 Collisions can occur with rests, when using @code{\cueDuring},
1370 between @code{Voice} and @code{CueVoice} contexts.
1371