From: Graham Percival Date: Sat, 3 Nov 2007 08:06:03 +0000 (-0700) Subject: Remove unused file. X-Git-Tag: release/2.11.35-1~46^2~1 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=bd352bda39223b1d72beaca28f60484ad2b4a5a3;p=lilypond.git Remove unused file. --- diff --git a/Documentation/user/instrument-notation.itely b/Documentation/user/instrument-notation.itely deleted file mode 100644 index c10d6fcc63..0000000000 --- a/Documentation/user/instrument-notation.itely +++ /dev/null @@ -1,142 +0,0 @@ -@c -*- coding: utf-8; mode: texinfo; -*- -@c This file is part of lilypond.tely -@ignore - Translation of GIT committish: FILL-IN-HEAD-COMMITTISH - - When revising a translation, copy the HEAD committish of the - version that you are working on. See TRANSLATION for details. -@end ignore - - -@c A menu is needed before every deeper *section nesting of @node's; run -@c M-x texinfo-all-menus-update -@c to automatically fill in these menus before saving changes - -@node Other instrument-specific -@section Other instrument-specific - -This section includes extra information for writing for instruments. - -@menu -* Orchestral strings:: -* Bagpipe:: -@end menu - - - -@node Orchestral strings -@subsection Orchestral strings - -@menu -* Artificial harmonics (strings):: -@end menu - -@node Artificial harmonics (strings) -@unnumberedsubsubsec Artificial harmonics (strings) - -@cindex artificial harmonics - -Artificial harmonics are notated with a different notehead style. They -are entered by marking the harmonic pitch with @code{\harmonic}. - -@lilypond[ragged-right,verbatim,quote,fragment,relative=1] -4 -@end lilypond - - -@node Bagpipe -@subsection Bagpipe - -@menu -* Bagpipe definitions:: -* Bagpipe example:: -@end menu - -@node Bagpipe definitions -@unnumberedsubsubsec Bagpipe definitions - -LilyPond contains special definitions for music for the Scottish -highland bagpipe; to use them, add - -@example -\include "bagpipe.ly" -@end example - -@noindent -at the top of your input file. This lets you add the special gracenotes -common to bagpipe music with short commands. For example, you could -write @code{\taor} instead of - -@example -\grace @{ \small G32[ d G e] @} -@end example - -@code{bagpipe.ly} also contains pitch definitions for the bagpipe -notes in the appropriate octaves, so you do not need to worry about -@code{\relative} or @code{\transpose}. - -@lilypond[ragged-right,verbatim,quote,notime] -\include "bagpipe.ly" -{ \grg G4 \grg a \grg b \grg c \grg d \grg e \grg f \grA g A } -@end lilypond - -Bagpipe music nominally uses the key of D Major (even though that -isn't really true). However, since that is the only key that can be used, -the key signature is normally not written out. To set this up correctly, -always start your music with @code{\hideKeySignature}. If you for some -reason want to show the key signature, you can use @code{\showKeySignature} -instead. - -Some modern music use cross fingering on c and f to flatten those notes. -This can be indicated by @code{cflat} or @code{fflat}. Similarly, the -piobaireachd high g can be written @code{gflat} when it occurs in light -music. - - -@node Bagpipe example -@unnumberedsubsubsec Bagpipe example - -This is what the well known tune Amazing Grace looks like in bagpipe -notation. - -@lilypond[verbatim,quote] -\include "bagpipe.ly" -\layout { - indent = 0.0\cm - \context { \Score \remove "Bar_number_engraver" } -} - -\header { - title = "Amazing Grace" - meter = "Hymn" - arranger = "Trad. arr." -} - -{ - \hideKeySignature - \time 3/4 - \grg \partial 4 a8. d16 - \slurd d2 \grg f8[ e32 d16.] - \grg f2 \grg f8 e - \thrwd d2 \grg b4 - \grG a2 \grg a8. d16 - \slurd d2 \grg f8[ e32 d16.] - \grg f2 \grg e8. f16 - \dblA A2 \grg A4 - \grg A2 f8. A16 - \grg A2 \hdblf f8[ e32 d16.] - \grg f2 \grg f8 e - \thrwd d2 \grg b4 - \grG a2 \grg a8. d16 - \slurd d2 \grg f8[ e32 d16.] - \grg f2 e4 - \thrwd d2. - \slurd d2 - \bar "|." -} -@end lilypond - - - - -