From: Graham Percival Date: Sat, 30 Jan 2010 00:21:52 +0000 (+0000) Subject: Build: move screech-boink.ly into snippets. X-Git-Tag: release/2.13.12-1~29 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=ad3db5314c17fcd643bfac654eb38955fb8fe37d;p=lilypond.git Build: move screech-boink.ly into snippets. --- diff --git a/Documentation/included/screech-boink.ly b/Documentation/included/screech-boink.ly deleted file mode 100644 index a49cd240db..0000000000 --- a/Documentation/included/screech-boink.ly +++ /dev/null @@ -1,73 +0,0 @@ -\version "2.12.0" -\header { - title = "Screech and boink" - subtitle = "Random complex notation" - composer = "Han-Wen Nienhuys" -} - -\score { - \context PianoStaff << - \new Staff = "up" { - \time 4/8 - \key c \minor - - - << { - \revert Stem #'direction - \change Staff = down - \set subdivideBeams = ##t - g16.[ - \change Staff = up - c'''32 \change Staff = down - g32 \change Staff = up - c'''32 \change Staff = down - g16] - \change Staff = up - \stemUp - \set followVoice = ##t - c'''32([ b''16 a''16 gis''16 g''32)] } \\ - { s4 \times 2/3 { d'16[ f' g'] } as'32[ b''32 e'' d''] } \\ - { s4 \autoBeamOff d''8.. f''32 } \\ - { s4 es''4 } - >> - } - - \new Staff = "down" { - \clef bass - \key c \minor - \set subdivideBeams = ##f - \override Stem #'french-beaming = ##t - \override Beam #'thickness = #0.3 - \override Stem #'thickness = #4.0 - g'16[ b16 fis16 g16] - << \makeClusters { - as16 - - - } \\ - { - \override Staff.Arpeggio #'arpeggio-direction =#down - 4\arpeggio } - >> - } - >> - - \midi { - \context { - \Score - tempoWholesPerMinute = #(ly:make-moment 60 8) - } - } - - - - \layout { - ragged-right = ##t - - \context { - \Staff - \consists Horizontal_bracket_engraver - } - - } -} diff --git a/Documentation/snippets/new/screech-boink.ly b/Documentation/snippets/new/screech-boink.ly new file mode 100644 index 0000000000..a4a4ef2000 --- /dev/null +++ b/Documentation/snippets/new/screech-boink.ly @@ -0,0 +1,74 @@ +\version "2.12.0" +\header { + lsrtags = "headwords" + texidoc = "Random complex notation" + doctitle = "Screech and Boink" +} + + +\score { + \context PianoStaff << + \new Staff = "up" { + \time 4/8 + \key c \minor + + + << { + \revert Stem #'direction + \change Staff = down + \set subdivideBeams = ##t + g16.[ + \change Staff = up + c'''32 \change Staff = down + g32 \change Staff = up + c'''32 \change Staff = down + g16] + \change Staff = up + \stemUp + \set followVoice = ##t + c'''32([ b''16 a''16 gis''16 g''32)] } \\ + { s4 \times 2/3 { d'16[ f' g'] } as'32[ b''32 e'' d''] } \\ + { s4 \autoBeamOff d''8.. f''32 } \\ + { s4 es''4 } + >> + } + + \new Staff = "down" { + \clef bass + \key c \minor + \set subdivideBeams = ##f + \override Stem #'french-beaming = ##t + \override Beam #'thickness = #0.3 + \override Stem #'thickness = #4.0 + g'16[ b16 fis16 g16] + << \makeClusters { + as16 + + + } \\ + { + \override Staff.Arpeggio #'arpeggio-direction =#down + 4\arpeggio } + >> + } + >> + + \midi { + \context { + \Score + tempoWholesPerMinute = #(ly:make-moment 60 8) + } + } + + + + \layout { + ragged-right = ##t + + \context { + \Staff + \consists Horizontal_bracket_engraver + } + + } +}