Eclats de vers : Opus : Musica : Templates
Table of Contents
1. Eclats de vers : Musica : Templates : Petit chambre avec harpe
Le résultat :
La source :
% vim: set fdm=indent: % ------------ headers ------------ %\version "2.24.0" \language "english" \header { title = "salon" subtitle="petit chambre avec harpe" composer = "composer" poet = "poet" %piece = "piece" } \layout { %\enablePolymeter \override Score.BarNumber.break-visibility = ##(#t #t #t) \context { \Score measureBarType = #"," %barNumberVisibility = #(every-nth-bar-number-visible 8) barNumberVisibility = #(modulo-bar-number-visible 8 0) } \context { \Staff \RemoveEmptyStaves \consists "Merge_rests_engraver" } } % ------------ melodies ------------ \include "include/mel.ly" % ------------ voices ------------ voiceWindSoprano = \fixed c'' { \global \tempo 2. = 50 % Music follows here. \pickup } voiceWindAlto = \fixed c' { \global % Music follows here. \pickup } voiceWindTenor = \fixed c { \global % Music follows here. \pickup } voiceWindBass = \fixed c, { \global % Music follows here. \pickup } voiceStringSoprano = \fixed c'' { \global % Music follows here. \pickup } voiceStringAlto = \fixed c' { \global % Music follows here. \pickup } voiceStringTenor = \fixed c { \global % Music follows here. \pickup } voiceStringBass = \fixed c, { \global % Music follows here. \pickup } voiceKeyboardRight = \fixed c'' { \global % Music follows here. \pickup } voiceKeyboardLeft = \fixed c { \global % Music follows here. \pickup } voiceHarpTreble = \fixed c'' { \global % Music follows here. \pickup } voiceHarpBass = \fixed c { \global % Music follows here. \pickup } voiceVibraphone = \fixed c' { \global % Music follows here. \pickup } voiceDrums = \drummode { \global % Music follows here. \pickupDrums } % ------------ instruments ------------ instrumentWinds = \new StaffGroup \with { instrumentName = "Winds" shortInstrumentName = "wd" } << \new Staff = "treble" \with { midiInstrument = "flute" midiMinimumVolume = #1.0 midiMaximumVolume = #1.5 } { \clef treble << \voiceWindSoprano \\ \voiceWindAlto >> } \new Staff = "bass" \with { midiInstrument = "oboe" midiMinimumVolume = #1.0 midiMaximumVolume = #1.5 } { \clef bass << \voiceWindTenor \\ \voiceWindBass >> } >> instrumentStrings = \new StaffGroup \with { instrumentName = "Strings" shortInstrumentName = "st" } << \new Staff = "treble" \with { midiInstrument = "violin" midiMinimumVolume = #1.0 midiMaximumVolume = #1.5 } { \clef treble << \voiceStringSoprano \\ \voiceStringAlto >> } \new Staff = "bass" \with { midiInstrument = "cello" midiMinimumVolume = #1.0 midiMaximumVolume = #1.5 } { \clef bass << \voiceStringTenor \\ \voiceStringBass >> } >> instrumentKeyboard = \new GrandStaff \with { instrumentName = \markup \column { Harpsi- chord } shortInstrumentName = \markup \column { hp cd } } << \new Staff = "treble" \with { midiInstrument = "harpsichord" midiMinimumVolume = #1.5 midiMaximumVolume = #2.0 } { \clef treble \voiceKeyboardRight } \new Staff = "bass" \with { midiInstrument = "harpsichord" midiMinimumVolume = #1.5 midiMaximumVolume = #2.0 } { \clef bass \voiceKeyboardLeft } >> instrumentHarp = \new GrandStaff \with { instrumentName = "Harp" shortInstrumentName = "hp" } << \new Staff = "treble" \with { midiInstrument = "orchestral harp" midiMinimumVolume = #1.5 midiMaximumVolume = #2.0 } { \clef treble \voiceHarpTreble } \new Staff = "bass" \with { midiInstrument = "orchestral harp" midiMinimumVolume = #1.5 midiMaximumVolume = #2.0 } { \clef bass \voiceHarpBass } >> instrumentVibraphone = \new Staff \with { instrumentName = \markup \column { Vibra- phone } shortInstrumentName = "vb" midiInstrument = "vibraphone" midiMinimumVolume = #1.0 midiMaximumVolume = #1.5 } { \clef treble \voiceVibraphone } instrumentDrums = \new DrumStaff \with { instrumentName = "Drums" shortInstrumentName = "dm" } { \clef percussion \voiceDrums } % ------------ book ------------ \book { \markup \column { \vspace #1 \line { winds = 2 flutes, 2 bassoons } \line { strings = 2 violins, 2 cellos } \vspace #1 } \score { << \instrumentWinds \instrumentStrings \instrumentKeyboard \instrumentHarp \instrumentVibraphone \instrumentDrums >> \layout { } \midi { \context { \Score %midiChannelMapping = #'instrument %\enablePolymeter } } } \paper { system-separator-markup = \slashSeparator } }