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