]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/notation/staff.itely
17a60cbb2416adf3cbe24ac88fa306a15b1c27db
[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.19.21"
11
12 @node Staff notation
13 @section Staff notation
14
15 @c The line width is a bit of a hack to allow space for the
16 @c  instrument names.
17 @lilypondfile[quote,ragged-right,line-width=14.5\cm,staffsize=16]{staff-headword.ly}
18
19 This section explains how to influence the appearance of staves,
20 how to print scores with more than one staff, and how to add tempo
21 indications and cue notes to staves.
22
23 @menu
24 * Displaying staves::
25 * Modifying single staves::
26 * Writing parts::
27 @end menu
28
29
30 @node Displaying staves
31 @subsection Displaying staves
32
33 This section describes the different methods of creating and
34 grouping staves.
35
36 @menu
37 * Instantiating new staves::
38 * Grouping staves::
39 * Nested staff groups::
40 * Separating systems::
41 @end menu
42
43
44 @node Instantiating new staves
45 @unnumberedsubsubsec Instantiating new staves
46
47 @cindex new staff
48 @cindex staff initiation
49 @cindex staff instantiation
50 @cindex staff, new
51 @cindex staff, single
52 @cindex staff, drum
53 @cindex staff, percussion
54 @cindex drum staff
55 @cindex percussion staff
56 @cindex Gregorian transcription staff
57 @cindex rhythmic staff
58 @cindex tabstaff
59 @cindex tablature
60
61 @funindex \drummode
62 @funindex drummode
63 @funindex DrumStaff
64 @funindex RhythmicStaff
65 @funindex TabStaff
66 @funindex MensuralStaff
67 @funindex VaticanaStaff
68 @funindex GregorianTranscriptionStaff
69
70 @notation{Staves} (singular: @notation{staff}) are created with
71 the @code{\new} or @code{\context} commands.  For details, see
72 @ref{Creating and referencing contexts}.
73
74 The basic staff context is @code{Staff}:
75
76 @lilypond[verbatim,quote]
77 \new Staff \relative { c''4 d e f }
78 @end lilypond
79
80 The @code{DrumStaff} context creates a five-line staff set up for
81 a typical drum set.  Each instrument is shown with a different
82 symbol.  The instruments are entered in drum mode following a
83 @code{\drummode} command, with each instrument specified by name.
84 For details, see @ref{Percussion staves}.
85
86 @lilypond[verbatim,quote]
87 \new DrumStaff {
88   \drummode { cymc hh ss tomh }
89 }
90 @end lilypond
91
92 @code{RhythmicStaff} creates a single-line staff that only
93 displays the rhythmic values of the input.  Real durations are
94 preserved.  For details, see @ref{Showing melody rhythms}.
95
96 @lilypond[verbatim,quote]
97 \new RhythmicStaff { c4 d e f }
98 @end lilypond
99
100 @code{TabStaff} creates a tablature with six strings in standard
101 guitar tuning.  For details, see @ref{Default tablatures}.
102
103 @lilypond[verbatim,quote]
104 \new TabStaff \relative { c''4 d e f }
105 @end lilypond
106
107 There are two staff contexts specific for the notation of ancient
108 music: @code{MensuralStaff} and @code{VaticanaStaff}.  They are
109 described in @ref{Pre-defined contexts}.
110
111 The @code{GregorianTranscriptionStaff} context creates a staff to
112 notate modern Gregorian chant.  It does not show bar lines.
113
114 @lilypond[verbatim,quote]
115 \new GregorianTranscriptionStaff \relative { c''4 d e f e d }
116 @end lilypond
117
118 New single staff contexts may be defined.  For details, see
119 @ref{Defining new contexts}.
120
121 @seealso
122 Music Glossary:
123 @rglos{staff},
124 @rglos{staves}.
125
126 Notation Reference:
127 @ref{Creating and referencing contexts},
128 @ref{Percussion staves},
129 @ref{Showing melody rhythms},
130 @ref{Default tablatures},
131 @ref{Pre-defined contexts},
132 @ref{Staff symbol},
133 @ref{Gregorian chant contexts},
134 @ref{Mensural contexts},
135 @ref{Defining new contexts}.
136
137 Snippets:
138 @rlsr{Staff notation}.
139
140 Internals Reference:
141 @rinternals{Staff},
142 @rinternals{DrumStaff},
143 @rinternals{GregorianTranscriptionStaff},
144 @rinternals{RhythmicStaff},
145 @rinternals{TabStaff},
146 @rinternals{MensuralStaff},
147 @rinternals{VaticanaStaff},
148 @rinternals{StaffSymbol}.
149
150
151 @node Grouping staves
152 @unnumberedsubsubsec Grouping staves
153
154 @cindex start of system
155 @cindex staff, multiple
156 @cindex staves, multiple
157 @cindex system start delimiters
158 @cindex bracket, vertical
159 @cindex brace, vertical
160 @cindex choir staff
161 @cindex grand staff
162 @cindex piano staff
163 @cindex staff group
164 @cindex staff, choir
165 @cindex staff, piano
166 @cindex staff, grand
167 @cindex system
168
169 Various contexts exist to group single staves together in order to
170 form multi-stave systems.  Each grouping context sets the style of
171 the system start delimiter and the behavior of bar lines.
172
173 If no context is specified, the default properties will be used:
174 the group is started with a vertical line, and the bar lines are
175 not connected.
176
177 @lilypond[verbatim,quote]
178 <<
179   \new Staff \relative { c''1 c }
180   \new Staff \relative { c''1 c }
181 >>
182 @end lilypond
183
184 In the @code{StaffGroup} context, the group is started with a
185 bracket and bar lines are drawn through all the staves.
186
187 @lilypond[verbatim,quote]
188 \new StaffGroup <<
189   \new Staff \relative { c''1 c }
190   \new Staff \relative { c''1 c }
191 >>
192 @end lilypond
193
194 In a @code{ChoirStaff}, the group starts with a bracket, but bar
195 lines are not connected.
196
197 @lilypond[verbatim,quote]
198 \new ChoirStaff <<
199   \new Staff \relative { c''1 c }
200   \new Staff \relative { c''1 c }
201 >>
202 @end lilypond
203
204 In a @code{GrandStaff}, the group begins with a brace, and bar
205 lines are connected between the staves.
206
207 @lilypond[verbatim,quote]
208 \new GrandStaff <<
209   \new Staff \relative { c''1 c }
210   \new Staff \relative { c''1 c }
211 >>
212 @end lilypond
213
214 The @code{PianoStaff} is identical to a @code{GrandStaff}, except
215 that it supports printing the instrument name directly.  For
216 details, see @ref{Instrument names}.
217
218 @lilypond[verbatim,quote]
219 \new PianoStaff <<
220   \set PianoStaff.instrumentName = #"Piano"
221   \new Staff \relative { c''1 c }
222   \new Staff \relative { \clef bass c1 c }
223 >>
224 @end lilypond
225
226 Each staff group context sets the property
227 @code{systemStartDelimiter} to one of the following values:
228 @code{SystemStartBar}, @code{SystemStartBrace}, or
229 @code{SystemStartBracket}.  A fourth delimiter,
230 @code{SystemStartSquare}, is also available, but it must be
231 explicitly specified.
232
233 New staff group contexts may be defined.  For details, see
234 @ref{Defining new contexts}.
235
236
237 @snippets
238
239 @lilypondfile[verbatim,quote,texidoc,doctitle]
240 {use-square-bracket-at-the-start-of-a-staff-group.ly}
241
242 @lilypondfile[verbatim,quote,texidoc,doctitle]
243 {display-bracket-with-only-one-staff-in-a-system.ly}
244
245 @cindex mensurstriche layout
246 @cindex renaissance music
247 @cindex transcription of mensural music
248 @cindex mensural music, transcription of
249
250 @lilypondfile[verbatim,quote,texidoc,doctitle]
251 {mensurstriche-layout-bar-lines-between-the-staves.ly}
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]
294 \new StaffGroup <<
295   \new Staff \relative { c''2 c | c2 c }
296   \new StaffGroup <<
297     \new Staff \relative { g'2 g | g2 g }
298     \new StaffGroup \with {
299       systemStartDelimiter = #'SystemStartSquare
300     }
301     <<
302       \new Staff \relative { e'2 e | e2 e }
303       \new Staff \relative { c'2 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,quote,texidoc,doctitle]
316 {nesting-staves.ly}
317
318 @seealso
319 Notation Reference:
320 @ref{Grouping staves},
321 @ref{Instrument names},
322 @ref{Defining new contexts}.
323
324 Snippets:
325 @rlsr{Staff notation}.
326
327 Internals Reference:
328 @rinternals{StaffGroup},
329 @rinternals{ChoirStaff},
330 @rinternals{SystemStartBar},
331 @rinternals{SystemStartBrace},
332 @rinternals{SystemStartBracket},
333 @rinternals{SystemStartSquare}.
334
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 {
354           c''4 c c c
355           \break
356           c4 c c c
357         }
358       }
359       \new Staff {
360         \relative {
361           c''4 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 layout}.
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 staff symbol
405 @cindex staff lines, stopping and starting
406 @cindex staff lines, modifying
407 @cindex ledger lines
408 @cindex ledger lines, internal
409 @cindex ledger lines, modifying
410
411 @funindex \startStaff
412 @funindex startStaff
413 @funindex \stopStaff
414 @funindex stopStaff
415
416 The @code{\stopStaff} and @code{\startStaff} commands can be used to
417 stop or (re)start the staff lines respectively, from being printed at
418 any point witin a score.
419
420 @lilypond[verbatim,quote]
421 \relative {
422   \stopStaff f''4 d \startStaff g, e
423   f'4 d \stopStaff g, e
424   f'4 d \startStaff g, e
425 }
426 @end lilypond
427
428 @predefined
429 @code{\startStaff},
430 @code{\stopStaff}.
431 @endpredefined
432
433 The lines of a staff belong to the @code{StaffSymbol} grob (including
434 ledger lines) and can be modified using @code{StaffSymbol} properties, but
435 these modifications must be made before the staff is (re)started.
436
437 The number of staff lines can be altered:
438
439 @lilypond[verbatim,quote]
440 \relative {
441   f''4 d \stopStaff
442   \override Staff.StaffSymbol.line-count = #2
443   \startStaff g, e |
444
445   f'4 d \stopStaff
446   \revert Staff.StaffSymbol.line-count
447   \startStaff g, e |
448 }
449 @end lilypond
450
451 The position of each staff line can also be altered.  A list of
452 numbers sets each line's position.  @code{0}@tie{}corresponds to the normal
453 center line, and the normal line positions are
454 @code{(-4@tie{}-2@tie{}0@tie{}2@tie{}4)}.  A single staff line is
455 printed for every value entered so that the number of staff lines, as
456 well as their position, can be changed with a single override.
457
458 @lilypond[verbatim,quote]
459 \relative {
460   f''4 d \stopStaff
461   \override Staff.StaffSymbol.line-positions = #'(1 3 5 -1 -3)
462   \startStaff g, e |
463   f'4 d \stopStaff
464   \override Staff.StaffSymbol.line-positions = #'(8 6.5 -6 -8 -0.5)
465   \startStaff g, e |
466 }
467 @end lilypond
468
469 To preserve typical stem directions (in the bottom half of the staff
470 stems point up, in the top half they point down), align the center
471 line (or space) of the customized staff with the position of the
472 normal center line (0).  The clef position and the position of
473 middle@tie{}C may need to be adjusted accordingly to fit the new
474 lines.  See @ref{Clef}.
475
476 Staff line thickness can be altered.  Ledger lines and note stems, by
477 default, are also affected.
478
479 @lilypond[verbatim,quote]
480 \new Staff \with {
481   \override StaffSymbol.thickness = #3
482 } \relative {
483   f''4 d g, e
484 }
485 @end lilypond
486
487 It is also possible to set ledger line thickness independently of staff
488 lines.
489
490 @lilypond[verbatim,quote]
491 \new Staff \with {
492   \override StaffSymbol.thickness = #2
493   \override StaffSymbol.ledger-line-thickness = #'(0.5 . 0.4)
494 } \relative {
495   f'''4 a, a,, f
496 }
497 @end lilypond
498
499 @noindent
500 The first value is multiplied by the staff line thickness, the second by
501 the staff space and then the two values are added together to give the
502 new thickness of the ledger line.
503
504 The vertical positions of ledger lines can be altered,
505
506 @lilypond[verbatim,quote]
507 \new Staff \with {
508   \override StaffSymbol.ledger-positions = #'(-3 -2 -1 2 5 6)
509 } \relative {
510   f'''4 a, a,, f
511 }
512 @end lilypond
513
514 Additional ledger lines can be made to appear above or below note heads
515 depending on the current position relative to other note heads that
516 also have their own ledger lines.
517
518 @lilypond[verbatim,quote]
519 \new Staff \with {
520   \override StaffSymbol.ledger-extra = #4
521 } \relative {
522   f'''4 a, d, f,
523 }
524 @end lilypond
525
526 Ledger lines can also be made to appear inside the staff where custom
527 staff lines are required.  The example shows the default position of
528 ledger lines when the explicit @code{ledger-position} is and is not set.
529 The @code{\stopStaff} is needed in the example to revert the
530 @code{\override} for the whole @code{StaffSymbol}.
531
532 @lilypond[verbatim,quote]
533 \relative d' {
534   \override Staff.StaffSymbol.line-positions = #'(-8 0 2 4)
535   d4 e f g
536   \stopStaff
537   \startStaff
538   \override Staff.StaffSymbol.ledger-positions = #'(-8 -6 (-4 -2) 0)
539   d4 e f g
540 }
541 @end lilypond
542
543 The distance between staff lines can be altered.  This affects ledger
544 line spacing as well.
545
546 @lilypond[verbatim,quote]
547 \new Staff \with {
548   \override StaffSymbol.staff-space = #1.5
549 } \relative {
550   f'''4 d, g, e,
551 }
552 @end lilypond
553
554 @snippets
555 @lilypondfile[verbatim,quote,texidoc,doctitle]
556 {making-some-staff-lines-thicker-than-the-others.ly}
557
558 @seealso
559 Music Glossary:
560 @rglos{line},
561 @rglos{ledger line},
562 @rglos{staff}.
563
564 Notation Reference:
565 @ref{Clef}.
566
567 Snippets:
568 @rlsr{Staff notation}.
569
570 Internals Reference:
571 @rinternals{StaffSymbol},
572 @rinternals{staff-symbol-interface}.
573
574
575 @node Ossia staves
576 @unnumberedsubsubsec Ossia staves
577
578 @cindex staff, Frenched
579 @cindex ossia
580 @cindex Frenched staves
581 @cindex staff, resizing of
582 @cindex resizing of staves
583
584 @funindex \startStaff
585 @funindex startStaff
586 @funindex \stopStaff
587 @funindex stopStaff
588
589 @notation{Ossia} staves can be set by creating a new simultaneous
590 staff in the appropriate location:
591
592 @lilypond[verbatim,quote]
593 \new Staff \relative {
594   c''4 b d c
595   <<
596     { c4 b d c }
597     \new Staff { e4 d f e }
598   >>
599   c4 b c2
600 }
601 @end lilypond
602
603 @noindent
604 However, the above example is not what is usually desired.  To
605 create ossia staves that are above the original staff, have no
606 time signature or clef, and have a smaller font size, tweaks must
607 be used.  The Learning Manual describes a specific technique to
608 achieve this goal, beginning with
609 @rlearning{Nesting music expressions}.
610
611 The following example uses the @code{alignAboveContext} property
612 to align the ossia staff.  This method is most appropriate when
613 only a few ossia staves are needed.
614
615 @lilypond[verbatim,quote]
616 \new Staff = "main" \relative {
617   c''4 b d c
618   <<
619     { c4 b d c }
620
621     \new Staff \with {
622       \remove "Time_signature_engraver"
623       alignAboveContext = #"main"
624       \magnifyStaff #2/3
625       firstClef = ##f
626     }
627     { e4 d f e }
628   >>
629   c4 b c2
630 }
631 @end lilypond
632
633 If many isolated ossia staves are needed, creating an empty
634 @code{Staff} context with a specific @emph{context id} may be more
635 appropriate; the ossia staves may then be created by
636 @emph{calling} this context and using @code{\startStaff} and
637 @code{\stopStaff} at the desired locations.  The benefits of this
638 method are more apparent if the piece is longer than the following
639 example.
640
641 @lilypond[verbatim,quote,ragged-right]
642 <<
643   \new Staff = "ossia" \with {
644     \remove "Time_signature_engraver"
645     \hide Clef
646     \magnifyStaff #2/3
647   }
648   { \stopStaff s1*6 }
649
650   \new Staff \relative {
651     c'4 b c2
652     <<
653       { e4 f e2 }
654       \context Staff = "ossia" {
655         \startStaff e4 g8 f e2 \stopStaff
656       }
657     >>
658     g4 a g2 \break
659     c4 b c2
660     <<
661       { g4 a g2 }
662       \context Staff = "ossia" {
663         \startStaff g4 e8 f g2 \stopStaff
664       }
665     >>
666     e4 d c2
667   }
668 >>
669 @end lilypond
670
671
672 Using the @code{\Staff \RemoveEmptyStaves} command to create ossia
673 staves may be used as an alternative.  This method is most
674 convenient when ossia staves occur immediately following a line
675 break.  For more information about
676 @code{\Staff \RemoveEmptyStaves}, see @ref{Hiding staves}.
677
678 @lilypond[verbatim,quote,ragged-right]
679 <<
680   \new Staff = "ossia" \with {
681     \remove "Time_signature_engraver"
682     \hide Clef
683     \magnifyStaff #2/3
684   } \relative {
685     R1*3
686     c''4 e8 d c2
687   }
688   \new Staff \relative {
689     c'4 b c2
690     e4 f e2
691     g4 a g2 \break
692     c4 b c2
693     g4 a g2
694     e4 d c2
695   }
696 >>
697
698 \layout {
699   \context {
700     \Staff \RemoveEmptyStaves
701     \override VerticalAxisGroup.remove-first = ##t
702   }
703 }
704 @end lilypond
705
706
707 @snippets
708
709 @lilypondfile[verbatim,quote,texidoc,doctitle]
710 {vertically-aligning-ossias-and-lyrics.ly}
711
712 @seealso
713 Music Glossary:
714 @rglos{ossia},
715 @rglos{staff},
716 @rglos{Frenched staff}.
717
718 Learning Manual:
719 @rlearning{Nesting music expressions},
720 @rlearning{Size of objects},
721 @rlearning{Length and thickness of objects}.
722
723 Notation Reference:
724 @ref{Hiding staves}.
725
726 Snippets:
727 @rlsr{Staff notation}.
728
729 Internals Reference:
730 @rinternals{StaffSymbol}.
731
732
733 @node Hiding staves
734 @unnumberedsubsubsec Hiding staves
735
736 @cindex Frenched score
737 @cindex Frenched staff
738 @cindex staff, hiding
739 @cindex staff, empty
740 @cindex hiding of staves
741 @cindex empty staves
742
743 @funindex \RemoveEmptyStaves
744 @funindex Staff_symbol_engraver
745 @funindex \stopStaff
746 @funindex stopStaff
747
748
749 Staff lines can be hidden by removing the
750 @code{Staff_symbol_engraver} from the @code{Staff} context.  As an
751 alternative, @code{\stopStaff} may be used.
752
753 @lilypond[verbatim,quote]
754 \new Staff \with {
755   \remove "Staff_symbol_engraver"
756 }
757 \relative { a''8 f e16 d c b a2 }
758 @end lilypond
759
760
761 Empty staves can be hidden by setting the
762 @code{\Staff \RemoveEmptyStaves} command in the @code{\layout}
763 block.  In orchestral scores, this style is known as @q{Frenched
764 Score}.  By default, this command hides and removes all empty
765 staves in a score except for those in the first system.
766
767 @warning{A staff is considered empty when it contains only
768 multi-measure rests, rests, skips, spacer rests, or a combination of these
769 elements.}
770
771 @lilypond[verbatim,quote,ragged-right]
772 \layout {
773   \context {
774     \Staff \RemoveEmptyStaves
775   }
776 }
777
778 \relative <<
779   \new Staff {
780     e'4 f g a \break
781     b1 \break
782     a4 b c2
783   }
784   \new Staff {
785     c,4 d e f \break
786     R1 \break
787     f4 g c,2
788   }
789 >>
790 @end lilypond
791
792 @cindex ossia
793
794 @noindent
795 @code{\Staff \RemoveEmptyStaves} can also be used to create ossia
796 sections for a staff.  For details, see @ref{Ossia staves}.
797
798 @cindex hiding ancient staves
799 @cindex hiding rhythmic staves
800
801 @funindex \RemoveEmptyStaves
802
803 The @code{\VaticanaStaff \RemoveEmptyStaves} command may be used to
804 hide empty staves in ancient music contexts.  Similarly,
805 @code{\RhythmicStaff \RemoveEmptyStaves} may be used to hide empty
806 @code{RhythmicStaff} contexts.
807
808
809 @predefined
810 @code{\Staff \RemoveEmptyStaves},
811 @code{\VaticanaStaff \RemoveEmptyStaves},
812 @code{\RhythmicStaff \RemoveEmptyStaves}.
813 @endpredefined
814
815
816 @snippets
817
818 @lilypondfile[verbatim,quote,texidoc,doctitle]
819 {removing-the-first-empty-line.ly}
820
821 @seealso
822 Music Glossary:
823 @rglos{Frenched staff}.
824
825 Learning Manual:
826 @rlearning{Visibility and color of objects}.
827
828 Notation Reference:
829 @ref{Changing context default settings},
830 @ref{Staff symbol},
831 @ref{Ossia staves},
832 @ref{Hidden notes},
833 @ref{Invisible rests},
834 @ref{Visibility of objects}.
835
836 Snippets:
837 @rlsr{Staff notation}.
838
839 Internals Reference:
840 @rinternals{ChordNames},
841 @rinternals{FiguredBass},
842 @rinternals{Lyrics},
843 @rinternals{Staff},
844 @rinternals{VerticalAxisGroup},
845 @rinternals{Staff_symbol_engraver}.
846
847 @knownissues
848 Removing @code{Staff_symbol_engraver} also hides bar lines.  If
849 bar line visibility is forced, formatting errors may occur.  In
850 this case, use the following overrides instead of removing the
851 engraver:
852
853 @example
854 \omit StaffSymbol
855 \override NoteHead.no-ledgers = ##t
856 @end example
857
858 For the Known issues and warnings associated with
859 @code{\Staff \RemoveEmptyStaves} see
860 @ref{Changing context default settings}.
861
862
863 @node Writing parts
864 @subsection Writing parts
865
866 This section explains how to insert tempo indications and
867 instrument names into a score.  Methods to quote other voices and
868 format cue notes are also described.
869
870 @menu
871 * Instrument names::
872 * Quoting other voices::
873 * Formatting cue notes::
874 @end menu
875
876 @node Instrument names
877 @unnumberedsubsubsec Instrument names
878
879 @cindex instrument names
880 @cindex instrument names, short
881
882 Instrument names can be printed on the left side of staves in the
883 @code{Staff}, @code{PianoStaff}, @code{StaffGroup}, @code{GrandStaff}
884 and @code{ChoirStaff} contexts.  The value of
885 @code{instrumentName} is used for the first staff, and the value
886 of @code{shortInstrumentName} is used for all succeeding staves.
887
888 @lilypond[verbatim,quote,ragged-right]
889 \new Staff \with {
890   instrumentName = #"Violin "
891   shortInstrumentName = #"Vln. "
892 } \relative {
893   c'4.. g'16 c4.. g'16 \break | c1 |
894 }
895 @end lilypond
896
897 @cindex instrument names, complex
898
899 @code{\markup} can be used to create more complex instrument names:
900
901 @lilypond[verbatim,quote]
902 \new Staff \with {
903   instrumentName = \markup {
904     \column { "Clarinetti"
905       \line { "in B" \smaller \flat }
906     }
907   }
908 } \relative {
909   c''4 c,16 d e f g2
910 }
911 @end lilypond
912
913 @cindex instrument names, centering
914
915 When two or more staff contexts are grouped together, the instrument
916 names and short instrument names are centered by default.  To center
917 multi-line instrument names, @code{\center-column} must be used:
918
919 @lilypond[verbatim,quote,indent=1.5\cm]
920 <<
921   \new Staff \with {
922     instrumentName = #"Flute"
923   } \relative {
924     f''2 g4 f
925 }
926   \new Staff \with {
927     instrumentName = \markup {
928       \center-column { "Clarinet"
929         \line { "in B" \smaller \flat }
930       }
931     }
932   } \relative { c''4 b c2 }
933 >>
934 @end lilypond
935
936 @funindex indent
937 @funindex short-indent
938
939 However, if the instrument names are longer, the instrument names in a
940 staff group may not be centered unless the @code{indent} and
941 @code{short-indent} settings are increased.  For details about these
942 settings, see @ref{paper variables for shifts and indents,,@code{@bs{}paper} variables for shifts and indents}.
943
944 @lilypond[verbatim,quote,ragged-right]
945 <<
946   \new Staff \with {
947     instrumentName = #"Alto Flute in G"
948     shortInstrumentName = #"Flt."
949   } \relative {
950     f''2 g4 f \break
951     g4 f g2
952   }
953   \new Staff \with {
954     instrumentName = #"Clarinet"
955     shortInstrumentName = #"Clar."
956   } \relative {
957     c''4 b c2 \break
958     c2 b4 c
959   }
960 >>
961
962 \layout {
963   indent = 3.0\cm
964   short-indent = 1.5\cm
965 }
966 @end lilypond
967
968 @cindex instrument names, adding to other contexts
969
970 To add instrument names to other contexts (such as @code{ChordNames} or
971 @code{FiguredBass}), @code{Instrument_name_engraver} must be added to
972 that context.  For details, see @ref{Modifying context plug-ins}.
973
974 @cindex instrument names, changing
975 @cindex changing instrument names
976
977 The @code{shortInstrumentName} may be changed in the middle of a piece,
978 along with other settings as needed for the new instrument.
979 However, only the first instance of @code{instrumentName} will be
980 printed and subsequent changes will be ignored:
981
982 @lilypond[verbatim,quote,ragged-right]
983 prepPiccolo = <>^\markup \italic { muta in Piccolo }
984
985 setPiccolo = {
986   \set Staff.instrumentName = #"Piccolo"
987   \set Staff.shortInstrumentName = #"Picc."
988   \set Staff.midiInstrument = #"piccolo"
989   <>^\markup \bold { Piccolo }
990   \transposition c''
991 }
992
993 prepFlute = <>^\markup \italic { muta in Flauto }
994
995 setFlute = {
996   \set Staff.instrumentName = #"Flute"
997   \set Staff.shortInstrumentName = #"Flt."
998   \set Staff.midiInstrument = #"flute"
999   <>^\markup \bold { Flute }
1000   \transposition c'
1001 }
1002
1003 \new Staff \with {
1004   instrumentName = #"Flute"
1005   shortInstrumentName = #"Flt."
1006   midiInstrument = #"flute"
1007 }
1008 \relative {
1009   g'1 g g g \break
1010   g1 g \prepPiccolo R R \break
1011   \setPiccolo
1012   g1 g g g \break
1013   g1 g \prepFlute R R \break
1014   \setFlute
1015   g1 g g g
1016 }
1017 @end lilypond
1018
1019
1020 @seealso
1021 Notation Reference:
1022 @ref{paper variables for shifts and indents,,@code{@bs{}paper} variables for shifts and indents},
1023 @ref{Modifying context plug-ins}.
1024
1025 Snippets:
1026 @rlsr{Staff notation}.
1027
1028 Internals Reference:
1029 @rinternals{InstrumentName},
1030 @rinternals{PianoStaff},
1031 @rinternals{Staff}.
1032
1033
1034 @node Quoting other voices
1035 @unnumberedsubsubsec Quoting other voices
1036
1037 @cindex quote, voices
1038 @cindex voices, quoting
1039 @cindex fragments, quoting
1040 @cindex cue notes
1041
1042 @funindex \addQuote
1043 @funindex addQuote
1044 @funindex \quoteDuring
1045 @funindex quoteDuring
1046 @funindex \transposition
1047 @funindex transposition
1048
1049 It is very common for one voice to use the same notes as those from
1050 another voice.  For example, first and second violins playing the same
1051 phrase during a particular passage of the music.  This is done by
1052 letting one voice @emph{quote} the other, without having to re-enter the
1053 music all over again for the second voice.
1054
1055 The @code{\addQuote} command, used in the top level scope, defines a
1056 stream of music from which fragments can be quoted.
1057
1058 The @code{\quoteDuring} command is used to indicate the point where the
1059 quotation begins.  It is followed by two arguments: the name of the
1060 quoted voice, as defined with @code{\addQuote}, and a music expression
1061 for the duration of the quote.
1062
1063 @lilypond[verbatim,quote]
1064 fluteNotes = \relative {
1065   a'4 gis g gis | b4^"quoted" r8 ais\p a4( f)
1066 }
1067
1068 oboeNotes = \relative {
1069   c''4 cis c b \quoteDuring #"flute" { s1 }
1070 }
1071
1072 \addQuote "flute" { \fluteNotes }
1073
1074 \score {
1075   <<
1076     \new Staff \with { instrumentName = "Flute" } \fluteNotes
1077     \new Staff \with { instrumentName = "Oboe" } \oboeNotes
1078   >>
1079 }
1080 @end lilypond
1081
1082 If the music expression used in @code{\quoteDuring} contains notes
1083 instead of spacer or multimeasure rests then the quote will appear as
1084 polyphony and may produce unexpected results.
1085
1086 @lilypond[verbatim,quote]
1087 fluteNotes = \relative {
1088   a'4 gis g gis | b4^"quoted" r8 ais\p a4( f)
1089 }
1090
1091 oboeNotes = \relative {
1092   c''4 cis c b \quoteDuring #"flute" { e4 r8 ais b4 a }
1093 }
1094
1095 \addQuote "flute" { \fluteNotes }
1096
1097 \score {
1098   <<
1099     \new Staff \with { instrumentName = "Flute" } \fluteNotes
1100     \new Staff \with { instrumentName = "Oboe" } \oboeNotes
1101   >>
1102 }
1103 @end lilypond
1104
1105 The @code{\quoteDuring} command uses the @code{\transposition} settings
1106 of both quoted and quoting parts to produce notes for the quoting part
1107 that have the same sounding pitch as those in the quoted part.
1108
1109 @lilypond[verbatim,quote]
1110 clarinetNotes = \relative c'' {
1111   \transposition bes
1112   \key d \major
1113   b4 ais a ais | cis4^"quoted" r8 bis\p b4( f)
1114 }
1115
1116 oboeNotes = \relative {
1117   c''4 cis c b \quoteDuring #"clarinet" { s1 }
1118 }
1119
1120 \addQuote "clarinet" { \clarinetNotes }
1121
1122
1123 \score {
1124   <<
1125     \new Staff \with { instrumentName = "Clarinet" } \clarinetNotes
1126     \new Staff \with { instrumentName = "Oboe" } \oboeNotes
1127   >>
1128 }
1129 @end lilypond
1130
1131 @cindex note-event
1132 @cindex articulation-event
1133 @cindex dynamic-event
1134 @cindex rest-event
1135 @cindex slur-event
1136 @cindex crescendo-event
1137
1138 @funindex quotedEventTypes
1139 @funindex quotedCueEventTypes
1140
1141 By default quoted music will include all articulations, dynamics,
1142 markups, etc., in the quoted expression.  It is possible to choose which
1143 of these objects from the quoted music are displayed by using the
1144 @code{quotedEventTypes} context property.
1145
1146 @lilypond[verbatim,quote]
1147 fluteNotes = \relative {
1148   a'2 g2 |
1149   b4\<^"quoted" r8 ais a4\f( c->)
1150  }
1151
1152 oboeNotes = \relative {
1153   c''2. b4 |
1154   \quoteDuring #"flute" { s1 }
1155 }
1156
1157 \addQuote "flute" { \fluteNotes }
1158
1159 \score {
1160   <<
1161     \set Score.quotedEventTypes = #'(note-event articulation-event
1162                                      crescendo-event rest-event
1163                                      slur-event dynamic-event)
1164     \new Staff \with { instrumentName = "Flute" } \fluteNotes
1165     \new Staff \with { instrumentName = "Oboe" } \oboeNotes
1166   >>
1167  }
1168 @end lilypond
1169
1170 Quotes can also be tagged, see @ref{Using tags}.
1171
1172 @seealso
1173 Notation Reference:
1174 @ref{Instrument transpositions},
1175 @ref{Using tags}.
1176
1177 Installed Files:
1178 @file{scm/define-event-classes.scm}.
1179
1180 Snippets:
1181 @rlsr{Staff notation}.
1182
1183 Internals Reference:
1184 @rinternals{Music classes},
1185 @rinternals{QuoteMusic},
1186 @rinternals{Voice}.
1187
1188 @knownissues
1189 Only the contents of the first @code{Voice} occurring in an
1190 @code{\addQuote} command will be considered for quotation, so if the music
1191 expression contains @code{\new} or @code{\context Voice}
1192 statements, their contents will not be quoted.  Quoting grace notes
1193 is unsupported and may cause LilyPond to crash whereas quoting nested
1194 triplets may result in poor notation.
1195
1196
1197 @node Formatting cue notes
1198 @unnumberedsubsubsec Formatting cue notes
1199
1200 @cindex cue notes
1201 @cindex fragments
1202 @cindex cue notes, formatting
1203 @cindex formatting, cue notes
1204 @cindex voices, quoting
1205
1206
1207 @funindex \cueDuring
1208 @funindex cueDuring
1209 @funindex \cueClef
1210 @funindex cueClef
1211 @funindex \cueDuringWithClef
1212 @funindex cueDuringWithClef
1213 @funindex \quoteDuring
1214 @funindex quoteDuring
1215
1216 @cindex notes, smaller
1217 @cindex smaller notes
1218 @cindex CueVoice
1219
1220 The simplest way to format cue notes is to explicitly create a
1221 @code{CueVoice} context within the part.
1222
1223 @lilypond[verbatim]
1224 \relative {
1225   R1
1226   <<
1227     { e'2\rest r4. e8 }
1228     \new CueVoice {
1229       \stemUp d'8^"flute" c d e fis2
1230     }
1231   >>
1232   d,4 r a r
1233 }
1234 @end lilypond
1235
1236 The @code{\cueClef} command can also be used with an explict
1237 @code{CueVoice} context if a change of clef is required and will print
1238 an appropriately sized clef for the cue notes.  The @code{\cueClefUnset}
1239 command can then be used to switch back to the original clef, again with
1240 an appropriately sized clef.
1241
1242 @lilypond[verbatim,noragged-right]
1243 \relative {
1244   \clef "bass"
1245   R1
1246   <<
1247     { e'2\rest r4. \cueClefUnset e,8 }
1248     \new CueVoice {
1249       \cueClef "treble" \stemUp d''8^"flute" c d e fis2
1250     }
1251   >>
1252   d,,4 r a r
1253 }
1254 @end lilypond
1255
1256 The @code{\cueClef} and @code{\cueClefUnset} command can also be used
1257 without a @code{CueVoice} if required.
1258
1259 @lilypond[verbatim,noragged-right]
1260 \relative {
1261   \clef "bass"
1262   R1
1263   \cueClef "treble"
1264   d''8^"flute" c d e fis2
1265   \cueClefUnset
1266   d,,4 r a r
1267 }
1268 @end lilypond
1269
1270 For more complex cue note placement, e.g including transposition, or
1271 inserting cue notes from multiple music sources the @code{\cueDuring} or
1272 @code{\cueDuringWithClef} commands can be used.  These are more
1273 specialized form of @code{\quoteDuring}, see @ref{Quoting other voices}
1274 in the previous section.
1275
1276 The syntax is:
1277
1278 @example
1279 \cueDuring #@var{quotename} #@var{direction} #@var{music}
1280 @end example
1281
1282 and
1283
1284 @example
1285 \cueDuringWithClef #@var{quotename} #@var{direction} #@var{clef} #@var{music}
1286 @end example
1287
1288 The music from the corresponding measures of the @code{@var{quote name}}
1289 is added as a @code{CueVoice} context and occurs simultaneously with the
1290 @code{@var{music}}, which then creates a polyphonic situation.  The
1291 @code{@var{direction}} takes the argument @code{UP} or @code{DOWN}, and
1292 corresponds to the first and second voices respectively, determining how
1293 the cue notes are printed in relation to the other voice.
1294
1295 @lilypond[verbatim,quote]
1296 fluteNotes = \relative {
1297   r2. c''4 | d8 c d e fis2 | g2 d |
1298 }
1299
1300 oboeNotes = \relative c'' {
1301   R1
1302   <>^\markup \tiny { flute }
1303   \cueDuring #"flute" #UP { R1 }
1304   g2 c,
1305 }
1306
1307 \addQuote "flute" { \fluteNotes }
1308
1309 \new Staff {
1310   \oboeNotes
1311 }
1312 @end lilypond
1313
1314 @noindent
1315
1316
1317 It is possible to adjust which aspects of the music are quoted with
1318 @code{\cueDuring} by setting the @code{quotedCueEventTypes}
1319 property.  Its default value is @code{'(note-event rest-event
1320 tie-event beam-event tuplet-span-event)}, which means that only
1321 notes, rests, ties, beams and tuplets are quoted, but not
1322 articulations, dynamic marks, markup etc.
1323
1324 @warning{When a @code{Voice} starts with @code{\cueDuring}, as in the
1325 following example, the @code{Voice} context must be explicitly declared,
1326 or else the entire music expression would belong to the @code{CueVoice}
1327 context.}
1328
1329 @lilypond[verbatim,quote]
1330 oboeNotes = \relative {
1331   r2 r8 d''16(\f f e g f a)
1332   g8 g16 g g2.
1333 }
1334 \addQuote "oboe" { \oboeNotes }
1335
1336 \new Voice \relative c'' {
1337   \set Score.quotedCueEventTypes = #'(note-event rest-event tie-event
1338                                       beam-event tuplet-span-event
1339                                       dynamic-event slur-event)
1340   \cueDuring #"oboe" #UP { R1 }
1341   g2 c,
1342 }
1343 @end lilypond
1344
1345 Markup can be used to show the name of the quoted instrument.
1346 If the cue notes require a change in clef,
1347 this can be done manually but the original clef should also be
1348 restored manually at the end of the cue notes.
1349
1350 @lilypond[verbatim,quote]
1351 fluteNotes = \relative {
1352   r2. c''4 d8 c d e fis2 g2 d2
1353 }
1354
1355 bassoonNotes = \relative c {
1356   \clef bass
1357   R1
1358   \clef treble
1359   <>^\markup \tiny { flute }
1360   \cueDuring #"flute" #UP { R1 }
1361   \clef bass
1362   g4. b8 d2
1363 }
1364
1365 \addQuote "flute" { \fluteNotes }
1366
1367 \new Staff {
1368   \bassoonNotes
1369 }
1370 @end lilypond
1371
1372 Alternatively, the @code{\cueDuringWithClef} function can be used
1373 instead.  This command takes an extra argument to specify the change of
1374 clef that needs to be printed for the cue notes but will automatically
1375 print the original clef once the cue notes have finished.
1376
1377 @lilypond[verbatim,quote]
1378 fluteNotes = \relative {
1379   r2. c''4 d8 c d e fis2 g2 d2
1380 }
1381
1382 bassoonNotes = \relative c {
1383   \clef bass
1384   R1
1385   <>^\markup { \tiny "flute" }
1386   \cueDuringWithClef #"flute" #UP #"treble" { R1 }
1387   g4. b8 d2
1388 }
1389
1390 \addQuote "flute" { \fluteNotes }
1391
1392 \new Staff {
1393   \bassoonNotes
1394 }
1395 @end lilypond
1396
1397 @funindex \transposedCueDuring
1398 @funindex transposedCueDuring
1399
1400 Like @code{\quoteDuring}, @code{\cueDuring} takes instrument
1401 transpositions into account.  Cue notes are produced at the
1402 pitches that would be written for the instrument receiving the cue
1403 to produce the sounding pitches of the source instrument.
1404
1405 To transpose cue notes differently, use
1406 @code{\transposedCueDuring}.  This command takes an extra argument
1407 to specify (in absolute mode) the printed pitch that you want to
1408 represent the sound of a concert middle C.  This is useful for
1409 taking cues from an instrument in a completely different register.
1410
1411 @lilypond[verbatim,quote]
1412 piccoloNotes = \relative {
1413   \clef "treble^8"
1414   R1
1415   c'''8 c c e g2
1416   c4 g g2
1417 }
1418
1419 bassClarinetNotes = \relative c' {
1420   \key d \major
1421   \transposition bes,
1422   d4 r a r
1423   \transposedCueDuring #"piccolo" #UP d { R1 }
1424   d4 r a r
1425 }
1426
1427 \addQuote "piccolo" { \piccoloNotes }
1428
1429 <<
1430   \new Staff \piccoloNotes
1431   \new Staff \bassClarinetNotes
1432 >>
1433 @end lilypond
1434
1435 @cindex removing cue notes
1436 @cindex cue notes, removing
1437
1438 @funindex \killCues
1439 @funindex killCues
1440
1441 The @code{\killCues} command removes cue notes from a music
1442 expression, so the same music expression can be used to produce
1443 the instrument part with cues and the score.  The @code{\killCues}
1444 command removes only the notes and events that were quoted by
1445 @code{\cueDuring}.  Other markup associated with cues, such as clef
1446 changes and a label identifying the source instrument, can be
1447 tagged for selective inclusion in the score; see @ref{Using tags}.
1448
1449 @lilypond[verbatim,quote]
1450 fluteNotes = \relative {
1451   r2. c''4 d8 c d e fis2 g2 d2
1452 }
1453
1454 bassoonNotes = \relative c {
1455   \clef bass
1456   R1
1457   \tag #'part {
1458     \clef treble
1459     <>^\markup \tiny { flute }
1460   }
1461   \cueDuring #"flute" #UP { R1 }
1462   \tag #'part \clef bass
1463   g4. b8 d2
1464 }
1465
1466 \addQuote "flute" { \fluteNotes }
1467
1468 \new Staff {
1469   \bassoonNotes
1470 }
1471
1472 \new StaffGroup <<
1473   \new Staff {
1474     \fluteNotes
1475   }
1476   \new Staff {
1477     \removeWithTag #'part { \killCues { \bassoonNotes } }
1478   }
1479 >>
1480 @end lilypond
1481
1482 Alternatively, Clef changes and instrument labels can be
1483 collected into an instrument definition for repeated use, using
1484 @code{\addInstrumentDefinition} described in @ref{Instrument names}.
1485
1486 @seealso
1487 Notation Reference:
1488 @ref{Quoting other voices},
1489 @ref{Instrument transpositions},
1490 @ref{Instrument names},
1491 @ref{Clef},
1492 @ref{Musical cues},
1493 @ref{Using tags}.
1494
1495 Snippets:
1496 @rlsr{Staff notation}.
1497
1498 Internals Reference:
1499 @rinternals{CueVoice},
1500 @rinternals{Voice}.
1501
1502 @knownissues
1503 Collisions can occur with rests, when using @code{\cueDuring},
1504 between @code{Voice} and @code{CueVoice} contexts.  When using
1505 @code{\cueDuringWithClef} or @code{\transposedCueDuring} the extra
1506 argument required for each case must come after the quote and the
1507 direction.
1508