]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/user/expressive.itely
Merge branch 'master' into lilypond/translation
[lilypond.git] / Documentation / user / expressive.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 @c \version "2.11.51"
10
11 @node Expressive marks
12 @section Expressive marks
13
14 @lilypondfile[quote]{expressive-headword.ly}
15
16 This section lists various expressive marks that can be
17 created in a score.
18
19 @menu
20 * Attached to notes::           
21 * Curves::                      
22 * Lines::                       
23 @end menu
24
25
26 @node Attached to notes
27 @subsection Attached to notes
28
29 This section explains how to create expressive marks that are
30 attached to notes: articulations, ornamentations, and dynamics.
31 Methods to create new dynamic markings are also discussed.
32
33 @menu
34 * Articulations and ornamentations::  
35 * Dynamics::                    
36 * New dynamic marks::           
37 @end menu
38
39 @node Articulations and ornamentations
40 @unnumberedsubsubsec Articulations and ornamentations
41
42 @cindex articulations
43 @cindex scripts
44 @cindex ornaments
45 @cindex espressivo
46 @cindex fermata
47 @cindex upbow
48 @cindex downbow
49 @cindex foot marks
50 @cindex organ pedal marks
51 @cindex turn
52 @cindex open
53 @cindex stopped
54 @cindex flageolet
55 @cindex reverseturn
56 @cindex trill
57 @cindex prall
58 @cindex mordent
59 @cindex prallprall
60 @cindex prallmordent
61 @cindex prall, up
62 @cindex prall, down
63 @cindex thumb marking
64 @cindex segno
65 @cindex coda
66 @cindex varcoda
67
68 A variety of symbols that denote articulations, ornamentations,
69 and other performance indications can be attached to a note using
70 this syntax:
71
72 @example
73 @var{note}\@var{name}
74 @end example
75
76 The possible values for @var{name} are listed in @ref{List of
77 articulations}.  For example:
78
79 @lilypond[verbatim,quote,relative=2]
80 c4\staccato c\mordent b2\turn
81 c1\fermata
82 @end lilypond
83
84 @cindex marcato
85 @cindex stopped
86 @cindex tenuto
87 @cindex staccatissimo
88 @cindex accent
89 @cindex staccato
90 @cindex portato
91
92 Some of these articulations have shorthands for easier entry.
93 Shorthands are appended to the note name, and their syntax
94 consists of a dash @code{-} followed by a symbol signifying the
95 articulation.  Predefined shorthands exist for @notation{marcato},
96 @notation{stopped}, @notation{tenuto}, @notation{staccatissimo},
97 @notation{accent}, @notation{staccato}, and @notation{portato}.
98 Their corresponding output appears as follows:
99
100 @lilypond[verbatim,quote,relative=2]
101 c4-^  c-+  c--  c-|
102 c4->  c-.  c2-_
103 @end lilypond
104
105 The rules for the default placement of articulations are defined
106 in @file{scm/@/script@/.scm}.  Articulations and ornamentations
107 may be manually placed above or below the staff, see
108 @ref{Direction and placement}.
109
110
111 @snippets
112
113 @lilypondfile[verbatim,lilyquote,texidoc,doctitle]
114 {modifying-default-values-for-articulation-shorthand-notation.ly}
115
116 @lilypondfile[verbatim,lilyquote,texidoc,doctitle]
117 {controlling-the-vertical-ordering-of-scripts.ly}
118
119
120 @seealso
121
122 Music Glossary:
123 @rglos{tenuto},
124 @rglos{accent},
125 @rglos{staccato},
126 @rglos{portato}.
127
128 Notation Reference:
129 @ref{Direction and placement},
130 @ref{List of articulations}.
131
132 Installed Files:
133 @file{scm/@/script@/.scm}.
134
135 Snippets:
136 @rlsr{Expressive marks}.
137
138 Internals Reference:
139 @rinternals{Script},
140 @rinternals{TextScript}.
141
142
143 @node Dynamics
144 @unnumberedsubsubsec Dynamics
145
146 @cindex absolute dynamics
147 @cindex dynamics
148 @cindex dynamics, absolute
149 @funindex \ppppp
150 @funindex \pppp
151 @funindex \ppp
152 @funindex \pp
153 @funindex \p
154 @funindex \mp
155 @funindex \mf
156 @funindex \f
157 @funindex \ff
158 @funindex \fff
159 @funindex \ffff
160 @funindex \fp
161 @funindex \sf
162 @funindex \sff
163 @funindex \sp
164 @funindex \spp
165 @funindex \sfz
166 @funindex \rfz
167
168 Absolute dynamic marks are specified using a command after a note,
169 such as @code{c4\ff}.  The available dynamic marks are
170 @code{\ppppp}, @code{\pppp}, @code{\ppp}, @code{\pp}, @code{\p},
171 @code{\mp}, @code{\mf}, @code{\f}, @code{\ff}, @code{\fff},
172 @code{\ffff}, @code{\fp}, @code{\sf}, @code{\sff}, @code{\sp},
173 @code{\spp}, @code{\sfz}, and @code{\rfz}.  The dynamic marks may
174 be manually placed above or below the staff, see 
175 @ref{Direction and placement}.
176
177 @lilypond[verbatim,quote,relative=2]
178 c2\ppp c\mp
179 c2\rfz c^\mf
180 c2_\spp c^\ff
181 @end lilypond
182
183 @cindex hairpin
184 @funindex \<
185 @funindex \>
186 @funindex \!
187 @funindex \cr
188 @funindex \decr
189
190 A @notation{crescendo} mark is started with @code{\<} and
191 terminated with @code{\!}, an absolute dynamic, or an additional
192 crescendo or decrescendo mark.  A @notation{decrescendo} mark is
193 started with @code{\>} and is also terminated with @code{\!}, an
194 absolute dynamic, or another crescendo or decrescendo mark.
195 @code{\cr} and @code{\decr} may be used instead of @code{\<} and
196 @code{\>}.  @notation{Hairpins} are engraved by default using this
197 notation.
198
199 @lilypond[verbatim,quote,relative=2]
200 c2\< c\!
201 d2\< d\f
202 e2\< e\>
203 f2\> f\!
204 e2\> e\mp
205 d2\> d\>
206 c1\!
207 @end lilypond
208
209 Spacer rests are needed to engrave multiple marks on one note.
210
211 @lilypond[verbatim,quote,relative=2]
212 c4\< c\! d\> e\!
213 << f1 { s4 s4\< s4\> s4\! } >>
214 @end lilypond
215
216 @cindex espressivo articulation
217
218 In some situations the @code{\espressivo} articulation mark may be
219 the appropriate choice to indicate a crescendo and decrescendo on
220 one note:
221
222 @lilypond[verbatim,quote,relative=2]
223 c2 b4 a
224 g1\espressivo
225 @end lilypond
226
227 @cindex crescendo
228 @cindex decrescendo
229 @cindex diminuendo
230
231 Crescendos and decrescendos can be engraved as textual markings
232 instead of hairpins.  Dashed lines are printed to indicate their
233 extent.  The built-in commands that enable these text modes are
234 @code{\crescTextCresc}, @code{\dimTextDecresc},
235 @code{\dimTextDecr}, and @code{\dimTextDim}.  The corresponding
236 @code{\crescHairpin} and @code{\dimHairpin} commands will revert
237 to hairpins again:
238
239 @lilypond[verbatim,quote,relative=2]
240 \crescTextCresc
241 c2\< d | e f\!
242 \dimTextDecresc
243 e2\> d | c b\!
244 \crescHairpin
245 c2\< d | e f\!
246 \dimHairpin
247 e2\> d\!
248 @end lilypond
249
250 To create new absolute dynamic marks or text that should be
251 aligned with dynamics, see @ref{New dynamic marks}.
252
253 Vertical positioning of dynamics is handled by
254 @rinternals{DynamicLineSpanner}.
255
256
257 @predefined
258
259 @funindex \dynamicUp
260 @code{\dynamicUp},
261 @funindex \dynamicDown
262 @code{\dynamicDown},
263 @funindex \dynamicNeutral
264 @code{\dynamicNeutral},
265 @funindex \crescTextCresc
266 @code{\crescTextCresc},
267 @funindex \dimTextDim
268 @code{\dimTextDim},
269 @funindex \dimTextDecr
270 @code{\dimTextDecr},
271 @funindex \dimTextDecresc
272 @code{\dimTextDecresc},
273 @funindex \crescHairpin
274 @code{\crescHairpin},
275 @funindex \dimHairpin
276 @code{\dimHairpin}.
277
278
279 @snippets
280
281 @lilypondfile[verbatim,lilyquote,texidoc,doctitle]
282 {setting-hairpin-behavior-at-bar-lines.ly}
283
284 @lilypondfile[verbatim,lilyquote,texidoc,doctitle]
285 {setting-the-minimum-length-of-hairpins.ly}
286
287 @cindex al niente
288 @cindex niente, al
289
290 @lilypondfile[verbatim,lilyquote,texidoc,doctitle]
291 {printing-hairpins-using-al-niente-notation.ly}
292
293 @lilypondfile[verbatim,lilyquote,texidoc,doctitle]
294 {vertically-aligned-dynamics-and-textscripts.ly}
295
296 @lilypondfile[verbatim,lilyquote,texidoc,doctitle]
297 {hiding-the-extender-line-for-text-dynamics.ly}
298
299 @lilypondfile[verbatim,lilyquote,texidoc,doctitle]
300 {changing-text-and-spanner-styles-for-text-dynamics.ly}
301
302
303 @seealso
304
305 @c TODO: Add hairpin to glossary.
306
307 Music Glossary:
308 @rglos{crescendo},
309 @rglos{decrescendo}.
310
311 Learning Manual:
312 @rlearning{Articulation and dynamics}.
313
314 Notation Reference:
315 @ref{Direction and placement},
316 @ref{New dynamic marks}.
317
318 Snippets:
319 @rlsr{Expressive marks}.
320
321 Internals Reference:
322 @rinternals{DynamicText},
323 @rinternals{Hairpin},
324 @rinternals{DynamicLineSpanner}.
325
326
327 @node New dynamic marks
328 @unnumberedsubsubsec New dynamic marks
329
330 @cindex new dynamic marks
331 @cindex dynamic marks, new
332
333 The easiest way to create dynamic indications is to use
334 @code{\markup} objects.
335
336 @lilypond[verbatim,quote]
337 moltoF = \markup { molto \dynamic f }
338
339 \relative c' {
340   <d e>16_\moltoF <d e>
341   <d e>2..
342 }
343 @end lilypond
344
345 @cindex dynamics, editorial
346 @cindex dynamics, parenthesis
347
348 In markup mode, editorial dynamics (within parentheses or square
349 brackets) can be created.  The syntax for markup mode is described
350 in @ref{Formatting text}.
351
352 @lilypond[verbatim,quote]
353 roundf = \markup { \center-align { \line { \bold { \italic ( }
354          \dynamic f \bold { \italic ) } } } }
355 boxf = \markup { \bracket { \dynamic f } }
356 \relative c' {
357   c1_\roundf
358   c1_\boxf
359 }
360 @end lilypond
361
362 By default, markup objects are aligned to the left side of a note
363 head, but authentic dynamic marks are always centered on the note
364 head.  New, centered dynamic marks can be created using the
365 following function:
366
367 @cindex make-dynamic-script
368
369 @lilypond[verbatim,quote]
370 sfzp = #(make-dynamic-script "sfzp")
371 \relative c' {
372   c4 c c\sfzp c
373 }
374 @end lilypond
375
376 @noindent
377 The dynamic font only contains the characters @code{f,m,p,r,s} and
378 @code{z}.  In order to use other font families, it is necessary to
379 use markup mode in its Scheme form, as explained in
380 @ref{Markup construction in Scheme}.
381
382 @lilypond[verbatim,quote]
383 moltoF = #(make-dynamic-script (markup 
384                       #:normal-text "molto"
385                       #:dynamic "f"))
386 \relative c' {
387   <d e>16 <d e>
388   <d e>2..\moltoF
389 }
390 @end lilypond
391
392 @noindent
393 Font settings in markup mode are described in
394 @ref{Common markup commands}.
395
396
397 @seealso
398
399 Notation Reference:
400 @ref{Formatting text},
401 @ref{Common markup commands},
402 @ref{Markup construction in Scheme}.
403
404 Snippets:
405 @rlsr{Expressive marks}.
406
407
408 @node Curves
409 @subsection Curves
410
411 This section explains how to create various expressive marks that
412 are curved: normal slurs, phrasing slurs, breath marks, falls, and
413 doits.
414
415 @menu
416 * Slurs::                       
417 * Phrasing slurs::              
418 * Breath marks::                
419 * Falls and doits::             
420 @end menu
421
422 @node Slurs
423 @unnumberedsubsubsec Slurs
424
425 @cindex slurs
426
427 @notation{Slurs} are entered using parentheses:
428
429 @lilypond[verbatim,quote,relative=2]
430 f4( g a) a8 b(
431 a4 g2 f4)
432 <c e>2( <b d>2)
433 @end lilypond
434
435 Slurs may be manually placed above or below the notes, see
436 @ref{Direction and placement}.
437
438 @lilypond[verbatim,quote,relative=2]
439 c2( d)
440 \slurDown
441 c2( d)
442 \slurNeutral
443 c2( d)
444 @end lilypond
445
446 Phrasing slurs must be used to print more than one slur at once.
447 For details, see @ref{Phrasing slurs}.
448
449 Slurs can be solid, dotted, or dashed.  Solid is the default slur
450 style:
451
452 @lilypond[verbatim,quote,relative=1]
453 c4( e g2)
454 \slurDashed
455 g4( e c2)
456 \slurDotted
457 c4( e g2)
458 \slurSolid
459 g4( e c2)
460 @end lilypond
461
462
463 @predefined
464
465 @funindex \slurUp
466 @code{\slurUp},
467 @funindex \slurDown
468 @code{\slurDown},
469 @funindex \slurNeutral
470 @code{\slurNeutral},
471 @funindex \slurDashed
472 @code{\slurDashed},
473 @funindex \slurDotted
474 @code{\slurDotted},
475 @funindex \slurSolid
476 @code{\slurSolid}.
477
478
479 @snippets
480
481 @lilypondfile[verbatim,lilyquote,texidoc,doctitle]
482 {using-double-slurs-for-legato-chords.ly}
483
484
485 @seealso
486
487 Music Glossary:
488 @rglos{slur}.
489
490 Notation Reference:
491 @ref{Direction and placement},
492 @ref{Phrasing slurs}.
493
494 Snippets:
495 @rlsr{Expressive marks}.
496
497 Internals Reference:
498 @rinternals{Slur}.
499
500
501 @node Phrasing slurs
502 @unnumberedsubsubsec Phrasing slurs
503
504 @cindex phrasing slurs
505 @cindex phrasing marks
506 @funindex \(
507 @funindex \)
508
509 @notation{Phrasing slurs} (or phrasing marks) that indicate a
510 musical sentence are written using the commands @code{\(} and
511 @code{\)} respectively:
512
513 @lilypond[verbatim,quote,relative=2]
514 c4\( d( e) f(
515 e2) d\)
516 @end lilypond
517
518 Typographically, a phrasing slur behaves almost exactly like a
519 normal slur.  However, they are treated as different objects; a
520 @code{\slurUp} will have no effect on a phrasing slur.  Phrasing
521 slurs may be manually placed above or below the notes, see
522 @ref{Direction and placement}.
523
524 @lilypond[verbatim,quote,relative=1]
525 c4\( g' c,( b) | c1\)
526 \phrasingSlurUp
527 c4\( g' c,( b) | c1\)
528 @end lilypond
529
530 Simultaneous phrasing slurs are not permitted.
531
532
533 @predefined
534
535 @funindex \phrasingSlurUp
536 @code{\phrasingSlurUp},
537 @funindex \phrasingSlurDown
538 @code{\phrasingSlurDown},
539 @funindex \phrasingSlurNeutral
540 @code{\phrasingSlurNeutral}.
541
542
543 @seealso
544
545 Notation Reference:
546 @ref{Direction and placement}.
547
548 Snippets:
549 @rlsr{Expressive marks}.
550
551 Internals Reference:
552 @rinternals{PhrasingSlur}.
553
554
555 @node Breath marks
556 @unnumberedsubsubsec Breath marks
557
558 @cindex breath marks
559 @funindex \breathe
560
561 Breath marks are entered using @code{\breathe}:
562
563 @lilypond[verbatim,quote,relative=2]
564 c2. \breathe d4
565 @end lilypond
566
567 Musical indicators for breath marks in ancient notation,
568 divisiones, are supported.  For details, see @ref{Divisiones}.
569
570
571 @snippets
572
573 @lilypondfile[verbatim,lilyquote,texidoc,doctitle]
574 {changing-the-breath-mark-symbol.ly}
575
576 @cindex caesura
577 @cindex railroad tracks
578
579 @lilypondfile[verbatim,lilyquote,texidoc,doctitle]
580 {inserting-a-caesura.ly}
581
582
583 @seealso
584
585 Notation Reference:
586 @ref{Divisiones}.
587
588 Snippets:
589 @rlsr{Expressive marks}.
590 @c @lsr{expressive,breathing-sign.ly}.
591
592 Internals Reference:
593 @rinternals{BreathingSign}.
594
595
596 @node Falls and doits
597 @unnumberedsubsubsec Falls and doits
598
599 @cindex falls
600 @cindex doits
601 @funindex \bendAfter
602
603 @notation{Falls} and @notation{doits} can be added to notes using
604 the @code{\bendAfter} command.  The direction of the fall or doit
605 is indicated with a plus or minus (up or down).  The number
606 indicates the pitch interval that the fall or doit will extend
607 @emph{beyond} the main note.
608
609 @lilypond[verbatim,quote,relative=2]
610 c2-\bendAfter #+4
611 c2-\bendAfter #-4
612 c2-\bendAfter #+8
613 c2-\bendAfter #-8
614 @end lilypond
615
616 The dash @code{-} immediately preceding the @code{\bendAfter}
617 command is @emph{required} when writing falls and doits.
618
619
620 @snippets
621
622 @lilypondfile[verbatim,lilyquote,texidoc,doctitle]
623 {adjusting-the-shape-of-falls-and-doits.ly}
624
625
626 @seealso
627
628 @c TODO: add falls and doits to glossary.
629 @c Music Glossary:
630 @c @rglos{falls},
631 @c @rglos{doits}.
632
633 Snippets:
634 @rlsr{Expressive marks}.
635
636
637 @node Lines
638 @subsection Lines
639
640 This section explains how to create various expressive marks that
641 follow a linear path: glissandos, arpeggios, and trills.
642
643 @menu
644 * Glissando::                   
645 * Arpeggio::                    
646 * Trills::                      
647 @end menu
648
649 @node Glissando
650 @unnumberedsubsubsec Glissando
651
652 @cindex glissando
653 @funindex \glissando
654
655 A @notation{glissando} is created by attaching @code{\glissando}
656 to a note:
657
658 @lilypond[verbatim,quote,relative=2]
659 g2\glissando g'
660 c2\glissando c,
661 @end lilypond
662
663 Different styles of glissandi can be created.  For details, see
664 @ref{Line styles}.
665
666 @snippets
667
668 @lilypondfile[verbatim,lilyquote,texidoc,doctitle]
669 {contemporary-glissando.ly}
670
671
672 @seealso
673
674 Music Glossary:
675 @rglos{glissando}.
676
677 Notation Reference:
678 @ref{Line styles}.
679
680 Snippets:
681 @rlsr{Expressive marks}.
682
683 @c FIXME: I need to figure out what's up with these.  -gp
684 @c @lsr{expressive,glissando.ly},
685 @c @lsr{expressive,line-styles.ly}
686
687 Internals Reference:
688 @rinternals{Glissando}.
689
690
691 @knownissues
692
693 Printing text over the line (such as @emph{gliss.}) is not
694 supported.
695
696
697 @node Arpeggio
698 @unnumberedsubsubsec Arpeggio
699
700 @cindex arpeggio
701 @cindex broken chord
702 @cindex chord, broken
703
704 An @notation{arpeggio} on a chord (also known as a broken chord)
705 is denoted by appending @code{\arpeggio} to the chord construct:
706
707 @lilypond[verbatim,quote,relative=1]
708 <c e g c>1\arpeggio
709 @end lilypond
710
711 Different types of arpeggios may be written.
712 @code{\arpeggioNormal} reverts to a normal arpeggio:
713
714 @lilypond[verbatim,quote,relative=1]
715 <c e g c>2\arpeggio
716 \arpeggioArrowUp
717 <c e g c>2\arpeggio
718 \arpeggioArrowDown
719 <c e g c>2\arpeggio
720 \arpeggioNormal
721 <c e g c>2\arpeggio
722 @end lilypond
723
724 Special @emph{bracketed} arpeggio symbols can be created:
725
726 @lilypond[verbatim,quote,relative=1]
727 <c e g c>2
728 \arpeggioBracket
729 <c e g c>2\arpeggio
730 \arpeggioParenthesis
731 <c e g c>2\arpeggio
732 \arpeggioNormal
733 <c e g c>2\arpeggio
734 @end lilypond
735
736 Arpeggios can be explicitly written out with ties.  For more
737 information, see @ref{Ties}.
738
739 @predefined
740
741 @funindex \arpeggio
742 @code{\arpeggio},
743 @funindex \arpeggioArrowUp
744 @code{\arpeggioArrowUp},
745 @funindex \arpeggioArrowDown
746 @code{\arpeggioArrowDown},
747 @funindex \arpeggioNormal
748 @code{\arpeggioNormal},
749 @funindex \arpeggioBracket
750 @code{\arpeggioBracket},
751 @funindex \arpeggioParenthesis
752 @code{\arpeggioParenthesis}.
753
754
755 @snippets
756
757 @lilypondfile[verbatim,lilyquote,texidoc,doctitle]
758 {creating-cross-staff-arpeggios-in-a-piano-staff.ly}
759
760 @lilypondfile[verbatim,lilyquote,texidoc,doctitle]
761 {creating-cross-staff-arpeggios-in-other-contexts.ly}
762
763 @lilypondfile[verbatim,lilyquote,texidoc,doctitle]
764 {creating-arpeggios-across-notes-in-different-voices.ly}
765
766
767 @seealso
768
769 Music Glossary:
770 @rglos{arpeggio}.
771
772 Notation Reference:
773 @ref{Ties}.
774
775 Snippets:
776 @rlsr{Expressive marks}.
777
778 Internals Reference:
779 @rinternals{Arpeggio},
780 @rinternals{PianoStaff}.
781
782
783 @knownissues
784
785 It is not possible to mix connected arpeggios and unconnected
786 arpeggios in one @code{PianoStaff} at the same point in
787 time.
788
789 The parenthesis-style arpeggio brackets do not work for
790 cross-staff arpeggios.
791
792
793 @node Trills
794 @unnumberedsubsubsec Trills
795
796 @cindex trills
797 @funindex \trill
798
799 Short @notation{trills} without an extender line are printed with
800 @code{\trill}; see @ref{Articulations and ornamentations}.
801
802 Longer trills with an extender line are made with
803 @code{\startTrillSpan} and @code{\stopTrillSpan}.  In the
804 following example, the trill is combined with grace notes.  To
805 achieve precise control over the placement of the grace notes, see
806 @ref{Grace notes}.
807
808 @lilypond[verbatim,quote,relative=2]
809 c1 \afterGrace
810 d1\startTrillSpan { c32[ d]\stopTrillSpan }
811 e2 r2
812 @end lilypond
813
814 @cindex pitched trills
815 @cindex trills, pitched
816
817 Trills that require an auxiliary note with an explicit pitch can
818 be typeset with the @code{\pitchedTrill} command.  The first
819 argument is the main note, and the second is the @emph{trilled}
820 note, printed as a stemless note head in parentheses.
821
822 @c This syntax example doesn't look nice. -pm
823
824 @c @example
825 @c @code{\pitchedTrill} @var{mainnote} @code{\startTrillSpan}
826 @c @var{trillnote} @var{endnote} @code{\stopTrillSpan}
827 @c @end example
828
829 @lilypond[verbatim,quote,relative=1]
830 \pitchedTrill e2\startTrillSpan fis
831 d\stopTrillSpan
832 @end lilypond
833
834 In the following example, the second pitched trill is ambiguous;
835 the accidental of the trilled note is not printed.  As a
836 workaround, the accidentals of the trilled notes can be forced.
837 The second measure illustrates this method:
838
839 @lilypond[verbatim,quote,relative=2]
840 \pitchedTrill eis4\startTrillSpan fis
841 g\stopTrillSpan
842 \pitchedTrill eis4\startTrillSpan fis
843 g\stopTrillSpan
844 \pitchedTrill eis4\startTrillSpan fis
845 g\stopTrillSpan
846 \pitchedTrill eis4\startTrillSpan fis!
847 g\stopTrillSpan
848 @end lilypond
849
850
851 @predefined
852
853 @funindex \startTrillSpan
854 @code{\startTrillSpan},
855 @funindex \stopTrillSpan
856 @code{\stopTrillSpan}.
857
858
859 @seealso
860
861 Music Glossary:
862 @rglos{trill}.
863
864 Notation Reference:
865 @ref{Articulations and ornamentations},
866 @ref{Grace notes}.
867
868 Snippets:
869 @rlsr{Expressive marks}.
870
871 Internals Reference:
872 @rinternals{TrillSpanner}.