]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/staff-headword.ly
Merge remote-tracking branch 'origin/translation' into master
[lilypond.git] / Documentation / snippets / staff-headword.ly
1 % DO NOT EDIT this file manually; it is automatically
2 % generated from Documentation/snippets/new
3 % Make any changes in Documentation/snippets/new/
4 % and then run scripts/auxiliar/makelsr.py
5 %
6 % This file is in the public domain.
7 %% Note: this file works from version 2.16.0
8 \version "2.16.0"
9 \include "catalan.ly"
10
11 \header {
12   lsrtags = "headword"
13   texidoc = ""
14   doctitle = "headword"
15 } % begin verbatim
16
17
18 \header {
19         mutopiatitle = "Napolitan Dance (Swan Lake)"
20         mutopiacomposer = "TchaikovskyPI"
21         mutopiainstrument = "Piano, Trumpet, Percussion"
22         source = "New arrangement"
23         style = "Classical"
24         copyright = "Public Domain"
25         maintainer = "Laurence Sardain"
26         lastupdated = "2006/Dec/21"
27 %       title = "Le Lac des Cygnes"
28 %       subtitle = "Danse Napolitaine"
29 %       composer = "Piotr Ilitch Tchaïkovski"
30 %       arranger = "arr. Laurence Sardain"
31 %       footer = "Mutopia-2006/12/22-896"
32 }
33
34 trompette = \relative do'' {
35   \clef treble
36   \key mib \major
37   \time 2/4
38   R2^\markup { \italic Comodo } |
39   r8 \once \override TextScript #'padding = #2.0
40   sib16-.^\markup {\dynamic p \italic grazioso} do-. mib( re)-. do-. sib-. |
41   re8-. r8 re4->( |
42   re8) do16-. re-. mib( re) do-. re-. |
43   do8-. r8 sib4-> |
44 }
45
46 tambourin = \relative do' {
47   \time 2/4
48   r8 do16 do do8 do |
49   r8 do16 do do8 do |
50   r8 do r do |
51   r8 do16 do do8 do |
52   r8 do r do |
53 }
54
55 tambourinMidi = \drummode {
56   \time 2/4
57   r8 tamb16 tamb tamb8 tamb |
58   r8 tamb16 tamb tamb8 tamb |
59   r8 tamb r tamb |
60   r8 tamb16 tamb tamb8 tamb |
61   r8 tamb r tamb |
62 }
63
64 upper = \relative do' {
65   \clef treble
66   \key mib \major
67   \time 2/4
68   r8\p <sol sib mib>16-. <sol sib mib>-. <sol sib mib>8-. <sol sib mib>-. |
69   r8 <sol sib mib>16-. <sol sib mib>-. <sol sib mib>8-. <sol sib mib>-. |
70   r8 <lab sib re>16-. <lab sib re>-. <lab sib re>8-. <lab sib re>-. |
71   r8 <lab sib re>16-. <lab sib re>-. <lab sib re>8-. <lab sib re>-. |
72   r8 <sol sib mib>16-. <sol sib mib>-. <sol sib mib>8-. <sol sib mib>-. |
73 }
74
75 lower = \relative do {
76   \clef bass
77   \key mib \major
78   \time 2/4
79   mib4-. r4 |
80   sib-. r |
81   fa'-. r |
82   sib, r |
83   mib4-. r4 |
84 }
85
86
87 \score {
88   <<
89     \context Staff = "trumpet" <<
90       \set Staff.instrumentName = \markup { "Trumpet" \concat{ B \teeny \raise #0.4 \flat } }
91       \transpose sib do'
92       \trompette
93     >>
94     \context RhythmicStaff = "tambourin" <<
95       \set Staff.instrumentName = "Tambourine"
96       \tambourin
97     >>
98     \context PianoStaff = "prima" <<
99       \set PianoStaff.instrumentName = "Piano  "
100       \context Staff = "uppera" \upper
101       \context Staff = "lowera" \lower
102     >>
103   >>
104   \layout { }
105 }
106 \score {
107   <<
108     \context Staff = "trumpet" {
109       \set Staff.midiInstrument = "trumpet"
110       \trompette
111     }
112     \context DrumStaff = "tambourin" {
113       \tambourinMidi
114     }
115     \context Staff = "piano" <<
116       \upper
117       \lower
118     >>
119   >>
120   \midi {
121     \tempo 4 = 72
122   }
123 }