]> git.donarmstrong.com Git - lilypond.git/blob - input/test/cue-notes.ly
Removed file; it was a duplicate of beam-isknee.ly
[lilypond.git] / input / test / cue-notes.ly
1 \version "1.7.18"
2 % TODO: check to see if this example can be simplified using \small
3 % or \tiny.
4 \header {
5
6     texidoc = "@cindex Cue Notes
7 Cue notes should be set in smaller type.  Cue clefs are
8 usually not restored explicitly.
9 "  }
10
11
12 \score {
13   \notes
14    {
15        \property Staff.instrument = #"Horn in F"
16        \property Score.skipBars = ##t
17        R1*21
18     <
19         {
20             \property Staff.MultiMeasureRest \override #'staff-position = #-6
21             R1
22             \property Voice.MultiMeasureRest \revert #'staff-position
23         }
24      \context Voice = cue { s2
25        \clef tenor
26
27         %% this should probably be put into an identifier.
28        \property Staff.fontSize = #-1
29         \property Voice.Stem \override #'length = #5.5
30         \property Voice.Beam \override #'thickness = #0.384
31         \property Voice.Beam \override #'space-function =
32            #(lambda (beam mult) (* 0.8 (Beam::space_function beam mult)))
33
34         r8^"Bsn." c'8  f'8-[ f'8]
35 % FIXME: check to see if clef should be cancelled from the cue.  IIRC
36 % it should be, but I could be wrong.   -gp
37 %       \property Staff.fontSize\unset
38 %       \property Staff . Clef = \turnOff
39        \clef treble
40      } >
41    c'8^"Horn" cis'
42    \property Staff.Clef \unset
43    eis'4 fis'4
44  }
45  \paper { raggedright = ##t}
46 }%% new-chords-done %%