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