]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/new/wind-headword.ly
15904574de5cff6fad3d9efe63d31882675e9bf9
[lilypond.git] / Documentation / snippets / new / wind-headword.ly
1 \version "2.13.36"
2 #(set-global-staff-size 15)
3 \paper {
4   line-width = 16\cm
5   indent = 0\cm
6 }
7
8 % NR 2.whatever  Wind
9
10 \header {
11   lsrtags = "headwords"
12   texidoc = ""
13   doctitle = "headword"
14 }
15
16 % Tchaikovsky
17 % Nutcracker Suite, VII Dance of the Merlitons
18 \score {
19   \new StaffGroup <<
20     \new Staff \relative c'' {
21       \set Staff.instrumentName = "Flauto I,II"
22       \once \override Score.RehearsalMark #'self-alignment-X = #-1
23       \once \override Score.RehearsalMark #'break-align-symbols =
24 #'(time-signature)
25       \once \override Score.TimeSignature
26 #'break-align-anchor-alignment = #LEFT
27       \once \override Score.RehearsalMark #'padding = #4
28       \mark \markup \large \bold {Moderato assai}
29       \key d \major
30       \time 2/4
31       \compressFullBarRests
32       R2*2
33       <d a>16-.\p <cis g>-. <d a>-. <cis g>-. <d a>8-. <cis g>-.
34       <e a,>-.\< <d a>32( <fis d> <a fis> <d a> <fis d>4--)\mf
35       <g d>16-. <fis cis>-. <g d>-. <fis cis>-.
36         <e b>(\> <d a>) <a fis>-. <fis d>-.\!
37       <d bes>4--\sf \acciaccatura {<d' bes>8} <cis a>4--\mf
38     }
39     \new Staff \relative c' {
40       \set Staff.instrumentName = "Flauto III"
41       \key d \major
42       \time 2/4
43       \compressFullBarRests
44       R2*2_\markup{Gr.Fl.}
45       fis16-.\p e-. fis-. e-. fis8-. e-.
46       g8-.\< fis32( a d fis a4--)\mf
47       b16-. a-. b-. a-. g(\> fis) d-. a-.\!
48       g4--\sf \acciaccatura fis'8 g4--\mf
49     }
50   >>
51 }
52