]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/notation/unfretted-strings.itely
Imported Upstream version 2.19.45
[lilypond.git] / Documentation / notation / unfretted-strings.itely
1 @c -*- coding: utf-8; mode: texinfo; -*-
2 @ignore
3     Translation of GIT committish: FILL-IN-HEAD-COMMITTISH
4
5     When revising a translation, copy the HEAD committish of the
6     version that you are working on.  For details, see the Contributors'
7     Guide, node Updating translation committishes..
8 @end ignore
9
10 @c \version "2.18.0"
11
12 @node Unfretted string instruments
13 @section Unfretted string instruments
14
15 @lilypondfile[quote]
16 {unfretted-headword.ly}
17
18 @cindex orchestral strings
19 @cindex strings, orchestral
20 @cindex strings, writing for
21
22 This section provides information and references which are helpful
23 when writing for unfretted string instruments, principally
24 orchestral strings.
25
26 @menu
27 * Common notation for unfretted strings::
28 @end menu
29
30 @node Common notation for unfretted strings
31 @subsection Common notation for unfretted strings
32
33 There is little specialist notation for unfretted string
34 instruments.  The music is notated on a single staff, and
35 usually only a single voice is required.  Two voices might
36 be required for some double-stopped or divisi passages.
37
38 @menu
39 * References for unfretted strings::
40 * Bowing indications::
41 * Harmonics::
42 * Snap (Bartok) pizzicato::
43 @end menu
44
45 @node References for unfretted strings
46 @unnumberedsubsubsec References for unfretted strings
47
48 Most of the notation which is useful for orchestral strings
49 and other bowed instruments is covered elsewhere:
50
51 @itemize
52
53 @item Textual indications such as @qq{pizz.} and @qq{arco} are
54 added as simple text -- see @ref{Text scripts}.
55
56 @item Fingerings, including the thumb indication, are described
57 in @ref{Fingering instructions}.
58
59 @item Double stopping is normally indicated by writing a chord,
60 see @ref{Chorded notes}.  Directives for playing chords may be
61 added, see @ref{Arpeggio}.
62
63 @item Templates for string quartets can be found in
64 @rlearning{String quartet templates}.  Others are shown in the snippets.
65
66 @end itemize
67
68 @seealso
69 Learning Manual:
70 @rlearning{String quartet templates}.
71
72 Notation Reference:
73 @ref{Text scripts},
74 @ref{Fingering instructions},
75 @ref{Chorded notes},
76 @ref{Arpeggio}.
77
78 Snippets:
79 @rlsr{Unfretted strings}.
80
81
82 @node Bowing indications
83 @unnumberedsubsubsec Bowing indications
84
85 @funindex \upbow
86 @funindex \downbow
87 @funindex \open
88 @funindex \romanStringNumbers
89
90 @cindex bowing indications
91 @cindex up bow indication
92 @cindex down bow indication
93 @cindex open string indication
94 @cindex string, indicating open
95 @cindex string numbers
96
97 Bowing indications are created as articulations, which are
98 described in @ref{Articulations and ornamentations}.
99
100 The bowing commands, @code{\upbow} and @code{\downbow}, are used
101 with slurs as follows:
102
103 @lilypond[verbatim,quote]
104 \relative { c''4(\downbow d) e(\upbow f) }
105 @end lilypond
106
107 @noindent
108
109 Roman numerals can be added as strings numbers (rather
110 than the default circled Arabic numbers), as explained in
111 @ref{String number indications}.
112
113 Alternatively, string indications may be printed using
114 markup commands; articulation scripts may also indicate
115 open strings.
116
117 @lilypond[verbatim,quote,fragment]
118 a'4 \open
119 \romanStringNumbers
120 a'\2
121 a'2^\markup { \small "sul A" }
122 @end lilypond
123
124
125 @predefined
126 @code{\downbow},
127 @code{\upbow},
128 @code{\open},
129 @code{\romanStringNumbers}.
130 @endpredefined
131
132 @seealso
133 Notation Reference:
134 @ref{Articulations and ornamentations},
135 @ref{String number indications},
136 @ref{Slurs}.
137
138
139 @node Harmonics
140 @unnumberedsubsubsec Harmonics
141
142 @funindex \harmonic
143
144 @strong{@i{Natural harmonics}}
145
146 @cindex note heads, diamond-shaped
147 @cindex diamond-shaped note heads
148 @cindex natural harmonics
149 @cindex harmonics, natural
150 @funindex \harmonicsOn
151 @funindex \harmonicsOff
152
153 Natural harmonics can be notated in several ways.  A diamond-shaped
154 note head generally means to touch the string where you would stop
155 the note if it were not a diamond.
156
157 @lilypond[verbatim,quote]
158 \relative d'' {
159   d4 e4.
160   \harmonicsOn
161   d8 e e
162   d4 e4.
163   \harmonicsOff
164   d8 e e
165 }
166 @end lilypond
167
168 Alternatively a normal note head is shown at the pitch to be
169 sounded together with a small circle to indicate it should be
170 played as a harmonic:
171
172 @lilypond[verbatim,quote,fragment]
173 d''2^\flageolet d''_\flageolet
174 @end lilypond
175
176 A smaller circle may be created, see the snippet list in
177 @ref{References for unfretted strings}.
178
179 @strong{@i{Artificial harmonics}}
180
181 @cindex artificial harmonics
182 @cindex harmonics, artificial
183
184 Artificial harmonics are notated with two notes, one with a normal
185 note head indicating the stopped position and one with an open
186 diamond note head to indicate the harmonic position.
187
188 @c TODO If the default for harmonicDots is changed, change this
189 Artificial harmonics indicated with @code{\harmonic} do not show the
190 dots.  The context property @code{harmonicDots} should be set if
191 dots are required.
192
193 @lilypond[verbatim,quote]
194 \relative e' {
195   <e a\harmonic>2.  <c g'\harmonic>4
196   \set harmonicDots = ##t
197   <e a\harmonic>2.  <c g'\harmonic>4
198 }
199 @end lilypond
200
201 @warning{@code{@bs{}harmonic} @strong{must} be placed inside a
202 chord construct even if there is only a single note.  Normally
203 @code{@bs{}harmonicsOn} would be used in this situation.}
204
205 @seealso
206 Music Glossary:
207 @rglos{harmonics}.
208
209 Notation Reference:
210 @ref{Special note heads},
211 @ref{References for unfretted strings}.
212
213
214 @node Snap (Bartok) pizzicato
215 @unnumberedsubsubsec Snap (Bartók) pizzicato
216
217 @cindex pizzicato, Bartók
218 @cindex pizzicato, snap
219 @cindex Bartók pizzicato
220 @cindex snap pizzicato
221
222 A @notation{snap pizzicato} (also known as @qq{Bartok pizz}) is a
223 type of pizzicato where the string is deliberately plucked upwards
224 (rather than sideways) such that it hits the fingerboard.
225
226 @lilypond[verbatim,quote]
227 \relative {
228   c'4\snappizzicato
229   <c' e g>4\snappizzicato
230   <c' e g>4^\snappizzicato
231   <c, e g>4_\snappizzicato
232 }
233 @end lilypond
234
235