]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/user/pitches.itely
7ab2d9289225c9f621efda6387a2e8005e4dcd01
[lilypond.git] / Documentation / user / pitches.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.  See TRANSLATION for details.
7 @end ignore
8
9
10 @node Pitches
11 @section Pitches
12
13 @lilypondfile[quote,ragged-right,line-width=16\cm,staffsize=16]
14 {pitches-headword.ly}
15
16 This section discusses how to specify the pitch of notes.  There
17 are three steps to this process: input, modification, and output.
18
19 @menu
20 * Writing pitches::             
21 * Changing multiple pitches::   
22 * Displaying pitches::          
23 * Note heads::                  
24 @end menu
25
26
27 @node Writing pitches
28 @subsection Writing pitches
29
30 This section discusses how to input pitches.  There are two
31 different ways to place notes in octaves: absolute and relative
32 mode.  In most cases, relative mode will be more convenient.
33
34 @menu
35 * Absolute octave entry::       
36 * Relative octave entry::       
37 * Accidentals::                 
38 * Note names in other languages::  
39 @end menu
40
41
42 @node Absolute octave entry
43 @subsubsection Absolute octave entry
44
45 @cindex pitch names
46 @cindex pitches
47 @cindex absolute
48 @cindex absolute octave specification
49
50 A pitch name is specified using lowercase letters@tie{}@code{a}
51 through@tie{}@code{g}.  The note names @code{c} to @code{b} are
52 engraved in the octave below middle C.
53
54 @c NOTE: don't use c' here.
55 @lilypond[verbatim,quote,ragged-right,fragment]
56 \clef bass
57 c d e f
58 g a b c
59 d e f g
60 @end lilypond
61
62 @funindex '
63 @funindex ,
64
65 Other octaves may be specified with a single quote@tie{}(@code{'})
66 or comma@tie{}(@code{,}) character.  Each@tie{}@code{'} raises the
67 pitch by one octave; each@tie{}@code{,} lowers the pitch by an
68 octave.
69
70 @lilypond[verbatim,quote,ragged-right,fragment]
71 \clef treble
72 c' c'' e' g
73 d'' d' d c
74 \clef bass
75 c, c,, e, g
76 d,, d, d c
77 @end lilypond
78
79 @seealso
80
81 Music Glossary: @rglos{Pitch names}.
82
83 Snippets: @lsrdir{Pitches,Pitches}.
84
85
86 @node Relative octave entry
87 @subsubsection Relative octave entry
88
89 @cindex relative
90 @cindex relative octave specification
91 @funindex \relative
92
93 When octaves are specified in absolute mode it is easy to
94 accidentally put a pitch in the wrong octave.  Relative octave
95 mode reduces these errors since most of the time it is not
96 necessary to indicate any octaves at all.  Furthermore, in
97 absolute mode a single mistake may be difficult to spot, while in
98 relative mode a single error puts the rest of the piece off by one
99 octave.
100
101 @example
102 \relative @var{startpitch} @var{musicexpr}
103 @end example
104
105 In relative mode, each note is assumed to be as close to the
106 previous note as possible.  This means that the octave of pitches
107 in @var{musicexpr} is calculated as follows:
108
109 @itemize
110 @item
111 If no octave changing mark is used on a pitch, its octave is calculated
112 so that the interval with the previous note is less than a fifth.  This
113 interval is determined without considering accidentals.
114
115 @item
116 An octave changing mark@tie{}@code{'} or@tie{}@code{,} can be added to
117 respectively raise or lower a pitch by an extra octave, relative to
118 the pitch calculated without an octave mark.
119
120 @item
121 Multiple octave changing marks can be used.  For example, @code{''}@tie{}and
122 @code{,,}@tie{} will alter the pitch by two octaves.
123
124 @item
125 The pitch of the first note is relative to
126 @code{@var{startpitch}}.  @var{startpitch} is specified in
127 absolute octave mode, and it is recommended that it be a octave of
128 @code{c}.
129
130 @end itemize
131
132 Here is the relative mode shown in action:
133
134 @lilypond[verbatim,quote,ragged-right]
135 \relative c {
136   \clef bass
137   c d e f
138   g a b c
139   d e f g
140 }
141 @end lilypond
142
143 Octave changing marks are used for intervals greater than a
144 fourth:
145
146 @lilypond[verbatim,quote,ragged-right]
147 \relative c'' {
148   c g c f,
149   c' a, e'' c
150 }
151 @end lilypond
152
153 A note sequence without a single octave mark can nevertheless span
154 large intervals:
155
156 @lilypond[verbatim,quote,ragged-right]
157 \relative c {
158   c f b e
159   a d g c
160 }
161 @end lilypond
162
163 If the preceding item is a chord, the first note of the chord is
164 used as the reference point for the octave placement of a
165 following note or chord.  Inside chords, the next note is always
166 relative to the preceding one.
167
168 @lilypond[verbatim,quote,ragged-right]
169 \relative c' {
170   c
171   <c e g>
172   % the C is now an octave higher
173   <c' e g'>
174   % the C returns to the original pitch
175   <c, e, g''>
176 }
177 @end lilypond
178
179 As explained above, the octave of pitches is calculated only with
180 the note names, regardless of any alterations.  Therefore, an
181 E-double-sharp following a B will be placed higher, while an
182 F-double-flat will be placed lower.  In other words, a
183 double-augmented fourth is considered a smaller interval than a
184 double-diminished fifth, regardless of the number of semitones
185 that each interval contains.
186
187 @lilypond[verbatim,quote,ragged-right]
188 \relative c'' {
189   c2 fis
190   c2 ges
191   b2 eisis
192   b2 feses
193 }
194 @end lilypond
195
196
197 @seealso
198
199 Music Glossary: @rglos{fifth}, @rglos{interval}, @rglos{Pitch names}.
200
201 Notation Reference: @ref{Octave checks}.
202
203 Snippets: @lsrdir{Pitches,Pitches}.
204
205
206 @funindex \transpose
207 @funindex \chordmode
208 @funindex \relative
209
210 @refbugs
211
212 The relative conversion will not affect @code{\transpose},
213 @code{\chordmode} or @code{\relative} sections in its argument.
214 To use relative mode within transposed music, an additional
215 @code{\relative} must be placed inside @code{\transpose}.
216
217 @c NOTE: DEPRECATED
218 If no @var{startpitch} is specified for @code{\relative},
219 then@tie{}@code{c'} is assumed.  However, this is a deprecated
220 option and may disappear in future versions, so its use is
221 discouraged.
222
223
224
225 @node Accidentals
226 @subsubsection Accidentals
227
228 @cindex accidental
229 @cindex key signature
230 @cindex clef
231
232 @warning{New users are sometimes confused about accidentals and
233 key signatures.  In LilyPond, note names are the raw input; key
234 signatures and clefs determine how this raw input is displayed.
235 An unaltered note like@tie{}@code{c} means @q{C natural},
236 regardless of the key signature or clef.  For more information,
237 see @rlearning{Accidentals and key signatures}.}
238
239 @cindex note names, Dutch
240 @cindex note names, default
241 @cindex sharp
242 @cindex flat
243 @cindex double sharp
244 @cindex sharp, double
245 @cindex double flat
246 @cindex flat, double
247
248 A @notation{sharp} pitch is made by adding @code{is} to the note name,
249 and a @notation{flat} pitch by adding @code{es}.  As you might expect,
250 a @notation{double sharp} or @notation{double flat} is made by adding
251 @code{isis} or @code{eses}.  This syntax is derived from Dutch note
252 naming conventions.  To use other names for accidentals, see
253 @ref{Note names in other languages}.
254
255 @lilypond[verbatim,quote,ragged-right,fragment,relative=2]
256 ais1 aes aisis aeses
257 @end lilypond
258
259 A natural will cancel the effect of an accidental or key
260 signature.  However, naturals are not encoded into the note name
261 syntax with a suffix; a natural pitch is shown as a simple note
262 name:
263
264 @lilypond[verbatim,quote,ragged-right,fragment,relative=2]
265 a4 aes a2
266 @end lilypond
267
268 @cindex quarter tones
269 @cindex semi-flats, semi-sharps
270
271 Quarter tones may be added; the following is a series of Cs with
272 increasing pitches
273
274 @lilypond[verbatim,quote,ragged-right,fragment,relative=2]
275 ceseh1 ces ceh c cih cis cisih
276 @end lilypond
277
278
279
280 @cindex accidental, reminder
281 @cindex accidental, cautionary
282 @cindex accidental, parenthesized
283 @cindex reminder accidental
284 @funindex ?
285 @cindex cautionary accidental
286 @cindex parenthesized accidental
287 @funindex !
288
289 Normally accidentals are printed automatically, but you may also
290 print them manually.  A reminder accidental can be forced by
291 adding an exclamation mark@tie{}@code{!} after the pitch.  A
292 cautionary accidental (i.e., an accidental within parentheses) can
293 be obtained by adding the question mark@tie{}@code{?} after the
294 pitch.  These extra accidentals can also be used to produce
295 natural signs.
296
297 @lilypond[verbatim,quote,ragged-right,fragment,relative=2]
298 cis cis cis! cis? c c c! c?
299 @end lilypond
300
301 Accidentals on tied notes are only printed at the beginning of a
302 new system:
303
304 @lilypond[verbatim,quote,ragged-right,fragment,relative=2]
305 cis1 ~ cis ~
306 \break
307 cis
308 @end lilypond
309
310
311 @commonprop
312
313 @lilypondfile[verbatim,lilyquote,ragged-right,texidoc]
314 {preventing-extra-naturals-from-being-automatically-added.ly}
315
316 @seealso
317
318 Music Glossary: @rglos{sharp}, @rglos{flat}, @rglos{double sharp},
319 @rglos{double flat}, @rglos{Pitch names}.
320 @c FIXME: add @rglos{quarter-tone}
321
322 Learning Manual: @rlearning{Accidentals and key signatures}.
323
324 Notation Reference: @ref{Automatic accidentals},
325 @ref{Musica ficta accidentals},
326 @ref{Note names in other languages}.
327
328 Snippets: @lsrdir{Pitches,Pitches}.
329
330
331 @refbugs
332
333 There are no generally accepted standards for denoting
334 quarter-tone accidentals, so LilyPond's symbol does not conform to
335 any standard.
336
337
338
339 @node Note names in other languages
340 @subsubsection Note names in other languages
341
342 There are predefined sets of note names for various other
343 languages.  To use them, include the language-specific init file.
344 For example, to use English notes names, add @code{\include
345 "english.ly"} to the top of the input file.  The available
346 language files and the note names they define are:
347
348 @cindex note names, other languages
349 @cindex pitch names, other languages
350
351 @smallexample
352 @multitable {nederlands.ly} {do re mi fa sol la sib si} {-iss/-is} {-ess/-es} {-ss/-x/-sharpsharp} {-essess/-eses}
353 @headitem Language
354   @tab Note names
355   @tab sharp @tab flat @tab double sharp @tab double flat
356 @item nederlands.ly
357   @tab c d e f g a bes b
358   @tab -is @tab -es @tab -isis @tab -eses
359 @item english.ly
360   @tab c d e f g a bf b
361   @tab -s/-sharp @tab -f/-flat @tab -ss/-x/-sharpsharp
362     @tab -ff/-flatflat
363 @item deutsch.ly
364   @tab c d e f g a b h
365   @tab -is @tab -es @tab -isis @tab -eses
366 @item norsk.ly
367   @tab c d e f g a b h
368   @tab -iss/-is @tab -ess/-es @tab -ississ/-isis
369     @tab -essess/-eses
370 @item svenska.ly
371   @tab c d e f g a b h
372   @tab -iss @tab -ess @tab -ississ @tab -essess
373 @item suomi.ly
374   @tab c d e f g a b h
375   @tab -is @tab -es @tab -isis @tab -eses
376 @item italiano.ly
377   @tab do re mi fa sol la sib si
378   @tab -d @tab -b @tab -dd @tab -bb
379 @item catalan.ly
380   @tab do re mi fa sol la sib si
381   @tab -d/-s @tab -b @tab -dd/-ss @tab -bb
382 @item espanol.ly
383   @tab do re mi fa sol la sib si
384   @tab -s @tab -b @tab -ss @tab -bb
385 @item portugues.ly
386   @tab do re mi fa sol la sib si
387   @tab -s @tab -b @tab -ss @tab -bb
388 @item vlaams.ly
389   @tab do re mi fa sol la sib si
390   @tab -k @tab -b @tab -kk @tab -bb
391 @end multitable
392 @end smallexample
393
394 In Dutch, @code{aes} is contracted to @code{as}, but both forms
395 are accepted in LilyPond.  Similarly, both @code{es} and
396 @code{ees} are accepted.  This also applies to
397 @code{aeses}@tie{}/@tie{}@code{ases} and
398 @code{eeses}@tie{}/@tie{}@code{eses}.  Sometimes only these
399 contracted names are defined in the corresponding language files.
400
401 @lilypond[verbatim,quote,ragged-right,fragment,relative=2]
402 a2 as e es a ases e eses
403 @end lilypond
404
405
406 Some music uses microtones whose alterations are fractions of a
407 @q{normal} sharp or flat.  The note names for quarter-tones
408 defined in the various language files are listed in the following
409 table.  Here the prefixes @notation{semi-} and @notation{sesqui-}
410 mean @q{half} and @q{one and a half}, respectively.  For the other
411 languages, no special names have been defined yet.
412
413 @smallexample
414 @multitable {nederlands.ly} {do re mi fa sol la sib si} {-iss/-is} {-ess/-es} {-ississ/-isis} {-ississ/-isis}
415 @headitem Language
416   @tab Note names
417   @tab semi-sharp @tab semi-flat @tab sesqui-sharp @tab sesqui-flat
418
419 @item nederlands.ly
420   @tab c d e f g a bes b
421   @tab -ih @tab -eh @tab -isih @tab -eseh
422 @item english.ly
423   @tab c d e f g a bf b
424   @tab -qs @tab -qf @tab -tqs @tab -tqf
425 @item deutsch.ly
426   @tab c d e f g a b h
427   @tab -ih @tab -eh @tab -isih @tab -eseh
428 @item italiano.ly
429   @tab do re mi fa sol la sib si
430   @tab -sd @tab -sb @tab -dsd @tab -bsb
431 @item portugues.ly
432   @tab do re mi fa sol la sib si
433   @tab -sqt @tab -bqt @tab -stqt @tab -btqt
434 @end multitable
435 @end smallexample
436
437
438 @seealso
439
440 Music Glossary: @rglos{Pitch names}.
441
442 Snippets: @lsrdir{Pitches,Pitches}.
443
444
445 @node Changing multiple pitches
446 @subsection Changing multiple pitches
447
448 This section discusses how to modify pitches.
449
450 @menu
451 * Octave checks::               
452 * Transpose::                   
453 @end menu
454
455 @node Octave checks
456 @subsubsection Octave checks
457
458 @cindex octave correction
459 @cindex octave check
460 @funindex =
461 @funindex \octave
462
463 In relative mode, it is easy to forget an octave changing mark.
464 Octave checks make such errors easier to find by displaying a
465 warning and correcting the octave if a note is found in an
466 unexpected octave.
467
468 To check the octave of a specific note, specify the absolute
469 octave after the @code{=}@tie{}symbol.  This example will generate
470 a warning (and change the pitch) because the second note is the
471 absolute octave @code{d''} instead of @code{d'} as indicated by
472 the octave correction.
473
474 @lilypond[verbatim,quote,ragged-right,fragment]
475 \relative c'' {
476   c2 d='4 d
477   e2 f
478 }
479 @end lilypond
480
481 The octave of notes may also be checked with the
482 @code{\octave}@tie{}@var{controlpitch} command.  @var{controlpitch} is
483 specified in absolute mode.  This checks that the interval between the
484 previous note and the @var{controlpitch} is within a fourth (i.e. the
485 normal calculation of relative mode).  If this check fails, a warning
486 is printed, but the previous note is not changed.  Future notes are
487 relative to the @var{controlpitch}.
488
489 @lilypond[verbatim,quote,ragged-right,fragment]
490 \relative c'' {
491   c2 d
492   \octave c'
493   e2 f
494 }
495 @end lilypond
496
497 Compare the two bars below.  The first and third @code{\octave}
498 check fail, but the second one does not fail.
499
500 @lilypond[verbatim,quote,ragged-right,fragment]
501 \relative c'' {
502   c4 f g f
503
504   c4
505   \octave c'
506   f
507   \octave c'
508   g
509   \octave c'
510   f
511 }
512 @end lilypond
513
514
515 @seealso
516
517 Snippets: @lsrdir{Pitches,Pitches}.
518
519
520 @node Transpose
521 @subsubsection Transpose
522
523 @cindex transpose
524 @cindex transposition
525 @cindex transposition of pitches
526 @funindex \transpose
527
528 A music expression can be transposed with @code{\transpose}.  The
529 syntax is
530
531 @example
532 \transpose @var{frompitch} @var{topitch} @var{musicexpr}
533 @end example
534
535 @noindent
536 This means that @var{musicexpr} is transposed by the interval
537 between the pitches @var{frompitch} and @var{topitch}: any note
538 with pitch @var{frompitch} is changed to @var{topitch} and any
539 other note is transposed by the same interval.  Both pitches are
540 entered in absolute mode.
541
542 Consider a piece written in the key of D-major.  It can be
543 transposed up to E-major; note that the key signature is
544 automatically transposed as well.
545
546 @lilypond[verbatim,quote,ragged-right]
547 \transpose d e {
548   \relative c' {
549     \key d \major
550     d4 fis a d
551   }
552 }
553 @end lilypond
554
555 If a part written in C (normal concert pitch) is to be played on
556 the A clarinet (for which an A is notated as a C and thus sounds a
557 minor third lower than notated), the appropriate part will be
558 produced with:
559
560 @lilypond[verbatim,quote,ragged-right]
561 \transpose a c' {
562   \relative c' {
563     \key c \major
564     c4 d e g
565   }
566 }
567 @end lilypond
568
569 @noindent
570 Note that we specify @code{\key c \major} explicitly.  If we do
571 not specify a key signature, the notes will be transposed but no
572 key signature will be printed.
573
574 @code{\transpose} distinguishes between enharmonic pitches: both
575 @code{\transpose c cis} or @code{\transpose c des} will transpose
576 up a semitone.  The first version will print sharps and the notes
577 will remain on the same scale step, the second version will print
578 flats on the scale step above.
579
580 @lilypond[verbatim,quote,ragged-right]
581 mus = \relative c' { c d e f }
582 \new Staff {
583   \transpose c cis { \mus }
584   \transpose c des { \mus }
585 }
586 @end lilypond
587
588 @cindex transposing instruments
589
590 @code{\transpose} may also be used in a different way, to input
591 written notes for a transposing instrument.  The previous examples
592 show how to enter pitches in C (or @notation{concert pitch}) and
593 typeset them for a transposing instrument, but the opposite is
594 also possible if you for example have a set of instrumental parts
595 and want to print a conductor's score.  For example, when entering
596 music for a B-flat trumpet that begins on a notated E (concert D),
597 one would write:
598
599 @example
600 musicInBflat = @{ e4 @dots{} @}
601 \transpose c bes, \musicInBflat
602 @end example
603
604 @noindent
605 To print this music in F (e.g., rearranging to a French horn) you
606 could wrap the existing music with another @code{\transpose}:
607
608 @example
609 musicInBflat = @{ e4 @dots{} @}
610 \transpose f c' @{ \transpose c bes, \musicInBflat @}
611 @end example
612
613 @noindent
614 For more information about transposing instruments,
615 see @ref{Instrument transpositions}.
616
617
618 @commonprop
619
620 @lilypondfile[verbatim,lilyquote,ragged-right,texidoc]
621 {transposing-pitches-with-minimum-accidentals-smart-transpose.ly}
622
623
624 @seealso
625
626 Notation Reference: @ref{Instrument transpositions}.
627
628 Snippets: @lsrdir{Pitches,Pitches}.
629
630 Internals Reference: @internalsref{TransposedMusic}.
631
632 @funindex \transpose
633 @funindex \chordmode
634 @funindex \relative
635
636 @refbugs
637
638
639 The relative conversion will not affect @code{\transpose},
640 @code{\chordmode} or @code{\relative} sections in its argument.
641 To use relative mode within transposed music, an additional
642 @code{\relative} must be placed inside @code{\transpose}.
643
644
645 @node Displaying pitches
646 @subsection Displaying pitches
647
648 This section discusses how to alter the output of pitches.
649
650 @menu
651 * Clef::                        
652 * Key signature::               
653 * Ottava brackets::             
654 * Instrument transpositions::   
655 * Automatic accidentals::       
656 * Ambitus::                     
657 @end menu
658
659
660 @node Clef
661 @subsubsection Clef
662
663 @funindex \clef
664 @cindex G clef
665 @cindex C clef
666 @cindex F clef
667 @cindex treble clef
668 @cindex violin clef
669 @cindex alto clef
670 @cindex tenor clef
671 @cindex bass clef
672 @cindex french clef
673 @cindex soprano clef
674 @cindex mezzosoprano clef
675 @cindex baritone clef
676 @cindex varbaritone clef
677 @cindex subbass clef
678 @cindex clef
679 @cindex ancient clef
680 @cindex clef, ancient
681 @cindex clef, G
682 @cindex clef, C
683 @cindex clef, F
684 @cindex clef, treble
685 @cindex clef, violin 
686 @cindex clef, alto 
687 @cindex clef, tenor
688 @cindex clef, bass 
689 @cindex clef, french 
690 @cindex clef, soprano 
691 @cindex clef, mezzosoprano 
692 @cindex clef, baritone 
693 @cindex clef, varbaritone 
694 @cindex subbass clef, subbass 
695
696 The clef is set with the @code{\clef} @var{clefname} command.
697 Middle C is shown in every example.
698
699 @lilypond[verbatim,quote,ragged-right,fragment,relative=1]
700 \clef treble
701 c2 c
702 \clef alto
703 c2 c
704 \clef tenor
705 c2 c
706 \clef bass
707 c2 c
708 @end lilypond
709
710 Other clefs include:
711
712 @lilypond[verbatim,quote,ragged-right,fragment,relative=1]
713 \clef french
714 c2 c
715 \clef soprano
716 c2 c
717 \clef mezzosoprano
718 c2 c
719 \clef baritone
720 c2 c
721
722 \break
723
724 \clef varbaritone
725 c2 c
726 \clef subbass
727 c2 c
728 \clef percussion
729 c2 c
730 \clef tab
731 c2 c
732 @end lilypond
733
734 Further supported clefs are described under @ref{Ancient clefs}.
735
736 @cindex transposing clefs
737 @cindex clef, transposing
738 @cindex octave transposition
739
740 By adding @code{_8} or @code{^8} to the clef name, the clef is
741 transposed one octave down or up, respectively, and @code{_15} and
742 @code{^15} transposes by two octaves.  The argument @var{clefname}
743 must be enclosed in quotes when it contains underscores or digits.
744
745 @cindex choral tenor clef
746
747 @lilypond[verbatim,quote,ragged-right,fragment,relative=1]
748 \clef "treble_8"
749 c2 c
750 \clef "bass^15"
751 c2 c
752 @end lilypond
753
754
755 @commonprop
756
757 @lilypondfile[verbatim,lilyquote,ragged-right,texidoc]
758 {clefs-commonly-tweaked-properties.ly}
759
760
761 @seealso
762
763 Notation Reference: @ref{Ancient clefs}.
764
765 Snippets: @lsrdir{Pitches,Pitches}.
766
767 Internals Reference: @internalsref{Clef}.
768
769
770 @node Key signature
771 @subsubsection Key signature
772
773 @cindex key signature
774 @funindex \key
775
776 @warning{New users are sometimes confused about accidentals and
777 key signatures.  In LilyPond, note names are the raw input; key
778 signatures and clefs determine how this raw input is displayed.
779 An unaltered note like@tie{}@code{c} means @q{C natural},
780 regardless of the key signature or clef.  For more information,
781 see @rlearning{Accidentals and key signatures}.}
782
783 The key signature indicates the tonality in which a piece is
784 played.  It is denoted by a set of alterations (flats or sharps)
785 at the start of the staff.  Setting or changing the key signature
786 is done with the @code{\key} command:
787
788 @example
789 \key @var{pitch} @var{mode}
790 @end example
791
792 @funindex \major
793 @funindex \minor
794 @funindex \ionian
795 @funindex \locrian
796 @funindex \aeolian
797 @funindex \mixolydian
798 @funindex \lydian
799 @funindex \phrygian
800 @funindex \dorian
801 @cindex church modes
802 @cindex modes
803
804 Here, @var{mode} should be @code{\major} or @code{\minor} to get a
805 key signature of @var{pitch}-major or @var{pitch}-minor,
806 respectively.  You may also use the standard mode names, also
807 called @q{church modes}: @code{\ionian}, @code{\dorian},
808 @code{\phrygian}, @code{\lydian}, @code{\mixolydian},
809 @code{\aeolian}, and @code{\locrian}.
810
811 @lilypond[verbatim,quote,ragged-right,fragment,relative=2]
812 \key g \major
813 fis1
814 f
815 fis
816 @end lilypond
817
818
819 @commonprop
820
821 @lilypondfile[verbatim,lilyquote,ragged-right,texidoc]
822 {preventing-natural-signs-from-being-printed-when-the-key-signature-changes.ly}
823
824 @lilypondfile[verbatim,lilyquote,ragged-right,texidoc]
825 {non-traditional-key-signatures.ly}
826
827
828 @seealso
829
830 Music Glossary: @rglos{church mode}, @rglos{scordatura}.
831
832 Learning Manual: @rlearning{Accidentals and key signatures}.
833
834 Snippets: @lsrdir{Pitches,Pitches}.
835
836 Internals Reference: @internalsref{KeyCancellation},
837 @internalsref{KeySignature}, @internalsref{Key_engraver}.
838
839
840 @node Ottava brackets
841 @subsubsection Ottava brackets
842
843 @cindex ottava
844 @cindex 15ma
845 @cindex 8va
846 @cindex 8ve
847 @cindex octavation
848
849 @notation{Ottava brackets} introduce an extra transposition of an
850 octave for the staff:
851
852 @lilypond[verbatim,quote,ragged-right,fragment,relative=2]
853 a'2 b
854 #(set-octavation 1)
855 a b
856 #(set-octavation 0)
857 a b
858 @end lilypond
859
860 The @code{set-octavation} function also takes -1 (for 8va bassa),
861 2@tie{}(for 15ma), and -2 (for 15ma bassa) as arguments.
862
863
864 @commonprop
865
866 @lilypondfile[verbatim,lilyquote,ragged-right,texidoc]
867 {ottava-text.ly}
868
869
870 @seealso
871
872 Music Glossary: @rglos{ottava}.
873 @c FIXME? @rglos{15ma}, @rglos{8va}, @rglos{8ve}, @rgloss{octavation}
874
875 Snippets: @lsrdir{Pitches,Pitches}.
876
877 Internals Reference: @internalsref{OttavaBracket}.
878
879
880
881 @node Instrument transpositions
882 @subsubsection Instrument transpositions
883
884 @cindex transposition, MIDI
885 @cindex transposition, instrument
886 @cindex transposing instrument
887 @cindex MIDI
888 @funindex \transposition
889
890 When typesetting scores that involve transposing instruments, some
891 parts can be typeset in a different pitch than the
892 @notation{concert pitch}.  In these cases, the key of the
893 @notation{transposing instrument} should be specified; otherwise
894 the MIDI output and cues in other parts will produce incorrect
895 pitches.  For more information about quotations, see @ref{Quoting
896 other voices}.
897
898 @example
899 \transposition @var{pitch}
900 @end example
901
902 The pitch to use for @code{\transposition} should correspond to
903 the real sound heard when a@tie{}@code{c'} written on the staff is
904 played by the transposing instrument.  This pitch is entered in
905 absolute mode, so an instrument that produces a real sound which
906 is one tone higher than the printed music should use
907 @code{\transposition d'}.  @code{\transposition} should
908 @emph{only} be used if the pitches are @emph{not} being entered in
909 concert pitch.
910
911 Here are a few notes for violin and B-flat clarinet where the
912 parts have been entered using the notes and key as they appear in
913 each part of the conductor's score.  The two instruments are
914 playing in unison.
915
916 @lilypond[verbatim,quote,ragged-right]
917 \new GrandStaff <<
918   \new Staff = "Vln" {
919     \relative c'' {
920       \set Staff.instrumentName = "Vln"
921       \set Staff.midiInstrument="violin"
922       % strictly speaking not necessary, but a good reminder
923       \transposition c'
924
925       \key c \major
926       g4( c8) r c r c4
927     }
928   }
929   \new Staff = "clarinet" {
930     \relative c'' {
931       \set Staff.instrumentName = \markup {Cl (B\flat)}
932       \set Staff.midiInstrument="clarinet"
933       \transposition bes
934
935       % not concert pitch
936       \key d \major
937       a4( d8) r d r d4
938     }
939   }
940 >>
941 @end lilypond
942
943 The @code{\transposition} may be changed during a piece.  For
944 example, a clarinetist may switch from an A clarinet to a B-flat
945 clarinet.
946
947 @lilypond[verbatim,quote,ragged-right,fragment,relative=2]
948 \set Staff.instrumentName = "Cl (A)"
949 \key a \major
950 \transposition a
951 c d e f
952 \textLengthOn
953 r1^\markup{Switch to B\flat clarinet}
954
955 \key bes \major
956 \transposition bes
957 c2 g
958 @end lilypond
959
960
961 @seealso
962
963 Music Glossary: @rglos{concert pitch}, @rglos{transposing instrument}.
964
965 Notation Reference: @ref{Quoting other voices}, @ref{Transpose}.
966
967 Snippets: @lsrdir{Pitches,Pitches}.
968
969
970 @node Automatic accidentals
971 @subsubsection Automatic accidentals
972
973 @cindex automatic accidentals
974 @cindex accidentals, automatic
975 @cindex accidentals
976 @cindex accidental style
977 @cindex default accidental style
978 @cindex accidental style, default
979 @funindex set-accidental-style
980
981 There are many different conventions on how to typeset
982 accidentals.  LilyPond provides a function to specify which
983 accidental style to use.  This function is called as follows
984
985 @example
986 \new Staff <<
987   #(set-accidental-style 'voice)
988   @{ @dots{} @}
989 >>
990 @end example
991
992 The accidental style applies to the current @code{Staff} by
993 default (with the exception of the styles @code{piano} and
994 @code{piano-cautionary}, which are explained below).  Optionally,
995 the function can take a second argument that determines in which
996 scope the style should be changed.  For example, to use the same
997 style in all staves of the current @code{StaffGroup}, use
998
999 @example
1000 #(set-accidental-style 'voice 'StaffGroup)
1001 @end example
1002
1003 The following accidental styles are supported.  To demonstrate
1004 each style, we use the following example:
1005
1006 @lilypond[verbatim,quote,ragged-right]
1007 musicA = {
1008   <<
1009     \relative c' {
1010       cis'8 fis, d'4 <a cis>8 f bis4 |
1011       cis2. <c, g'>4 |
1012     }
1013     \\
1014     \relative c' {
1015       ais'2 cis, |
1016       fis8 b a4 cis2 |
1017     }
1018   >>
1019 }
1020
1021 musicB = {
1022   \clef bass
1023   \new Voice {
1024     \voiceTwo \relative c' {
1025       <fis, a cis>4
1026       \change Staff = up
1027       cis'
1028       \change Staff = down
1029       <fis, a>
1030       \change Staff = up
1031       dis' |
1032       \change Staff = down
1033       <fis, a cis>4 gis <f a d>2 |
1034     }
1035   }
1036 }
1037
1038 \new PianoStaff {
1039   <<
1040     \context Staff = "up" {
1041       %%% change the next line as desired:
1042       #(set-accidental-style 'default)
1043       \musicA
1044     }
1045     \context Staff = "down" {
1046       %%% change the next line as desired:
1047       #(set-accidental-style 'default)
1048       \musicB
1049     }
1050   >>
1051 }
1052 @end lilypond
1053
1054 Note that the last lines of this example can be replaced by the
1055 following, as long as the same accidental style should be used in
1056 both staves.
1057 @example
1058 \new PianoStaff @{
1059   <<
1060     \context Staff = "up" @{
1061       %%% change the next line as desired:
1062       #(set-accidental-style 'default 'Score)
1063       \musicA
1064     @}
1065     \context Staff = "down" @{
1066       \musicB
1067     @}
1068   >>
1069 @}
1070 @end example
1071
1072
1073 @c NOTE: don't use verbatim in this table.
1074 @table @code
1075 @item default
1076 This is the default typesetting behavior.  It corresponds to
1077 eighteenth-century common practice: accidentals are remembered to
1078 the end of the measure in which they occur and only on their own
1079 octave.  Thus, in the example below, no natural signs are printed
1080 before the@tie{}@code{b} in the second measure or the
1081 last@tie{}@code{c}:
1082
1083 @lilypond[quote,ragged-right]
1084 musicA = {
1085   <<
1086     \relative c' {
1087       cis'8 fis, d'4 <a cis>8 f bis4 |
1088       cis2. <c, g'>4 |
1089     }
1090     \\
1091     \relative c' {
1092       ais'2 cis, |
1093       fis8 b a4 cis2 |
1094     }
1095   >>
1096 }
1097
1098 musicB = {
1099   \clef bass
1100   \new Voice {
1101     \voiceTwo \relative c' {
1102       <fis, a cis>4
1103       \change Staff = up
1104       cis'
1105       \change Staff = down
1106       <fis, a>
1107       \change Staff = up
1108       dis' |
1109       \change Staff = down
1110       <fis, a cis>4 gis <f a d>2 |
1111     }
1112   }
1113 }
1114
1115 \new PianoStaff {
1116   <<
1117     \context Staff = "up" {
1118       #(set-accidental-style 'default)
1119       \musicA
1120     }
1121     \context Staff = "down" {
1122       #(set-accidental-style 'default)
1123       \musicB
1124     }
1125   >>
1126 }
1127 @end lilypond
1128
1129 @item voice
1130 The normal behavior is to remember the accidentals on Staff-level.
1131 In this style, however, accidentals are typeset individually for
1132 each voice.  Apart from that, the rule is similar to
1133 @code{default}.
1134
1135 As a result, accidentals from one voice do not get canceled in
1136 other voices, which is often an unwanted result: in the following
1137 example, it is hard to determine whether the second@tie{}@code{a}
1138 should be played natural or sharp.  The @code{voice} option should
1139 therefore be used only if the voices are to be read solely by
1140 individual musicians.  If the staff is to be used by one musician
1141 (e.g., a conductor or in a piano score) then @code{modern} or
1142 @code{modern-cautionary} should be used instead.
1143
1144
1145 @lilypond[quote,ragged-right]
1146 musicA = {
1147   <<
1148     \relative c' {
1149       cis'8 fis, d'4 <a cis>8 f bis4 |
1150       cis2. <c, g'>4 |
1151     }
1152     \\
1153     \relative c' {
1154       ais'2 cis, |
1155       fis8 b a4 cis2 |
1156     }
1157   >>
1158 }
1159
1160 musicB = {
1161   \clef bass
1162   \new Voice {
1163     \voiceTwo \relative c' {
1164       <fis, a cis>4
1165       \change Staff = up
1166       cis'
1167       \change Staff = down
1168       <fis, a>
1169       \change Staff = up
1170       dis' |
1171       \change Staff = down
1172       <fis, a cis>4 gis <f a d>2 |
1173     }
1174   }
1175 }
1176
1177 \new PianoStaff {
1178   <<
1179     \context Staff = "up" {
1180       #(set-accidental-style 'voice)
1181       \musicA
1182     }
1183     \context Staff = "down" {
1184       #(set-accidental-style 'voice)
1185       \musicB
1186     }
1187   >>
1188 }
1189 @end lilypond
1190
1191 @item modern
1192 @cindex accidentals, modern style
1193 @cindex modern style accidentals
1194 @funindex modern style accidentals
1195
1196 This rule corresponds to the common practice in the twentieth
1197 century.  It prints the same accidentals as @code{default}, with
1198 two exceptions that serve to avoid ambiguity: after temporary
1199 accidentals, cancellation marks are printed also in the following
1200 measure (for notes in the same octave) and, in the same measure,
1201 for notes in other octaves.  Hence the naturals before
1202 the@tie{}@code{b} and the@tie{}@code{c} in the second measure of
1203 the upper staff:
1204
1205 @lilypond[quote,ragged-right]
1206 musicA = {
1207   <<
1208     \relative c' {
1209       cis'8 fis, d'4 <a cis>8 f bis4 |
1210       cis2. <c, g'>4 |
1211     }
1212     \\
1213     \relative c' {
1214       ais'2 cis, |
1215       fis8 b a4 cis2 |
1216     }
1217   >>
1218 }
1219
1220 musicB = {
1221   \clef bass
1222   \new Voice {
1223     \voiceTwo \relative c' {
1224       <fis, a cis>4
1225       \change Staff = up
1226       cis'
1227       \change Staff = down
1228       <fis, a>
1229       \change Staff = up
1230       dis' |
1231       \change Staff = down
1232       <fis, a cis>4 gis <f a d>2 |
1233     }
1234   }
1235 }
1236
1237 \new PianoStaff {
1238   <<
1239     \context Staff = "up" {
1240       #(set-accidental-style 'modern)
1241       \musicA
1242     }
1243     \context Staff = "down" {
1244       #(set-accidental-style 'modern)
1245       \musicB
1246     }
1247   >>
1248 }
1249 @end lilypond
1250
1251 @item modern-cautionary
1252 @cindex accidentals, modern cautionary style
1253 @cindex modern style accidentals
1254 @cindex modern style cautionary accidentals
1255 @cindex modern accidental style
1256 @cindex modern cautionary accidental style
1257 @funindex modern-cautionary
1258
1259 This rule is similar to @code{modern}, but the @q{extra}
1260 accidentals (the ones not typeset by @code{default}) are typeset
1261 as cautionary accidentals.  They are by default printed with
1262 parentheses, but they can also be printed in reduced size by
1263 defining the @code{cautionary-style} property of
1264 @code{AccidentalSuggestion}.
1265
1266
1267 @lilypond[quote,ragged-right]
1268 musicA = {
1269   <<
1270     \relative c' {
1271       cis'8 fis, d'4 <a cis>8 f bis4 |
1272       cis2. <c, g'>4 |
1273     }
1274     \\
1275     \relative c' {
1276       ais'2 cis, |
1277       fis8 b a4 cis2 |
1278     }
1279   >>
1280 }
1281
1282 musicB = {
1283   \clef bass
1284   \new Voice {
1285     \voiceTwo \relative c' {
1286       <fis, a cis>4
1287       \change Staff = up
1288       cis'
1289       \change Staff = down
1290       <fis, a>
1291       \change Staff = up
1292       dis' |
1293       \change Staff = down
1294       <fis, a cis>4 gis <f a d>2 |
1295     }
1296   }
1297 }
1298
1299 \new PianoStaff {
1300   <<
1301     \context Staff = "up" {
1302       #(set-accidental-style 'modern-cautionary)
1303       \musicA
1304     }
1305     \context Staff = "down" {
1306       #(set-accidental-style 'modern-cautionary)
1307       \musicB
1308     }
1309   >>
1310 }
1311 @end lilypond
1312
1313 @item modern-voice
1314 @cindex accidentals, multivoice
1315 @cindex accidentals, modern
1316 @cindex modern accidentals
1317 @cindex multivoice accidentals
1318 @funindex modern-voice
1319
1320 This rule is used for multivoice accidentals to be read both by
1321 musicians playing one voice and musicians playing all voices.
1322 Accidentals are typeset for each voice, but they @emph{are}
1323 canceled across voices in the same @code{Staff}.  Hence,
1324 the@tie{}@code{a} in the last measure is canceled because the
1325 previous cancellation was in a different voice, and
1326 the@tie{}@code{d} in the lower staff is canceled because of the
1327 accidental in a different voice in the previous measure:
1328
1329
1330 @lilypond[quote,ragged-right]
1331 musicA = {
1332   <<
1333     \relative c' {
1334       cis'8 fis, d'4 <a cis>8 f bis4 |
1335       cis2. <c, g'>4 |
1336     }
1337     \\
1338     \relative c' {
1339       ais'2 cis, |
1340       fis8 b a4 cis2 |
1341     }
1342   >>
1343 }
1344
1345 musicB = {
1346   \clef bass
1347   \new Voice {
1348     \voiceTwo \relative c' {
1349       <fis, a cis>4
1350       \change Staff = up
1351       cis'
1352       \change Staff = down
1353       <fis, a>
1354       \change Staff = up
1355       dis' |
1356       \change Staff = down
1357       <fis, a cis>4 gis <f a d>2 |
1358     }
1359   }
1360 }
1361
1362 \new PianoStaff {
1363   <<
1364     \context Staff = "up" {
1365       #(set-accidental-style 'modern-voice)
1366       \musicA
1367     }
1368     \context Staff = "down" {
1369       #(set-accidental-style 'modern-voice)
1370       \musicB
1371     }
1372   >>
1373 }
1374 @end lilypond
1375
1376 @funindex modern-voice-cautionary
1377 @item modern-voice-cautionary
1378
1379 This rule is the same as @code{modern-voice}, but with the extra
1380 accidentals (the ones not typeset by @code{voice}) typeset
1381 as cautionaries.  Even though all accidentals typeset by
1382 @code{default} @emph{are} typeset with this rule,
1383 some of them are typeset as cautionaries.
1384
1385 @lilypond[quote,ragged-right]
1386 musicA = {
1387   <<
1388     \relative c' {
1389       cis'8 fis, d'4 <a cis>8 f bis4 |
1390       cis2. <c, g'>4 |
1391     }
1392     \\
1393     \relative c' {
1394       ais'2 cis, |
1395       fis8 b a4 cis2 |
1396     }
1397   >>
1398 }
1399
1400 musicB = {
1401   \clef bass
1402   \new Voice {
1403     \voiceTwo \relative c' {
1404       <fis, a cis>4
1405       \change Staff = up
1406       cis'
1407       \change Staff = down
1408       <fis, a>
1409       \change Staff = up
1410       dis' |
1411       \change Staff = down
1412       <fis, a cis>4 gis <f a d>2 |
1413     }
1414   }
1415 }
1416
1417 \new PianoStaff {
1418   <<
1419     \context Staff = "up" {
1420       #(set-accidental-style 'modern-voice-cautionary)
1421       \musicA
1422     }
1423     \context Staff = "down" {
1424       #(set-accidental-style 'modern-voice-cautionary)
1425       \musicB
1426     }
1427   >>
1428 }
1429 @end lilypond
1430
1431 @item piano
1432 @funindex piano accidentals
1433
1434 This rule reflects twentieth-century practice for piano notation.
1435 Its behavior is very similar to @code{modern} style, but here
1436 accidentals also get canceled across the staves in the same
1437 GrandStaff or PianoStaff, hence all the cancellations of the final
1438 notes.
1439
1440 This accidental style applies to the current @code{GrandStaff} or
1441 @code{PianoStaff} by default.
1442
1443 @lilypond[quote,ragged-right]
1444 musicA = {
1445   <<
1446     \relative c' {
1447       cis'8 fis, d'4 <a cis>8 f bis4 |
1448       cis2. <c, g'>4 |
1449     }
1450     \\
1451     \relative c' {
1452       ais'2 cis, |
1453       fis8 b a4 cis2 |
1454     }
1455   >>
1456 }
1457
1458 musicB = {
1459   \clef bass
1460   \new Voice {
1461     \voiceTwo \relative c' {
1462       <fis, a cis>4
1463       \change Staff = up
1464       cis'
1465       \change Staff = down
1466       <fis, a>
1467       \change Staff = up
1468       dis' |
1469       \change Staff = down
1470       <fis, a cis>4 gis <f a d>2 |
1471     }
1472   }
1473 }
1474
1475 \new PianoStaff {
1476   <<
1477     \context Staff = "up" {
1478       #(set-accidental-style 'piano)
1479       \musicA
1480     }
1481     \context Staff = "down" {
1482       \musicB
1483     }
1484   >>
1485 }
1486 @end lilypond
1487
1488 @item piano-cautionary
1489 @funindex #(set-accidental-style 'piano-cautionary)
1490
1491 Same as @code{#(set-accidental-style 'piano)} but with the extra
1492 accidentals typeset as cautionaries.
1493
1494 @lilypond[quote,ragged-right]
1495 musicA = {
1496   <<
1497     \relative c' {
1498       cis'8 fis, d'4 <a cis>8 f bis4 |
1499       cis2. <c, g'>4 |
1500     }
1501     \\
1502     \relative c' {
1503       ais'2 cis, |
1504       fis8 b a4 cis2 |
1505     }
1506   >>
1507 }
1508
1509 musicB = {
1510   \clef bass
1511   \new Voice {
1512     \voiceTwo \relative c' {
1513       <fis, a cis>4
1514       \change Staff = up
1515       cis'
1516       \change Staff = down
1517       <fis, a>
1518       \change Staff = up
1519       dis' |
1520       \change Staff = down
1521       <fis, a cis>4 gis <f a d>2 |
1522     }
1523   }
1524 }
1525
1526 \new PianoStaff {
1527   <<
1528     \context Staff = "up" {
1529       #(set-accidental-style 'piano-cautionary)
1530       \musicA
1531     }
1532     \context Staff = "down" {
1533       \musicB
1534     }
1535   >>
1536 }
1537 @end lilypond
1538
1539 @item no-reset
1540 @funindex no-reset accidental style
1541
1542 This is the same as @code{default} but with accidentals lasting
1543 @q{forever} and not only within the same measure:
1544
1545 @lilypond[quote,ragged-right]
1546 musicA = {
1547   <<
1548     \relative c' {
1549       cis'8 fis, d'4 <a cis>8 f bis4 |
1550       cis2. <c, g'>4 |
1551     }
1552     \\
1553     \relative c' {
1554       ais'2 cis, |
1555       fis8 b a4 cis2 |
1556     }
1557   >>
1558 }
1559
1560 musicB = {
1561   \clef bass
1562   \new Voice {
1563     \voiceTwo \relative c' {
1564       <fis, a cis>4
1565       \change Staff = up
1566       cis'
1567       \change Staff = down
1568       <fis, a>
1569       \change Staff = up
1570       dis' |
1571       \change Staff = down
1572       <fis, a cis>4 gis <f a d>2 |
1573     }
1574   }
1575 }
1576
1577 \new PianoStaff {
1578   <<
1579     \context Staff = "up" {
1580       #(set-accidental-style 'no-reset)
1581       \musicA
1582     }
1583     \context Staff = "down" {
1584       #(set-accidental-style 'no-reset)
1585       \musicB
1586     }
1587   >>
1588 }
1589 @end lilypond
1590
1591 @item forget
1592 @funindex forget accidental style
1593
1594 This is the opposite of @code{no-reset}: Accidentals are not
1595 remembered at all -- and hence all accidentals are typeset
1596 relative to the key signature, regardless of what was before in
1597 the music:
1598
1599 @lilypond[quote,ragged-right]
1600 musicA = {
1601   <<
1602     \relative c' {
1603       cis'8 fis, d'4 <a cis>8 f bis4 |
1604       cis2. <c, g'>4 |
1605     }
1606     \\
1607     \relative c' {
1608       ais'2 cis, |
1609       fis8 b a4 cis2 |
1610     }
1611   >>
1612 }
1613
1614 musicB = {
1615   \clef bass
1616   \new Voice {
1617     \voiceTwo \relative c' {
1618       <fis, a cis>4
1619       \change Staff = up
1620       cis'
1621       \change Staff = down
1622       <fis, a>
1623       \change Staff = up
1624       dis' |
1625       \change Staff = down
1626       <fis, a cis>4 gis <f a d>2 |
1627     }
1628   }
1629 }
1630
1631 \new PianoStaff {
1632   <<
1633     \context Staff = "up" {
1634       #(set-accidental-style 'forget)
1635       \musicA
1636     }
1637     \context Staff = "down" {
1638       #(set-accidental-style 'forget)
1639       \musicB
1640     }
1641   >>
1642 }
1643 @end lilypond
1644 @end table
1645
1646 @commonprop
1647
1648 @lilypondfile[verbatim,lilyquote,ragged-right,texidoc]
1649 {dodecaphonic-style-accidentals-for-each-note-including-naturals.ly}
1650
1651
1652 @seealso
1653
1654 Snippets: @lsrdir{Pitches,Pitches}.
1655
1656 Internals Reference: @internalsref{Accidental_engraver},
1657 @internalsref{Accidental}, @internalsref{AccidentalSuggestion},
1658 @internalsref{AccidentalPlacement}, @internalsref{GrandStaff} and
1659 @internalsref{PianoStaff}, @internalsref{Staff}.
1660
1661
1662 @refbugs
1663
1664 Simultaneous notes are considered to be entered in sequential
1665 mode.  This means that in a chord the accidentals are typeset as
1666 if the notes in the chord happen one at a time, in the order in
1667 which they appear in the input file.  This is a problem when
1668 accidentals in a chord depend on each other, which does not happen
1669 for the default accidental style.  The problem can be solved by
1670 manually inserting@tie{}@code{!} and@tie{}@code{?} for the
1671 problematic notes.
1672
1673
1674 @node Ambitus
1675 @subsubsection Ambitus
1676 @cindex ambitus
1677
1678 The term @notation{ambitus} or @notation{ambit} denotes a range of
1679 pitches for a given voice in a part of music.  It may also denote
1680 the pitch range that a musical instrument is capable of playing.
1681 Ambits are printed on vocal parts so that performers can easily
1682 determine if it matches their capabilities.
1683
1684 Ambits are denoted at the beginning of a piece near the initial
1685 clef.  The range is graphically specified by two note heads that
1686 represent the lowest and highest pitches.  Accidentals are only
1687 printed if they are not part of the key signature.
1688
1689 @lilypond[verbatim,quote,ragged-right]
1690 \layout {
1691   \context {
1692     \Voice
1693     \consists Ambitus_engraver
1694   }
1695 }
1696
1697 \relative c'' {
1698   aes c e2 cis,2
1699 }
1700 @end lilypond
1701
1702
1703 @commonprop
1704
1705 @lilypondfile[verbatim,lilyquote,ragged-right,texidoc]
1706 {adding-ambiti-per-voice.ly}
1707
1708 @lilypondfile[verbatim,lilyquote,ragged-right,texidoc]
1709 {ambiti-multiple-voices.ly}
1710
1711
1712 @seealso
1713
1714 Snippets: @lsrdir{Pitches,Pitches}.
1715
1716 Internals Reference: @internalsref{Ambitus},
1717 @internalsref{AmbitusLine}, @internalsref{AmbitusNoteHead},
1718 @internalsref{AmbitusAccidental}, @internalsref{Ambitus_engraver},
1719 @internalsref{Staff}, @internalsref{Voice}.
1720
1721
1722 @refbugs
1723
1724 There is no collision handling in the case of multiple per-voice
1725 ambitus.
1726
1727
1728 @node Note heads
1729 @subsection Note heads
1730
1731 @menu
1732 * Special note heads::          
1733 * Easy notation note heads::    
1734 * Shape note heads::            
1735 * Improvisation::               
1736 @end menu
1737
1738 @node Special note heads
1739 @subsubsection Special note heads
1740
1741 @cindex note heads, special
1742
1743 Different note heads are used by various instruments for various
1744 meanings -- crosses are used for @q{parlato} with vocalists,
1745 stopped notes on guitar; diamonds are used for harmonics on string
1746 instruments, etc.  There is a shorthand (@code{\harmonic}) for
1747 diamond shapes; the other note head styles are produced by
1748 tweaking the property:
1749
1750 @lilypond[verbatim,quote,ragged-right,fragment,relative=1]
1751 c4 d
1752 \override NoteHead #'style = #'cross
1753 e f
1754 \revert NoteHead #'style
1755 e d <c f\harmonic> <d a'\harmonic>
1756 @end lilypond
1757
1758 @noindent
1759 To see all note head styles, see @ref{Note head styles}.
1760
1761
1762 @seealso
1763
1764 Snippets: @lsrdir{Pitches,Pitches}.
1765
1766 Notation Reference: @ref{Note head styles}.
1767
1768 Internals Reference: @internalsref{NoteHead},
1769 @internalsref{LedgerLineSpanner}.
1770
1771
1772 @node Easy notation note heads
1773 @subsubsection Easy notation note heads
1774
1775 @cindex note heads, practice
1776 @cindex note heads, easy notation
1777 @cindex easy notation
1778 @cindex Hal Leonard
1779
1780 The @q{easy play} note head includes a note name inside the head.
1781 It is used in music for beginners.
1782
1783 @lilypond[verbatim,quote,ragged-right]
1784 #(set-global-staff-size 26)
1785 \relative c' {
1786   \easyHeadsOn
1787   c2 e4 f
1788   g1
1789   \easyHeadsOff
1790   c,1
1791 }
1792 @end lilypond
1793
1794 The command @code{\easyHeadsOn} overrides settings for the
1795 @code{NoteHead} object.  These settings can be reverted with the command
1796 @code{\easyHeadsOff}. To make the letters readable, it has to be printed
1797 in a large font size.  To print with a larger font, see @ref{Setting the
1798 staff size}.
1799
1800 @refcommands
1801
1802 @funindex \easyHeadsOn
1803 @funindex \easyHeadsOff
1804 @code{\easyHeadsOn}, @code{\easyHeadsOff}
1805
1806 @seealso
1807
1808 Notation Reference: @ref{Setting the staff size}.
1809
1810 Snippets: @lsrdir{Pitches,Pitches},
1811
1812 Internals Reference: @internalsref{NoteHead}.
1813
1814
1815 @node Shape note heads
1816 @subsubsection Shape note heads
1817
1818 @cindex note heads, shape
1819 @funindex \key
1820 @funindex shapeNoteStyles
1821 @funindex \aikenHeads
1822 @funindex \sacredHarpHeads
1823
1824 In shape note head notation, the shape of the note head
1825 corresponds to the harmonic function of a note in the scale.  This
1826 notation was popular in nineteenth-century American song books.
1827
1828 Shape note heads can be produced by setting @code{\aikenHeads} or
1829 @code{\sacredHarpHeads}, depending on the style desired.
1830
1831 @lilypond[verbatim,fragment,quote,ragged-right,relative=1]
1832 \aikenHeads
1833 c8 d4 e8 a2 g1
1834 \sacredHarpHeads
1835 c,8 d4 e8 a2 g1
1836 @end lilypond
1837
1838 Shapes are typeset according to the step in the scale, where
1839 the base of the scale is determined by the @code{\key} command.
1840
1841 @commonprop
1842
1843 @lilypondfile[verbatim,lilyquote,ragged-right,texidoc]
1844 {applying-noteheads-styles-depending-on-the-step-of-the-scale.ly}
1845
1846
1847 @seealso
1848
1849 Snippets: @lsrdir{Pitches,Pitches}.
1850
1851
1852 @node Improvisation
1853 @subsubsection Improvisation
1854
1855 @cindex improvisation
1856 @cindex slashed note heads
1857 @cindex note heads, improvisation
1858 @cindex note heads, slashed
1859
1860 Improvisation is sometimes denoted with slashed note heads, where
1861 the performer may choose any pitch but should play the specified
1862 rhythm.  Such note heads can be created:
1863
1864 @lilypond[verbatim,quote,ragged-right]
1865 \new Voice \with {
1866   \consists Pitch_squash_engraver
1867 } \transpose c c' {
1868   e8 e g a a16( bes) a8 g
1869   \improvisationOn
1870   e8
1871   ~e2~e8 f4 fis8
1872   ~fis2
1873   \improvisationOff
1874   a16(bes) a8 g e
1875 }
1876 @end lilypond
1877
1878
1879 @refcommands
1880
1881 @funindex \improvisationOn
1882 @funindex \improvisationOff
1883
1884 @code{\improvisationOn}, @code{\improvisationOff}
1885
1886 @seealso
1887
1888 Snippets: @lsrdir{Pitches,Pitches}.
1889
1890 Internals Reference: @internalsref{Pitch_squash_engraver},
1891 @internalsref{Voice}.
1892
1893