]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/user/pitches.itely
Dist documentation text file too.
[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 \minor
793 @funindex \major
794 @funindex \minor
795 @funindex \ionian
796 @funindex \locrian
797 @funindex \aeolian
798 @funindex \mixolydian
799 @funindex \lydian
800 @funindex \phrygian
801 @funindex \dorian
802 @cindex church 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
874 Snippets: @lsrdir{Pitches,Pitches}.
875
876 Internals Reference: @internalsref{OttavaBracket}.
877
878
879
880 @node Instrument transpositions
881 @subsubsection Instrument transpositions
882
883 @cindex transposition, MIDI
884 @cindex transposition, instrument
885
886 When typesetting scores that involve transposing instruments, some
887 parts can be typeset in a different pitch than the
888 @notation{concert pitch}.  In these cases, the key of the
889 @notation{transposing instrument} should be specified; otherwise
890 the MIDI output and cues in other parts will produce incorrect
891 pitches.  For more information about quotations, see @ref{Quoting
892 other voices}.
893
894 @example
895 \transposition @var{pitch}
896 @end example
897
898 The pitch to use for @code{\transposition} should correspond to
899 the real sound heard when a@tie{}@code{c'} written on the staff is
900 played by the transposing instrument.  This pitch is entered in
901 absolute mode, so an instrument that produces a real sound which
902 is one tone higher than the printed music should use
903 @code{\transposition d'}.  @code{\transposition} should
904 @emph{only} be used if the pitches are @emph{not} being entered in
905 concert pitch.
906
907 Here are a few notes for violin and B-flat clarinet where the
908 parts have been entered using the notes and key as they appear in
909 each part of the conductor's score.  The two instruments are
910 playing in unison.
911
912 @lilypond[verbatim,quote,ragged-right]
913 \new GrandStaff <<
914   \new Staff = "Vln" {
915     \relative c'' {
916       \set Staff.instrumentName = "Vln"
917       \set Staff.midiInstrument="violin"
918       % strictly speaking not necessary, but a good reminder
919       \transposition c'
920
921       \key c \major
922       g4( c8) r c r c4
923     }
924   }
925   \new Staff = "clarinet" {
926     \relative c'' {
927       \set Staff.instrumentName = \markup {Cl (B\flat)}
928       \set Staff.midiInstrument="clarinet"
929       \transposition bes
930
931       % not concert pitch
932       \key d \major
933       a4( d8) r d r d4
934     }
935   }
936 >>
937 @end lilypond
938
939 The @code{\transposition} may be changed during a piece.  For
940 example, a clarinetist may switch from an A clarinet to a B-flat
941 clarinet.
942
943 @lilypond[verbatim,quote,ragged-right,fragment,relative=2]
944 \set Staff.instrumentName = "Cl (A)"
945 \key a \major
946 \transposition a
947 c d e f
948 \textLengthOn
949 r1^\markup{Switch to B\flat clarinet}
950
951 \key bes \major
952 \transposition bes
953 c2 g
954 @end lilypond
955
956
957 @seealso
958
959 Music Glossary: @rglos{concert pitch},
960 @rglos{transposing instrument}.
961
962 Notation Reference: @ref{Quoting other voices}, @ref{Transpose}.
963
964 Snippets: @lsrdir{Pitches,Pitches}.
965
966
967 @node Automatic accidentals
968 @subsubsection Automatic accidentals
969 @cindex automatic accidentals
970
971 @funindex set-accidental-style
972
973 There are many different conventions on how to typeset
974 accidentals.  LilyPond provides a function to specify which
975 accidental style to use.  This function is called as follows
976
977 @example
978 \new Staff <<
979   #(set-accidental-style 'voice)
980   @{ @dots{} @}
981 >>
982 @end example
983
984 The accidental style applies to the current @code{Staff} by
985 default (with the exception of the styles @code{piano} and
986 @code{piano-cautionary}, which are explained below).  Optionally,
987 the function can take a second argument that determines in which
988 scope the style should be changed.  For example, to use the same
989 style in all staves of the current @code{StaffGroup}, use
990
991 @example
992 #(set-accidental-style 'voice 'StaffGroup)
993 @end example
994
995 The following accidental styles are supported.  To demonstrate
996 each style, we use the following example:
997
998 @lilypond[verbatim,quote,ragged-right]
999 musicA = {
1000   <<
1001     \relative c' {
1002       cis'8 fis, d'4 <a cis>8 f bis4 |
1003       cis2. <c, g'>4 |
1004     }
1005     \\
1006     \relative c' {
1007       ais'2 cis, |
1008       fis8 b a4 cis2 |
1009     }
1010   >>
1011 }
1012
1013 musicB = {
1014   \clef bass
1015   \new Voice {
1016     \voiceTwo \relative c' {
1017       <fis, a cis>4
1018       \change Staff = up
1019       cis'
1020       \change Staff = down
1021       <fis, a>
1022       \change Staff = up
1023       dis' |
1024       \change Staff = down
1025       <fis, a cis>4 gis <f a d>2 |
1026     }
1027   }
1028 }
1029
1030 \new PianoStaff {
1031   <<
1032     \context Staff = "up" {
1033       %%% change the next line as desired:
1034       #(set-accidental-style 'default)
1035       \musicA
1036     }
1037     \context Staff = "down" {
1038       %%% change the next line as desired:
1039       #(set-accidental-style 'default)
1040       \musicB
1041     }
1042   >>
1043 }
1044 @end lilypond
1045
1046 Note that the last lines of this example can be replaced by the
1047 following, as long as the same accidental style should be used in
1048 both staves.
1049 @example
1050 \new PianoStaff @{
1051   <<
1052     \context Staff = "up" @{
1053       %%% change the next line as desired:
1054       #(set-accidental-style 'default 'Score)
1055       \musicA
1056     @}
1057     \context Staff = "down" @{
1058       \musicB
1059     @}
1060   >>
1061 @}
1062 @end example
1063
1064
1065 @c NOTE: don't use verbatim in this table.
1066 @table @code
1067 @item default
1068 This is the default typesetting behavior.  It corresponds to
1069 eighteenth-century common practice: accidentals are remembered to
1070 the end of the measure in which they occur and only on their own
1071 octave.  Thus, in the example below, no natural signs are printed
1072 before the@tie{}@code{b} in the second measure or the
1073 last@tie{}@code{c}:
1074
1075 @lilypond[quote,ragged-right]
1076 musicA = {
1077   <<
1078     \relative c' {
1079       cis'8 fis, d'4 <a cis>8 f bis4 |
1080       cis2. <c, g'>4 |
1081     }
1082     \\
1083     \relative c' {
1084       ais'2 cis, |
1085       fis8 b a4 cis2 |
1086     }
1087   >>
1088 }
1089
1090 musicB = {
1091   \clef bass
1092   \new Voice {
1093     \voiceTwo \relative c' {
1094       <fis, a cis>4
1095       \change Staff = up
1096       cis'
1097       \change Staff = down
1098       <fis, a>
1099       \change Staff = up
1100       dis' |
1101       \change Staff = down
1102       <fis, a cis>4 gis <f a d>2 |
1103     }
1104   }
1105 }
1106
1107 \new PianoStaff {
1108   <<
1109     \context Staff = "up" {
1110       #(set-accidental-style 'default)
1111       \musicA
1112     }
1113     \context Staff = "down" {
1114       #(set-accidental-style 'default)
1115       \musicB
1116     }
1117   >>
1118 }
1119 @end lilypond
1120
1121 @item voice
1122 The normal behavior is to remember the accidentals on Staff-level.
1123 In this style, however, accidentals are typeset individually for
1124 each voice.  Apart from that, the rule is similar to
1125 @code{default}.
1126
1127 As a result, accidentals from one voice do not get canceled in
1128 other voices, which is often an unwanted result: in the following
1129 example, it is hard to determine whether the second@tie{}@code{a}
1130 should be played natural or sharp.  The @code{voice} option should
1131 therefore be used only if the voices are to be read solely by
1132 individual musicians.  If the staff is to be used by one musician
1133 (e.g., a conductor or in a piano score) then @code{modern} or
1134 @code{modern-cautionary} should be used instead.
1135
1136
1137 @lilypond[quote,ragged-right]
1138 musicA = {
1139   <<
1140     \relative c' {
1141       cis'8 fis, d'4 <a cis>8 f bis4 |
1142       cis2. <c, g'>4 |
1143     }
1144     \\
1145     \relative c' {
1146       ais'2 cis, |
1147       fis8 b a4 cis2 |
1148     }
1149   >>
1150 }
1151
1152 musicB = {
1153   \clef bass
1154   \new Voice {
1155     \voiceTwo \relative c' {
1156       <fis, a cis>4
1157       \change Staff = up
1158       cis'
1159       \change Staff = down
1160       <fis, a>
1161       \change Staff = up
1162       dis' |
1163       \change Staff = down
1164       <fis, a cis>4 gis <f a d>2 |
1165     }
1166   }
1167 }
1168
1169 \new PianoStaff {
1170   <<
1171     \context Staff = "up" {
1172       #(set-accidental-style 'voice)
1173       \musicA
1174     }
1175     \context Staff = "down" {
1176       #(set-accidental-style 'voice)
1177       \musicB
1178     }
1179   >>
1180 }
1181 @end lilypond
1182
1183 @item modern
1184 @funindex modern style accidentals
1185
1186 This rule corresponds to the common practice in the twentieth
1187 century.  It prints the same accidentals as @code{default}, with
1188 two exceptions that serve to avoid ambiguity: after temporary
1189 accidentals, cancellation marks are printed also in the following
1190 measure (for notes in the same octave) and, in the same measure,
1191 for notes in other octaves.  Hence the naturals before
1192 the@tie{}@code{b} and the@tie{}@code{c} in the second measure of
1193 the upper staff:
1194
1195 @lilypond[quote,ragged-right]
1196 musicA = {
1197   <<
1198     \relative c' {
1199       cis'8 fis, d'4 <a cis>8 f bis4 |
1200       cis2. <c, g'>4 |
1201     }
1202     \\
1203     \relative c' {
1204       ais'2 cis, |
1205       fis8 b a4 cis2 |
1206     }
1207   >>
1208 }
1209
1210 musicB = {
1211   \clef bass
1212   \new Voice {
1213     \voiceTwo \relative c' {
1214       <fis, a cis>4
1215       \change Staff = up
1216       cis'
1217       \change Staff = down
1218       <fis, a>
1219       \change Staff = up
1220       dis' |
1221       \change Staff = down
1222       <fis, a cis>4 gis <f a d>2 |
1223     }
1224   }
1225 }
1226
1227 \new PianoStaff {
1228   <<
1229     \context Staff = "up" {
1230       #(set-accidental-style 'modern)
1231       \musicA
1232     }
1233     \context Staff = "down" {
1234       #(set-accidental-style 'modern)
1235       \musicB
1236     }
1237   >>
1238 }
1239 @end lilypond
1240
1241 @item modern-cautionary
1242 @funindex modern-cautionary
1243
1244 This rule is similar to @code{modern}, but the @q{extra}
1245 accidentals (the ones not typeset by @code{default}) are typeset
1246 as cautionary accidentals.  They are by default printed with
1247 parentheses, but they can also be printed in reduced size by
1248 defining the @code{cautionary-style} property of
1249 @code{AccidentalSuggestion}.
1250
1251
1252 @lilypond[quote,ragged-right]
1253 musicA = {
1254   <<
1255     \relative c' {
1256       cis'8 fis, d'4 <a cis>8 f bis4 |
1257       cis2. <c, g'>4 |
1258     }
1259     \\
1260     \relative c' {
1261       ais'2 cis, |
1262       fis8 b a4 cis2 |
1263     }
1264   >>
1265 }
1266
1267 musicB = {
1268   \clef bass
1269   \new Voice {
1270     \voiceTwo \relative c' {
1271       <fis, a cis>4
1272       \change Staff = up
1273       cis'
1274       \change Staff = down
1275       <fis, a>
1276       \change Staff = up
1277       dis' |
1278       \change Staff = down
1279       <fis, a cis>4 gis <f a d>2 |
1280     }
1281   }
1282 }
1283
1284 \new PianoStaff {
1285   <<
1286     \context Staff = "up" {
1287       #(set-accidental-style 'modern-cautionary)
1288       \musicA
1289     }
1290     \context Staff = "down" {
1291       #(set-accidental-style 'modern-cautionary)
1292       \musicB
1293     }
1294   >>
1295 }
1296 @end lilypond
1297
1298 @item modern-voice
1299 @funindex modern-voice
1300
1301 This rule is used for multivoice accidentals to be read both by
1302 musicians playing one voice and musicians playing all voices.
1303 Accidentals are typeset for each voice, but they @emph{are}
1304 canceled across voices in the same @code{Staff}.  Hence,
1305 the@tie{}@code{a} in the last measure is canceled because the
1306 previous cancellation was in a different voice, and
1307 the@tie{}@code{d} in the lower staff is canceled because of the
1308 accidental in a different voice in the previous measure:
1309
1310
1311 @lilypond[quote,ragged-right]
1312 musicA = {
1313   <<
1314     \relative c' {
1315       cis'8 fis, d'4 <a cis>8 f bis4 |
1316       cis2. <c, g'>4 |
1317     }
1318     \\
1319     \relative c' {
1320       ais'2 cis, |
1321       fis8 b a4 cis2 |
1322     }
1323   >>
1324 }
1325
1326 musicB = {
1327   \clef bass
1328   \new Voice {
1329     \voiceTwo \relative c' {
1330       <fis, a cis>4
1331       \change Staff = up
1332       cis'
1333       \change Staff = down
1334       <fis, a>
1335       \change Staff = up
1336       dis' |
1337       \change Staff = down
1338       <fis, a cis>4 gis <f a d>2 |
1339     }
1340   }
1341 }
1342
1343 \new PianoStaff {
1344   <<
1345     \context Staff = "up" {
1346       #(set-accidental-style 'modern-voice)
1347       \musicA
1348     }
1349     \context Staff = "down" {
1350       #(set-accidental-style 'modern-voice)
1351       \musicB
1352     }
1353   >>
1354 }
1355 @end lilypond
1356
1357 @funindex modern-voice-cautionary
1358 @item modern-voice-cautionary
1359
1360 This rule is the same as @code{modern-voice}, but with the extra
1361 accidentals (the ones not typeset by @code{voice}) typeset
1362 as cautionaries.  Even though all accidentals typeset by
1363 @code{default} @emph{are} typeset with this rule,
1364 some of them are typeset as cautionaries.
1365
1366 @lilypond[quote,ragged-right]
1367 musicA = {
1368   <<
1369     \relative c' {
1370       cis'8 fis, d'4 <a cis>8 f bis4 |
1371       cis2. <c, g'>4 |
1372     }
1373     \\
1374     \relative c' {
1375       ais'2 cis, |
1376       fis8 b a4 cis2 |
1377     }
1378   >>
1379 }
1380
1381 musicB = {
1382   \clef bass
1383   \new Voice {
1384     \voiceTwo \relative c' {
1385       <fis, a cis>4
1386       \change Staff = up
1387       cis'
1388       \change Staff = down
1389       <fis, a>
1390       \change Staff = up
1391       dis' |
1392       \change Staff = down
1393       <fis, a cis>4 gis <f a d>2 |
1394     }
1395   }
1396 }
1397
1398 \new PianoStaff {
1399   <<
1400     \context Staff = "up" {
1401       #(set-accidental-style 'modern-voice-cautionary)
1402       \musicA
1403     }
1404     \context Staff = "down" {
1405       #(set-accidental-style 'modern-voice-cautionary)
1406       \musicB
1407     }
1408   >>
1409 }
1410 @end lilypond
1411
1412 @item piano
1413 @funindex piano accidentals
1414
1415 This rule reflects twentieth-century practice for piano notation.
1416 Its behavior is very similar to @code{modern} style, but here
1417 accidentals also get canceled across the staves in the same
1418 GrandStaff or PianoStaff, hence all the cancellations of the final
1419 notes.
1420
1421 This accidental style applies to the current @code{GrandStaff} or
1422 @code{PianoStaff} by default.
1423
1424 @lilypond[quote,ragged-right]
1425 musicA = {
1426   <<
1427     \relative c' {
1428       cis'8 fis, d'4 <a cis>8 f bis4 |
1429       cis2. <c, g'>4 |
1430     }
1431     \\
1432     \relative c' {
1433       ais'2 cis, |
1434       fis8 b a4 cis2 |
1435     }
1436   >>
1437 }
1438
1439 musicB = {
1440   \clef bass
1441   \new Voice {
1442     \voiceTwo \relative c' {
1443       <fis, a cis>4
1444       \change Staff = up
1445       cis'
1446       \change Staff = down
1447       <fis, a>
1448       \change Staff = up
1449       dis' |
1450       \change Staff = down
1451       <fis, a cis>4 gis <f a d>2 |
1452     }
1453   }
1454 }
1455
1456 \new PianoStaff {
1457   <<
1458     \context Staff = "up" {
1459       #(set-accidental-style 'piano)
1460       \musicA
1461     }
1462     \context Staff = "down" {
1463       \musicB
1464     }
1465   >>
1466 }
1467 @end lilypond
1468
1469 @item piano-cautionary
1470 @funindex #(set-accidental-style 'piano-cautionary)
1471
1472 Same as @code{#(set-accidental-style 'piano)} but with the extra
1473 accidentals typeset as cautionaries.
1474
1475 @lilypond[quote,ragged-right]
1476 musicA = {
1477   <<
1478     \relative c' {
1479       cis'8 fis, d'4 <a cis>8 f bis4 |
1480       cis2. <c, g'>4 |
1481     }
1482     \\
1483     \relative c' {
1484       ais'2 cis, |
1485       fis8 b a4 cis2 |
1486     }
1487   >>
1488 }
1489
1490 musicB = {
1491   \clef bass
1492   \new Voice {
1493     \voiceTwo \relative c' {
1494       <fis, a cis>4
1495       \change Staff = up
1496       cis'
1497       \change Staff = down
1498       <fis, a>
1499       \change Staff = up
1500       dis' |
1501       \change Staff = down
1502       <fis, a cis>4 gis <f a d>2 |
1503     }
1504   }
1505 }
1506
1507 \new PianoStaff {
1508   <<
1509     \context Staff = "up" {
1510       #(set-accidental-style 'piano-cautionary)
1511       \musicA
1512     }
1513     \context Staff = "down" {
1514       \musicB
1515     }
1516   >>
1517 }
1518 @end lilypond
1519
1520 @item no-reset
1521 @funindex no-reset accidental style
1522
1523 This is the same as @code{default} but with accidentals lasting
1524 @q{forever} and not only within the same measure:
1525
1526 @lilypond[quote,ragged-right]
1527 musicA = {
1528   <<
1529     \relative c' {
1530       cis'8 fis, d'4 <a cis>8 f bis4 |
1531       cis2. <c, g'>4 |
1532     }
1533     \\
1534     \relative c' {
1535       ais'2 cis, |
1536       fis8 b a4 cis2 |
1537     }
1538   >>
1539 }
1540
1541 musicB = {
1542   \clef bass
1543   \new Voice {
1544     \voiceTwo \relative c' {
1545       <fis, a cis>4
1546       \change Staff = up
1547       cis'
1548       \change Staff = down
1549       <fis, a>
1550       \change Staff = up
1551       dis' |
1552       \change Staff = down
1553       <fis, a cis>4 gis <f a d>2 |
1554     }
1555   }
1556 }
1557
1558 \new PianoStaff {
1559   <<
1560     \context Staff = "up" {
1561       #(set-accidental-style 'no-reset)
1562       \musicA
1563     }
1564     \context Staff = "down" {
1565       #(set-accidental-style 'no-reset)
1566       \musicB
1567     }
1568   >>
1569 }
1570 @end lilypond
1571
1572 @item forget
1573 @funindex forget accidental style
1574
1575 This is the opposite of @code{no-reset}: Accidentals are not
1576 remembered at all -- and hence all accidentals are typeset
1577 relative to the key signature, regardless of what was before in
1578 the music:
1579
1580 @lilypond[quote,ragged-right]
1581 musicA = {
1582   <<
1583     \relative c' {
1584       cis'8 fis, d'4 <a cis>8 f bis4 |
1585       cis2. <c, g'>4 |
1586     }
1587     \\
1588     \relative c' {
1589       ais'2 cis, |
1590       fis8 b a4 cis2 |
1591     }
1592   >>
1593 }
1594
1595 musicB = {
1596   \clef bass
1597   \new Voice {
1598     \voiceTwo \relative c' {
1599       <fis, a cis>4
1600       \change Staff = up
1601       cis'
1602       \change Staff = down
1603       <fis, a>
1604       \change Staff = up
1605       dis' |
1606       \change Staff = down
1607       <fis, a cis>4 gis <f a d>2 |
1608     }
1609   }
1610 }
1611
1612 \new PianoStaff {
1613   <<
1614     \context Staff = "up" {
1615       #(set-accidental-style 'forget)
1616       \musicA
1617     }
1618     \context Staff = "down" {
1619       #(set-accidental-style 'forget)
1620       \musicB
1621     }
1622   >>
1623 }
1624 @end lilypond
1625 @end table
1626
1627 @commonprop
1628
1629 @lilypondfile[verbatim,lilyquote,ragged-right,texidoc]
1630 {dodecaphonic-style-accidentals-for-each-note-including-naturals.ly}
1631
1632
1633 @seealso
1634
1635 Snippets: @lsrdir{Pitches,Pitches}.
1636
1637 Internals Reference: @internalsref{Accidental_engraver},
1638 @internalsref{Accidental}, @internalsref{AccidentalSuggestion},
1639 @internalsref{AccidentalPlacement}, @internalsref{GrandStaff} and
1640 @internalsref{PianoStaff}, @internalsref{Staff}.
1641
1642
1643 @refbugs
1644
1645 Simultaneous notes are considered to be entered in sequential
1646 mode.  This means that in a chord the accidentals are typeset as
1647 if the notes in the chord happen one at a time, in the order in
1648 which they appear in the input file.  This is a problem when
1649 accidentals in a chord depend on each other, which does not happen
1650 for the default accidental style.  The problem can be solved by
1651 manually inserting@tie{}@code{!} and@tie{}@code{?} for the
1652 problematic notes.
1653
1654
1655 @node Ambitus
1656 @subsubsection Ambitus
1657 @cindex ambitus
1658
1659 The term @notation{ambitus} or @notation{ambit} denotes a range of
1660 pitches for a given voice in a part of music.  It may also denote
1661 the pitch range that a musical instrument is capable of playing.
1662 Ambits are printed on vocal parts so that performers can easily
1663 determine if it matches their capabilities.
1664
1665 Ambits are denoted at the beginning of a piece near the initial
1666 clef.  The range is graphically specified by two note heads that
1667 represent the lowest and highest pitches.  Accidentals are only
1668 printed if they are not part of the key signature.
1669
1670 @lilypond[verbatim,quote,ragged-right]
1671 \layout {
1672   \context {
1673     \Voice
1674     \consists Ambitus_engraver
1675   }
1676 }
1677
1678 \relative c'' {
1679   aes c e2 cis,2
1680 }
1681 @end lilypond
1682
1683
1684 @commonprop
1685
1686 @lilypondfile[verbatim,lilyquote,ragged-right,texidoc]
1687 {adding-ambiti-per-voice.ly}
1688
1689 @lilypondfile[verbatim,lilyquote,ragged-right,texidoc]
1690 {ambiti-multiple-voices.ly}
1691
1692
1693 @seealso
1694
1695 Snippets: @lsrdir{Pitches,Pitches}.
1696
1697 Internals Reference: @internalsref{Ambitus},
1698 @internalsref{AmbitusLine}, @internalsref{AmbitusNoteHead},
1699 @internalsref{AmbitusAccidental}, @internalsref{Ambitus_engraver},
1700 @internalsref{Staff}, @internalsref{Voice}.
1701
1702
1703 @refbugs
1704
1705 There is no collision handling in the case of multiple per-voice
1706 ambitus.
1707
1708
1709 @node Note heads
1710 @subsection Note heads
1711
1712 @menu
1713 * Special note heads::          
1714 * Easy notation note heads::    
1715 * Shape note heads::            
1716 * Improvisation::               
1717 @end menu
1718
1719 @node Special note heads
1720 @subsubsection Special note heads
1721
1722 @cindex note heads, special
1723
1724 Different note heads are used by various instruments for various
1725 meanings -- crosses are used for @q{parlato} with vocalists,
1726 stopped notes on guitar; diamonds are used for harmonics on string
1727 instruments, etc.  There is a shorthand (@code{\harmonic}) for
1728 diamond shapes; the other note head styles are produced by
1729 tweaking the property:
1730
1731 @lilypond[verbatim,quote,ragged-right,fragment,relative=1]
1732 c4 d
1733 \override NoteHead #'style = #'cross
1734 e f
1735 \revert NoteHead #'style
1736 e d <c f\harmonic> <d a'\harmonic>
1737 @end lilypond
1738
1739 @noindent
1740 To see all note head styles, see @ref{Note head styles}.
1741
1742
1743 @seealso
1744
1745 Snippets: @lsrdir{Pitches,Pitches}.
1746
1747 Notation Reference: @ref{Note head styles}.
1748
1749 Internals Reference: @internalsref{NoteHead},
1750 @internalsref{LedgerLineSpanner}.
1751
1752
1753 @node Easy notation note heads
1754 @subsubsection Easy notation note heads
1755
1756 @cindex note heads, practice
1757 @cindex note heads, easy notation
1758 @cindex easy notation
1759 @cindex Hal Leonard
1760
1761 The @q{easy play} note head includes a note name inside the head.
1762 It is used in music for beginners.
1763
1764 @lilypond[verbatim,quote,ragged-right]
1765 #(set-global-staff-size 26)
1766 \relative c' {
1767   \easyHeadsOn
1768   c2 e4 f
1769   g1
1770   \easyHeadsOff
1771   c,1
1772 }
1773 @end lilypond
1774
1775 The command @code{\easyHeadsOn} overrides settings for the
1776 @code{NoteHead} object.  These settings can be reverted with the command
1777 @code{\easyHeadsOff}. To make the letters readable, it has to be printed
1778 in a large font size.  To print with a larger font, see @ref{Setting the
1779 staff size}.
1780
1781 @refcommands
1782
1783 @funindex \easyHeadsOn
1784 @funindex \easyHeadsOff
1785 @code{\easyHeadsOn}, @code{\easyHeadsOff}
1786
1787 @seealso
1788
1789 Notation Reference: @ref{Setting the staff size}.
1790
1791 Snippets: @lsrdir{Pitches,Pitches},
1792
1793 Internals Reference: @internalsref{NoteHead}.
1794
1795
1796 @node Shape note heads
1797 @subsubsection Shape note heads
1798
1799 @cindex note heads, shape
1800 @funindex \key
1801 @funindex shapeNoteStyles
1802 @funindex \aikenHeads
1803 @funindex \sacredHarpHeads
1804
1805 In shape note head notation, the shape of the note head
1806 corresponds to the harmonic function of a note in the scale.  This
1807 notation was popular in nineteenth-century American song books.
1808
1809 Shape note heads can be produced by setting @code{\aikenHeads} or
1810 @code{\sacredHarpHeads}, depending on the style desired.
1811
1812 @lilypond[verbatim,fragment,quote,ragged-right,relative=1]
1813 \aikenHeads
1814 c8 d4 e8 a2 g1
1815 \sacredHarpHeads
1816 c,8 d4 e8 a2 g1
1817 @end lilypond
1818
1819 Shapes are typeset according to the step in the scale, where
1820 the base of the scale is determined by the @code{\key} command.
1821
1822 @commonprop
1823
1824 @lilypondfile[verbatim,lilyquote,ragged-right,texidoc]
1825 {applying-noteheads-styles-depending-on-the-step-of-the-scale.ly}
1826
1827
1828 @seealso
1829
1830 Snippets: @lsrdir{Pitches,Pitches}.
1831
1832
1833 @node Improvisation
1834 @subsubsection Improvisation
1835
1836 @cindex improvisation
1837 @cindex slashed note heads
1838 @cindex note heads, improvisation
1839 @cindex note heads, slashed
1840
1841 Improvisation is sometimes denoted with slashed note heads, where
1842 the performer may choose any pitch but should play the specified
1843 rhythm.  Such note heads can be created:
1844
1845 @lilypond[verbatim,quote,ragged-right]
1846 \new Voice \with {
1847   \consists Pitch_squash_engraver
1848 } \transpose c c' {
1849   e8 e g a a16( bes) a8 g
1850   \improvisationOn
1851   e8
1852   ~e2~e8 f4 fis8
1853   ~fis2
1854   \improvisationOff
1855   a16(bes) a8 g e
1856 }
1857 @end lilypond
1858
1859
1860 @refcommands
1861
1862 @funindex \improvisationOn
1863 @funindex \improvisationOff
1864
1865 @code{\improvisationOn}, @code{\improvisationOff}
1866
1867 @seealso
1868
1869 Snippets: @lsrdir{Pitches,Pitches}.
1870
1871 Internals Reference: @internalsref{Pitch_squash_engraver},
1872 @internalsref{Voice}.
1873
1874