]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/user/wind.itely
Compile fixes.
[lilypond.git] / Documentation / user / wind.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.38"
10
11 @node Wind instruments
12 @section Wind instruments
13 @c @node Bagpipes
14 @c @section Bagpipes
15
16 This section includes extra information for writing for bagpipes.
17
18 @menu
19 * Bagpipe sections::            
20 @end menu
21
22
23 @node Bagpipe sections
24 @subsection Bagpipe sections
25
26 @menu
27 * Bagpipe definitions::         
28 * Bagpipe example::             
29 @end menu
30
31 @node Bagpipe definitions
32 @subsubsection Bagpipe definitions
33
34 LilyPond contains special definitions for music for the Scottish
35 highland bagpipe; to use them, add
36
37 @example
38 \include "bagpipe.ly"
39 @end example
40
41 @noindent
42 at the top of your input file.  This lets you add the special grace notes
43 common to bagpipe music with short commands.  For example, you could
44 write @code{\taor} instead of
45
46 @example
47 \grace @{ \small G32[ d G e] @}
48 @end example
49
50 @code{bagpipe.ly} also contains pitch definitions for the bagpipe
51 notes in the appropriate octaves, so you do not need to worry about
52 @code{\relative} or @code{\transpose}.
53
54 @lilypond[ragged-right,verbatim,quote,notime]
55 \include "bagpipe.ly"
56 { \grg G4 \grg a \grg b \grg c \grg d \grg e \grg f \grA g A }
57 @end lilypond
58
59 Bagpipe music nominally uses the key of D Major (even though that
60 isn't really true).  However, since that is the only key that can be used,
61 the key signature is normally not written out.  To set this up correctly,
62 always start your music with @code{\hideKeySignature}.  If you for some
63 reason want to show the key signature, you can use @code{\showKeySignature}
64 instead.
65
66 Some modern music use cross fingering on c and f to flatten those notes.
67 This can be indicated by @code{cflat} or @code{fflat}.  Similarly, the
68 piobaireachd high g can be written @code{gflat} when it occurs in light
69 music.
70
71
72 @node Bagpipe example
73 @subsubsection Bagpipe example
74
75 This is what the well known tune Amazing Grace looks like in bagpipe
76 notation.
77
78 @lilypond[verbatim,quote]
79 \include "bagpipe.ly"
80 \layout {
81   indent = 0.0\cm
82   \context { \Score \remove "Bar_number_engraver" }
83 }
84
85 \header {
86   title = "Amazing Grace"
87   meter = "Hymn"
88   arranger = "Trad. arr."
89 }
90
91 {
92   \hideKeySignature
93   \time 3/4
94   \grg \partial 4 a8. d16
95   \slurd d2 \grg f8[ e32 d16.]
96   \grg f2 \grg f8 e
97   \thrwd d2 \grg b4
98   \grG a2 \grg a8. d16
99   \slurd d2 \grg f8[ e32 d16.]
100   \grg f2 \grg e8. f16
101   \dblA A2 \grg A4
102   \grg A2 f8. A16
103   \grg A2 \hdblf f8[ e32 d16.]
104   \grg f2 \grg f8 e
105   \thrwd d2 \grg b4
106   \grG a2 \grg a8. d16
107   \slurd d2 \grg f8[ e32 d16.]
108   \grg f2 e4
109   \thrwd d2.
110   \slurd d2
111   \bar "|."
112 }
113 @end lilypond
114
115
116
117
118