]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/user/instrument-notation.itely
aa638636b2c15f00865862d97a42ee262040ed11
[lilypond.git] / Documentation / user / instrument-notation.itely
1 @c -*- coding: utf-8; mode: texinfo; -*-
2 @c This file is part of lilypond.tely
3 @ignore
4     Translation of GIT committish: FILL-IN-HEAD-COMMITTISH
5
6     When revising a translation, copy the HEAD committish of the
7     version that you are working on.  See TRANSLATION for details.
8 @end ignore
9
10
11 @c A menu is needed before every deeper *section nesting of @node's; run
12 @c     M-x texinfo-all-menus-update
13 @c to automatically fill in these menus before saving changes
14
15 @node Other instrument-specific
16 @section Other instrument-specific
17
18 This section includes extra information for writing for instruments.
19
20 @menu
21 * Orchestral strings::          
22 * Bagpipe::                     
23 @end menu
24
25
26
27 @node Orchestral strings
28 @subsection Orchestral strings
29
30 @anchor{Artificial harmonics (strings)}
31 @unnumberedsubsubsec Artificial harmonics (strings)
32
33 @cindex artificial harmonics
34
35 Artificial harmonics are notated with a different notehead style.  They
36 are entered by marking the harmonic pitch with @code{\harmonic}.
37
38 @lilypond[ragged-right,verbatim,quote,fragment,relative=1]
39 <c g'\harmonic>4
40 @end lilypond
41
42
43 @node Bagpipe
44 @subsection Bagpipe
45
46 @anchor{Bagpipe definitions}
47 @unnumberedsubsubsec Bagpipe definitions
48
49 LilyPond contains special definitions for music for the Scottish
50 highland bagpipe; to use them, add
51
52 @example
53 \include "bagpipe.ly"
54 @end example
55
56 @noindent
57 at the top of your input file.  This lets you add the special gracenotes
58 common to bagpipe music with short commands.  For example, you could
59 write @code{\taor} instead of
60
61 @example
62 \grace @{ \small G32[ d G e] @}
63 @end example
64
65 @code{bagpipe.ly} also contains pitch definitions for the bagpipe
66 notes in the appropriate octaves, so you do not need to worry about
67 @code{\relative} or @code{\transpose}.
68
69 @lilypond[ragged-right,verbatim,quote,notime]
70 \include "bagpipe.ly"
71 { \grg G4 \grg a \grg b \grg c \grg d \grg e \grg f \grA g A }
72 @end lilypond
73
74 Bagpipe music nominally uses the key of D Major (even though that
75 isn't really true). However, since that is the only key that can be used,
76 the key signature is normally not written out. To set this up correctly,
77 always start your music with @code{\hideKeySignature}. If you for some
78 reason want to show the key signature, you can use @code{\showKeySignature}
79 instead.
80
81 Some modern music use cross fingering on c and f to flatten those notes.
82 This can be indicated by @code{cflat} or @code{fflat}. Similarly, the
83 piobaireachd high g can be written @code{gflat} when it occurs in light
84 music.
85
86
87 @anchor{Bagpipe example}
88 @unnumberedsubsubsec Bagpipe example
89
90 This is what the well known tune Amazing Grace looks like in bagpipe
91 notation.
92
93 @lilypond[verbatim,quote]
94 \include "bagpipe.ly"
95 \layout {
96   indent = 0.0\cm
97   \context { \Score \remove "Bar_number_engraver" }
98 }
99
100 \header {
101   title = "Amazing Grace"
102   meter = "Hymn"
103   arranger = "Trad. arr."
104 }
105
106 {
107   \hideKeySignature
108   \time 3/4
109   \grg \partial 4 a8. d16
110   \slurd d2 \grg f8[ e32 d16.]
111   \grg f2 \grg f8 e
112   \thrwd d2 \grg b4
113   \grG a2 \grg a8. d16
114   \slurd d2 \grg f8[ e32 d16.]
115   \grg f2 \grg e8. f16
116   \dblA A2 \grg A4
117   \grg A2 f8. A16
118   \grg A2 \hdblf f8[ e32 d16.]
119   \grg f2 \grg f8 e
120   \thrwd d2 \grg b4
121   \grG a2 \grg a8. d16
122   \slurd d2 \grg f8[ e32 d16.]
123   \grg f2 e4
124   \thrwd d2.
125   \slurd d2
126   \bar "|."
127 }
128 @end lilypond
129
130
131
132
133