]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/notation/staff.itely
Merge branch 'master' into translation
[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{\RemoveAllEmptyStaves} 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{\RemoveAllEmptyStaves}, 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     \RemoveAllEmptyStaves
685   } \relative {
686     R1*3
687     c''4 e8 d c2
688   }
689   \new Staff \relative {
690     c'4 b c2
691     e4 f e2
692     g4 a g2 \break
693     c4 b c2
694     g4 a g2
695     e4 d c2
696   }
697 >>
698 @end lilypond
699
700
701 @snippets
702
703 @lilypondfile[verbatim,quote,texidoc,doctitle]
704 {vertically-aligning-ossias-and-lyrics.ly}
705
706 @seealso
707 Music Glossary:
708 @rglos{ossia},
709 @rglos{staff},
710 @rglos{Frenched staff}.
711
712 Learning Manual:
713 @rlearning{Nesting music expressions},
714 @rlearning{Size of objects},
715 @rlearning{Length and thickness of objects}.
716
717 Notation Reference:
718 @ref{Hiding staves}.
719
720 Snippets:
721 @rlsr{Staff notation}.
722
723 Internals Reference:
724 @rinternals{StaffSymbol}.
725
726
727 @node Hiding staves
728 @unnumberedsubsubsec Hiding staves
729
730 @cindex Frenched score
731 @cindex Frenched staff
732 @cindex staff, hiding
733 @cindex staff, empty
734 @cindex hiding staves
735 @cindex hiding ancient staves
736 @cindex hiding rhythmic staves
737 @cindex hiding vaticana staves
738 @cindex empty staves
739
740 @funindex \RemoveEmptyStaves
741 @funindex \RemoveAllEmptyStaves
742 @funindex Staff_symbol_engraver
743 @funindex \stopStaff
744 @funindex stopStaff
745
746
747 Staff lines can be hidden by removing the
748 @code{Staff_symbol_engraver} from the @code{Staff} context.  As an
749 alternative, @code{\stopStaff} may be used.
750
751 @lilypond[verbatim,quote]
752 \new Staff \with {
753   \remove "Staff_symbol_engraver"
754 }
755 \relative { a''8 f e16 d c b a2 }
756 @end lilypond
757
758
759 Empty staves can be hidden (for a so-called @q{Frenched Score})
760 by applying the @code{\RemoveEmptyStaves} command on a context, which
761 can be done globally (in a @code{\layout} block) as well as for
762 specific staves only (in a @code{\with} block).  This command removes
763 all empty staves in a score except for those in the first system.  If
764 you want those in the first system to be hidden also, use
765 @code{\RemoveAllEmptyStaves}.  Supported contexts are @code{Staff},
766 @code{RhythmicStaff} and @code{VaticanaStaff}.
767
768 @warning{A staff is considered empty when it contains only
769 multi-measure rests, rests, skips, spacer rests, or a combination of these
770 elements.}
771
772 @lilypond[verbatim,quote,ragged-right]
773 \layout {
774   \context {
775     \Staff
776     \RemoveEmptyStaves
777   }
778 }
779
780 \relative <<
781   \new Staff {
782     e'4 f g a \break
783     b1 \break
784     a4 b c2
785   }
786   \new Staff {
787     c,4 d e f \break
788     R1 \break
789     f4 g c,2
790   }
791 >>
792 @end lilypond
793
794 @cindex ossia
795
796 @noindent
797 @code{\RemoveAllEmptyStaves} can also be used to create ossia
798 sections for a staff.  For details, see @ref{Ossia staves}.
799
800
801 @predefined
802 @code{\RemoveEmptyStaves},
803 @code{\RemoveAllEmptyStaves}.
804 @endpredefined
805
806 @seealso
807 Music Glossary:
808 @rglos{Frenched staff}.
809
810 Learning Manual:
811 @rlearning{Visibility and color of objects}.
812
813 Notation Reference:
814 @ref{Changing context default settings},
815 @ref{Staff symbol},
816 @ref{Ossia staves},
817 @ref{Hidden notes},
818 @ref{Invisible rests},
819 @ref{Visibility of objects}.
820
821 Snippets:
822 @rlsr{Staff notation}.
823
824 Internals Reference:
825 @rinternals{ChordNames},
826 @rinternals{FiguredBass},
827 @rinternals{Lyrics},
828 @rinternals{Staff},
829 @rinternals{VerticalAxisGroup},
830 @rinternals{Staff_symbol_engraver}.
831
832 @knownissues
833 Removing @code{Staff_symbol_engraver} also hides bar lines.  If
834 bar line visibility is forced, formatting errors may occur.  In
835 this case, use the following overrides instead of removing the
836 engraver:
837
838 @example
839 \omit StaffSymbol
840 \override NoteHead.no-ledgers = ##t
841 @end example
842
843 For the Known issues and warnings associated with
844 @code{\Staff \RemoveEmptyStaves} see
845 @ref{Changing context default settings}.
846
847
848 @node Writing parts
849 @subsection Writing parts
850
851 This section explains how to insert tempo indications and
852 instrument names into a score.  Methods to quote other voices and
853 format cue notes are also described.
854
855 @menu
856 * Instrument names::
857 * Quoting other voices::
858 * Formatting cue notes::
859 @end menu
860
861 @node Instrument names
862 @unnumberedsubsubsec Instrument names
863
864 @cindex instrument names
865 @cindex instrument names, short
866
867 Instrument names can be printed on the left side of staves in the
868 @code{Staff}, @code{PianoStaff}, @code{StaffGroup}, @code{GrandStaff}
869 and @code{ChoirStaff} contexts.  The value of
870 @code{instrumentName} is used for the first staff, and the value
871 of @code{shortInstrumentName} is used for all succeeding staves.
872
873 @lilypond[verbatim,quote,ragged-right]
874 \new Staff \with {
875   instrumentName = #"Violin "
876   shortInstrumentName = #"Vln. "
877 } \relative {
878   c'4.. g'16 c4.. g'16 \break | c1 |
879 }
880 @end lilypond
881
882 @cindex instrument names, complex
883
884 @code{\markup} can be used to create more complex instrument names:
885
886 @lilypond[verbatim,quote]
887 \new Staff \with {
888   instrumentName = \markup {
889     \column { "Clarinetti"
890       \line { "in B" \smaller \flat }
891     }
892   }
893 } \relative {
894   c''4 c,16 d e f g2
895 }
896 @end lilypond
897
898 @cindex instrument names, centering
899
900 When two or more staff contexts are grouped together, the instrument
901 names and short instrument names are centered by default.  To center
902 multi-line instrument names, @code{\center-column} must be used:
903
904 @lilypond[verbatim,quote,indent=1.5\cm]
905 <<
906   \new Staff \with {
907     instrumentName = #"Flute"
908   } \relative {
909     f''2 g4 f
910 }
911   \new Staff \with {
912     instrumentName = \markup {
913       \center-column { "Clarinet"
914         \line { "in B" \smaller \flat }
915       }
916     }
917   } \relative { c''4 b c2 }
918 >>
919 @end lilypond
920
921 @funindex indent
922 @funindex short-indent
923
924 However, if the instrument names are longer, the instrument names in a
925 staff group may not be centered unless the @code{indent} and
926 @code{short-indent} settings are increased.  For details about these
927 settings, see @ref{paper variables for shifts and indents,,@code{@bs{}paper} variables for shifts and indents}.
928
929 @lilypond[verbatim,quote,ragged-right]
930 <<
931   \new Staff \with {
932     instrumentName = #"Alto Flute in G"
933     shortInstrumentName = #"Flt."
934   } \relative {
935     f''2 g4 f \break
936     g4 f g2
937   }
938   \new Staff \with {
939     instrumentName = #"Clarinet"
940     shortInstrumentName = #"Clar."
941   } \relative {
942     c''4 b c2 \break
943     c2 b4 c
944   }
945 >>
946
947 \layout {
948   indent = 3.0\cm
949   short-indent = 1.5\cm
950 }
951 @end lilypond
952
953 @cindex instrument names, adding to other contexts
954
955 To add instrument names to other contexts (such as @code{ChordNames} or
956 @code{FiguredBass}), @code{Instrument_name_engraver} must be added to
957 that context.  For details, see @ref{Modifying context plug-ins}.
958
959 @cindex instrument names, changing
960 @cindex changing instrument names
961
962 The @code{shortInstrumentName} may be changed in the middle of a piece,
963 along with other settings as needed for the new instrument.
964 However, only the first instance of @code{instrumentName} will be
965 printed and subsequent changes will be ignored:
966
967 @lilypond[verbatim,quote,ragged-right]
968 prepPiccolo = <>^\markup \italic { muta in Piccolo }
969
970 setPiccolo = {
971   \set Staff.instrumentName = #"Piccolo"
972   \set Staff.shortInstrumentName = #"Picc."
973   \set Staff.midiInstrument = #"piccolo"
974   <>^\markup \bold { Piccolo }
975   \transposition c''
976 }
977
978 prepFlute = <>^\markup \italic { muta in Flauto }
979
980 setFlute = {
981   \set Staff.instrumentName = #"Flute"
982   \set Staff.shortInstrumentName = #"Flt."
983   \set Staff.midiInstrument = #"flute"
984   <>^\markup \bold { Flute }
985   \transposition c'
986 }
987
988 \new Staff \with {
989   instrumentName = #"Flute"
990   shortInstrumentName = #"Flt."
991   midiInstrument = #"flute"
992 }
993 \relative {
994   g'1 g g g \break
995   g1 g \prepPiccolo R R \break
996   \setPiccolo
997   g1 g g g \break
998   g1 g \prepFlute R R \break
999   \setFlute
1000   g1 g g g
1001 }
1002 @end lilypond
1003
1004
1005 @seealso
1006 Notation Reference:
1007 @ref{paper variables for shifts and indents,,@code{@bs{}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 quote, voices
1023 @cindex voices, quoting
1024 @cindex fragments, quoting
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 use the same notes as those from
1035 another voice.  For example, first and second violins playing the same
1036 phrase during a particular passage of the music.  This is done by
1037 letting one voice @emph{quote} the other, without having to re-enter the
1038 music all over again for the second voice.
1039
1040 The @code{\addQuote} command, used in the top level scope, defines a
1041 stream of music from which fragments can be quoted.
1042
1043 The @code{\quoteDuring} command is used to indicate the point where the
1044 quotation begins.  It is followed by two arguments: the name of the
1045 quoted voice, as defined with @code{\addQuote}, and a music expression
1046 for the duration of the quote.
1047
1048 @lilypond[verbatim,quote]
1049 fluteNotes = \relative {
1050   a'4 gis g gis | b4^"quoted" r8 ais\p a4( f)
1051 }
1052
1053 oboeNotes = \relative {
1054   c''4 cis c b \quoteDuring #"flute" { s1 }
1055 }
1056
1057 \addQuote "flute" { \fluteNotes }
1058
1059 \score {
1060   <<
1061     \new Staff \with { instrumentName = "Flute" } \fluteNotes
1062     \new Staff \with { instrumentName = "Oboe" } \oboeNotes
1063   >>
1064 }
1065 @end lilypond
1066
1067 If the music expression used in @code{\quoteDuring} contains notes
1068 instead of spacer or multimeasure rests then the quote will appear as
1069 polyphony and may produce unexpected results.
1070
1071 @lilypond[verbatim,quote]
1072 fluteNotes = \relative {
1073   a'4 gis g gis | b4^"quoted" r8 ais\p a4( f)
1074 }
1075
1076 oboeNotes = \relative {
1077   c''4 cis c b \quoteDuring #"flute" { e4 r8 ais b4 a }
1078 }
1079
1080 \addQuote "flute" { \fluteNotes }
1081
1082 \score {
1083   <<
1084     \new Staff \with { instrumentName = "Flute" } \fluteNotes
1085     \new Staff \with { instrumentName = "Oboe" } \oboeNotes
1086   >>
1087 }
1088 @end lilypond
1089
1090 If an @code{\unfoldRepeat} command in a music expression is required to
1091 be printed when using @code{\quoteDuring}, then it too must also contain
1092 its own @code{\unfoldRepeat} command;
1093
1094 @lilypond[verbatim,quote]
1095 fluteNotes = \relative {
1096   \repeat volta 2 { a'4 gis g gis }
1097 }
1098
1099 oboeNotesDW = \relative {
1100   \repeat volta 2 \quoteDuring #"incorrect" { s1 }
1101 }
1102
1103 oboeNotesW = \relative {
1104   \repeat volta 2 \quoteDuring #"correct" { s1 }
1105 }
1106
1107
1108 \addQuote "incorrect" { \fluteNotes }
1109
1110 \addQuote "correct" { \unfoldRepeats \fluteNotes }
1111
1112 \score {
1113   \unfoldRepeats
1114   <<
1115     \new Staff \with { instrumentName = "Flute" }
1116     \fluteNotes
1117     \new Staff \with { instrumentName = "Oboe (incorrect)" }
1118     \oboeNotesDW
1119     \new Staff \with { instrumentName = "Oboe (correct)" }
1120     \oboeNotesW
1121   >>
1122 }
1123 @end lilypond
1124
1125 The @code{\quoteDuring} command uses the @code{\transposition} settings
1126 of both quoted and quoting parts to produce notes for the quoting part
1127 that have the same sounding pitch as those in the quoted part.
1128
1129 @lilypond[verbatim,quote]
1130 clarinetNotes = \relative c'' {
1131   \transposition bes
1132   \key d \major
1133   b4 ais a ais | cis4^"quoted" r8 bis\p b4( f)
1134 }
1135
1136 oboeNotes = \relative {
1137   c''4 cis c b \quoteDuring #"clarinet" { s1 }
1138 }
1139
1140 \addQuote "clarinet" { \clarinetNotes }
1141
1142
1143 \score {
1144   <<
1145     \new Staff \with { instrumentName = "Clarinet" } \clarinetNotes
1146     \new Staff \with { instrumentName = "Oboe" } \oboeNotes
1147   >>
1148 }
1149 @end lilypond
1150
1151 @cindex note-event
1152 @cindex articulation-event
1153 @cindex dynamic-event
1154 @cindex rest-event
1155 @cindex slur-event
1156 @cindex crescendo-event
1157
1158 @funindex quotedEventTypes
1159 @funindex quotedCueEventTypes
1160
1161 By default quoted music will include all articulations, dynamics,
1162 markups, etc., in the quoted expression.  It is possible to choose which
1163 of these objects from the quoted music are displayed by using the
1164 @code{quotedEventTypes} context property.
1165
1166 @lilypond[verbatim,quote]
1167 fluteNotes = \relative {
1168   a'2 g2 |
1169   b4\<^"quoted" r8 ais a4\f( c->)
1170  }
1171
1172 oboeNotes = \relative {
1173   c''2. b4 |
1174   \quoteDuring #"flute" { s1 }
1175 }
1176
1177 \addQuote "flute" { \fluteNotes }
1178
1179 \score {
1180   <<
1181     \set Score.quotedEventTypes = #'(note-event articulation-event
1182                                      crescendo-event rest-event
1183                                      slur-event dynamic-event)
1184     \new Staff \with { instrumentName = "Flute" } \fluteNotes
1185     \new Staff \with { instrumentName = "Oboe" } \oboeNotes
1186   >>
1187  }
1188 @end lilypond
1189
1190 Quotes can also be tagged, see @ref{Using tags}.
1191
1192 @seealso
1193 Notation Reference:
1194 @ref{Instrument transpositions},
1195 @ref{Using tags}.
1196
1197 Installed Files:
1198 @file{scm/define-event-classes.scm}.
1199
1200 Snippets:
1201 @rlsr{Staff notation}.
1202
1203 Internals Reference:
1204 @rinternals{Music classes},
1205 @rinternals{QuoteMusic},
1206 @rinternals{Voice}.
1207
1208 @knownissues
1209 Only the contents of the first @code{Voice} occurring in an
1210 @code{\addQuote} command will be considered for quotation, so if the music
1211 expression contains @code{\new} or @code{\context Voice}
1212 statements, their contents will not be quoted.  Quoting grace notes
1213 is unsupported and may cause LilyPond to crash whereas quoting nested
1214 triplets may result in poor notation.
1215
1216
1217 @node Formatting cue notes
1218 @unnumberedsubsubsec Formatting cue notes
1219
1220 @cindex cue notes
1221 @cindex fragments
1222 @cindex cue notes, formatting
1223 @cindex formatting, cue notes
1224 @cindex voices, quoting
1225
1226
1227 @funindex \cueDuring
1228 @funindex cueDuring
1229 @funindex \cueClef
1230 @funindex cueClef
1231 @funindex \cueDuringWithClef
1232 @funindex cueDuringWithClef
1233 @funindex \quoteDuring
1234 @funindex quoteDuring
1235
1236 @cindex notes, smaller
1237 @cindex smaller notes
1238 @cindex CueVoice
1239
1240 The simplest way to format cue notes is to explicitly create a
1241 @code{CueVoice} context within the part.
1242
1243 @lilypond[verbatim]
1244 \relative {
1245   R1
1246   <<
1247     { e'2\rest r4. e8 }
1248     \new CueVoice {
1249       \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} command can also be used with an explict
1257 @code{CueVoice} context if a change of clef is required and will print
1258 an appropriately sized clef for the cue notes.  The @code{\cueClefUnset}
1259 command can then be used to switch back to the original clef, again with
1260 an appropriately sized clef.
1261
1262 @lilypond[verbatim,noragged-right]
1263 \relative {
1264   \clef "bass"
1265   R1
1266   <<
1267     { e'2\rest r4. \cueClefUnset e,8 }
1268     \new CueVoice {
1269       \cueClef "treble" \stemUp d''8^"flute" c d e fis2
1270     }
1271   >>
1272   d,,4 r a r
1273 }
1274 @end lilypond
1275
1276 The @code{\cueClef} and @code{\cueClefUnset} command can also be used
1277 without a @code{CueVoice} if required.
1278
1279 @lilypond[verbatim,noragged-right]
1280 \relative {
1281   \clef "bass"
1282   R1
1283   \cueClef "treble"
1284   d''8^"flute" c d e fis2
1285   \cueClefUnset
1286   d,,4 r a r
1287 }
1288 @end lilypond
1289
1290 For more complex cue note placement, e.g including transposition, or
1291 inserting cue notes from multiple music sources the @code{\cueDuring} or
1292 @code{\cueDuringWithClef} commands can be used.  These are more
1293 specialized form of @code{\quoteDuring}, see @ref{Quoting other voices}
1294 in the previous section.
1295
1296 The syntax is:
1297
1298 @example
1299 \cueDuring #@var{quotename} #@var{direction} #@var{music}
1300 @end example
1301
1302 and
1303
1304 @example
1305 \cueDuringWithClef #@var{quotename} #@var{direction} #@var{clef} #@var{music}
1306 @end example
1307
1308 The music from the corresponding measures of the @code{@var{quote name}}
1309 is added as a @code{CueVoice} context and occurs simultaneously with the
1310 @code{@var{music}}, which then creates a polyphonic situation.  The
1311 @code{@var{direction}} takes the argument @code{UP} or @code{DOWN}, and
1312 corresponds to the first and second voices respectively, determining how
1313 the cue notes are printed in relation to the other voice.
1314
1315 @lilypond[verbatim,quote]
1316 fluteNotes = \relative {
1317   r2. c''4 | d8 c d e fis2 | g2 d |
1318 }
1319
1320 oboeNotes = \relative c'' {
1321   R1
1322   <>^\markup \tiny { flute }
1323   \cueDuring #"flute" #UP { R1 }
1324   g2 c,
1325 }
1326
1327 \addQuote "flute" { \fluteNotes }
1328
1329 \new Staff {
1330   \oboeNotes
1331 }
1332 @end lilypond
1333
1334 @noindent
1335
1336
1337 It is possible to adjust which aspects of the music are quoted with
1338 @code{\cueDuring} by setting the @code{quotedCueEventTypes}
1339 property.  Its default value is @code{'(note-event rest-event
1340 tie-event beam-event tuplet-span-event)}, which means that only
1341 notes, rests, ties, beams and tuplets are quoted, but not
1342 articulations, dynamic marks, markup etc.
1343
1344 @warning{When a @code{Voice} starts with @code{\cueDuring}, as in the
1345 following example, the @code{Voice} context must be explicitly declared,
1346 or else the entire music expression would belong to the @code{CueVoice}
1347 context.}
1348
1349 @lilypond[verbatim,quote]
1350 oboeNotes = \relative {
1351   r2 r8 d''16(\f f e g f a)
1352   g8 g16 g g2.
1353 }
1354 \addQuote "oboe" { \oboeNotes }
1355
1356 \new Voice \relative c'' {
1357   \set Score.quotedCueEventTypes = #'(note-event rest-event tie-event
1358                                       beam-event tuplet-span-event
1359                                       dynamic-event slur-event)
1360   \cueDuring #"oboe" #UP { R1 }
1361   g2 c,
1362 }
1363 @end lilypond
1364
1365 Markup can be used to show the name of the quoted instrument.
1366 If the cue notes require a change in clef,
1367 this can be done manually but the original clef should also be
1368 restored manually at the end of the cue notes.
1369
1370 @lilypond[verbatim,quote]
1371 fluteNotes = \relative {
1372   r2. c''4 d8 c d e fis2 g2 d2
1373 }
1374
1375 bassoonNotes = \relative c {
1376   \clef bass
1377   R1
1378   \clef treble
1379   <>^\markup \tiny { flute }
1380   \cueDuring #"flute" #UP { R1 }
1381   \clef bass
1382   g4. b8 d2
1383 }
1384
1385 \addQuote "flute" { \fluteNotes }
1386
1387 \new Staff {
1388   \bassoonNotes
1389 }
1390 @end lilypond
1391
1392 Alternatively, the @code{\cueDuringWithClef} function can be used
1393 instead.  This command takes an extra argument to specify the change of
1394 clef that needs to be printed for the cue notes but will automatically
1395 print the original clef once the cue notes have finished.
1396
1397 @lilypond[verbatim,quote]
1398 fluteNotes = \relative {
1399   r2. c''4 d8 c d e fis2 g2 d2
1400 }
1401
1402 bassoonNotes = \relative c {
1403   \clef bass
1404   R1
1405   <>^\markup { \tiny "flute" }
1406   \cueDuringWithClef #"flute" #UP #"treble" { R1 }
1407   g4. b8 d2
1408 }
1409
1410 \addQuote "flute" { \fluteNotes }
1411
1412 \new Staff {
1413   \bassoonNotes
1414 }
1415 @end lilypond
1416
1417 @funindex \transposedCueDuring
1418 @funindex transposedCueDuring
1419
1420 Like @code{\quoteDuring}, @code{\cueDuring} takes instrument
1421 transpositions into account.  Cue notes are produced at the
1422 pitches that would be written for the instrument receiving the cue
1423 to produce the sounding pitches of the source instrument.
1424
1425 To transpose cue notes differently, use
1426 @code{\transposedCueDuring}.  This command takes an extra argument
1427 to specify (in absolute mode) the printed pitch that you want to
1428 represent the sound of a concert middle C.  This is useful for
1429 taking cues from an instrument in a completely different register.
1430
1431 @lilypond[verbatim,quote]
1432 piccoloNotes = \relative {
1433   \clef "treble^8"
1434   R1
1435   c'''8 c c e g2
1436   c4 g g2
1437 }
1438
1439 bassClarinetNotes = \relative c' {
1440   \key d \major
1441   \transposition bes,
1442   d4 r a r
1443   \transposedCueDuring #"piccolo" #UP d { R1 }
1444   d4 r a r
1445 }
1446
1447 \addQuote "piccolo" { \piccoloNotes }
1448
1449 <<
1450   \new Staff \piccoloNotes
1451   \new Staff \bassClarinetNotes
1452 >>
1453 @end lilypond
1454
1455 @cindex removing cue notes
1456 @cindex cue notes, removing
1457
1458 @funindex \killCues
1459 @funindex killCues
1460
1461 The @code{\killCues} command removes cue notes from a music
1462 expression, so the same music expression can be used to produce
1463 the instrument part with cues and the score.  The @code{\killCues}
1464 command removes only the notes and events that were quoted by
1465 @code{\cueDuring}.  Other markup associated with cues, such as clef
1466 changes and a label identifying the source instrument, can be
1467 tagged for selective inclusion in the score; see @ref{Using tags}.
1468
1469 @lilypond[verbatim,quote]
1470 fluteNotes = \relative {
1471   r2. c''4 d8 c d e fis2 g2 d2
1472 }
1473
1474 bassoonNotes = \relative c {
1475   \clef bass
1476   R1
1477   \tag #'part {
1478     \clef treble
1479     <>^\markup \tiny { flute }
1480   }
1481   \cueDuring #"flute" #UP { R1 }
1482   \tag #'part \clef bass
1483   g4. b8 d2
1484 }
1485
1486 \addQuote "flute" { \fluteNotes }
1487
1488 \new Staff {
1489   \bassoonNotes
1490 }
1491
1492 \new StaffGroup <<
1493   \new Staff {
1494     \fluteNotes
1495   }
1496   \new Staff {
1497     \removeWithTag #'part { \killCues { \bassoonNotes } }
1498   }
1499 >>
1500 @end lilypond
1501
1502 Alternatively, Clef changes and instrument labels can be
1503 collected into an instrument definition for repeated use, using
1504 @code{\addInstrumentDefinition} described in @ref{Instrument names}.
1505
1506 @seealso
1507 Notation Reference:
1508 @ref{Quoting other voices},
1509 @ref{Instrument transpositions},
1510 @ref{Instrument names},
1511 @ref{Clef},
1512 @ref{Musical cues},
1513 @ref{Using tags}.
1514
1515 Snippets:
1516 @rlsr{Staff notation}.
1517
1518 Internals Reference:
1519 @rinternals{CueVoice},
1520 @rinternals{Voice}.
1521
1522 @knownissues
1523 Collisions can occur with rests, when using @code{\cueDuring},
1524 between @code{Voice} and @code{CueVoice} contexts.  When using
1525 @code{\cueDuringWithClef} or @code{\transposedCueDuring} the extra
1526 argument required for each case must come after the quote and the
1527 direction.
1528