]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/user/instrument-notation.itely
Move fundamental voices stuff into Fundamental.
[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 @menu
31 * Artificial harmonics (strings)::  
32 @end menu
33
34 @node Artificial harmonics (strings)
35 @unnumberedsubsubsec Artificial harmonics (strings)
36
37 @cindex artificial harmonics
38
39 Artificial harmonics are notated with a different notehead style.  They
40 are entered by marking the harmonic pitch with @code{\harmonic}.
41
42 @lilypond[ragged-right,verbatim,quote,fragment,relative=1]
43 <c g'\harmonic>4
44 @end lilypond
45
46
47 @node Bagpipe
48 @subsection Bagpipe
49
50 @menu
51 * Bagpipe definitions::         
52 * Bagpipe example::             
53 @end menu
54
55 @node Bagpipe definitions
56 @unnumberedsubsubsec Bagpipe definitions
57
58 LilyPond contains special definitions for music for the Scottish
59 highland bagpipe; to use them, add
60
61 @example
62 \include "bagpipe.ly"
63 @end example
64
65 @noindent
66 at the top of your input file.  This lets you add the special gracenotes
67 common to bagpipe music with short commands.  For example, you could
68 write @code{\taor} instead of
69
70 @example
71 \grace @{ \small G32[ d G e] @}
72 @end example
73
74 @code{bagpipe.ly} also contains pitch definitions for the bagpipe
75 notes in the appropriate octaves, so you do not need to worry about
76 @code{\relative} or @code{\transpose}.
77
78 @lilypond[ragged-right,verbatim,quote,notime]
79 \include "bagpipe.ly"
80 { \grg G4 \grg a \grg b \grg c \grg d \grg e \grg f \grA g A }
81 @end lilypond
82
83 Bagpipe music nominally uses the key of D Major (even though that
84 isn't really true). However, since that is the only key that can be used,
85 the key signature is normally not written out. To set this up correctly,
86 always start your music with @code{\hideKeySignature}. If you for some
87 reason want to show the key signature, you can use @code{\showKeySignature}
88 instead.
89
90 Some modern music use cross fingering on c and f to flatten those notes.
91 This can be indicated by @code{cflat} or @code{fflat}. Similarly, the
92 piobaireachd high g can be written @code{gflat} when it occurs in light
93 music.
94
95
96 @node Bagpipe example
97 @unnumberedsubsubsec Bagpipe example
98
99 This is what the well known tune Amazing Grace looks like in bagpipe
100 notation.
101
102 @lilypond[verbatim,quote]
103 \include "bagpipe.ly"
104 \layout {
105   indent = 0.0\cm
106   \context { \Score \remove "Bar_number_engraver" }
107 }
108
109 \header {
110   title = "Amazing Grace"
111   meter = "Hymn"
112   arranger = "Trad. arr."
113 }
114
115 {
116   \hideKeySignature
117   \time 3/4
118   \grg \partial 4 a8. d16
119   \slurd d2 \grg f8[ e32 d16.]
120   \grg f2 \grg f8 e
121   \thrwd d2 \grg b4
122   \grG a2 \grg a8. d16
123   \slurd d2 \grg f8[ e32 d16.]
124   \grg f2 \grg e8. f16
125   \dblA A2 \grg A4
126   \grg A2 f8. A16
127   \grg A2 \hdblf f8[ e32 d16.]
128   \grg f2 \grg f8 e
129   \thrwd d2 \grg b4
130   \grG a2 \grg a8. d16
131   \slurd d2 \grg f8[ e32 d16.]
132   \grg f2 e4
133   \thrwd d2.
134   \slurd d2
135   \bar "|."
136 }
137 @end lilypond
138
139
140
141
142