Eclats de vers : Opus : Musica : template
Table of Contents
1. Séjour
Le résultat :
La source :
% vim: set expandtab shiftwidth=2 softtabstop=2: \version "2.24.3" % included files {{{1 \include "global/global.glob.ly" \include "melody/melody.mld.ly" % header {{{1 \header { title = "séjour" subtitle="chamber" composer = "composer" poet = "poet" %piece = "piece" } % layout {{{1 \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" } \context { \DrumStaff \RemoveAllEmptyStaves } } % view only the beg/end {{{1 %showFirstLength = R2.*8 %showLastLength = R2.*8 % voices {{{1 % winds {{{2 % soprano {{{3 voiceWindSoprano = \relative c'' { \keytime \tempo 2. = 50 \anacrusis % bar structure 0 } % alto {{{3 voiceWindAlto = \relative c' { \keytime \anacrusis % bar structure 0 } % tenor {{{3 voiceWindTenor = \relative c { \keytime \anacrusis % bar structure 0 } % bass {{{3 voiceWindBass = \relative c, { \keytime \anacrusis % bar structure 0 } % strings {{{2 % soprano {{{3 voiceStringSoprano = \relative c'' { \keytime \anacrusis % bar structure 0 } % alto {{{3 voiceStringAlto = \relative c' { \keytime \anacrusis % bar structure 0 } % tenor {{{3 voiceStringTenor = \relative c { \keytime \anacrusis % bar structure 0 } % bass {{{3 voiceStringBass = \relative c, { \keytime \anacrusis % bar structure 0 } % keyboard {{{2 % right {{{3 voiceKeyboardRight = \relative c'' { \keytime \anacrusis % bar structure 0 } % left {{{3 voiceKeyboardLeft = \relative c { \keytime \anacrusis % bar structure 0 } % lutes {{{2 % treble {{{3 voiceLuteTreble = \relative c' { \keytime \anacrusis % bar structure 0 } % bass {{{3 voiceLuteBass = \relative c, { \keytime \anacrusis % bar structure 0 } % vibraphone {{{2 voiceVibraphone = \relative c' { \keytime \anacrusis % bar structure 0 } % drums {{{2 voiceDrums = \drummode { \keytime \anacrusisDrums % 0 } % instruments {{{1 % winds {{{2 instrumentWinds = \new StaffGroup \with { instrumentName = "winds" shortInstrumentName = "wd" } << \new Staff = "treble" \with { midiInstrument = "flute" midiMinimumVolume = #1.0 midiMaximumVolume = #1.5 } { % \clef french \clef treble << \voiceWindSoprano \\ \voiceWindAlto >> } \new Staff = "bass" \with { midiInstrument = "bassoon" midiMinimumVolume = #1.0 midiMaximumVolume = #1.5 } { % \clef varbaritone \clef bass << \voiceWindTenor \\ \voiceWindBass >> } >> % strings {{{2 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 >> } >> % keyboard {{{2 instrumentKeyboard = \new GrandStaff \with { instrumentName = \markup \column { harpsi- chord } shortInstrumentName = \markup \column { hp cd } connectArpeggios = ##t } << \new Staff = "treble" \with { midiInstrument = "harpsichord" midiMinimumVolume = #1.5 midiMaximumVolume = #2.0 } { \clef treble %\showStaffSwitch \voiceKeyboardRight } \new Staff = "bass" \with { midiInstrument = "harpsichord" midiMinimumVolume = #1.5 midiMaximumVolume = #2.0 } { \clef bass %\showStaffSwitch \voiceKeyboardLeft } >> % lutes {{{2 instrumentLutes = \new StaffGroup \with { instrumentName = "lutes" shortInstrumentName = "lts" } << \new Staff = "treble" \with { midiInstrument = "acoustic guitar (nylon)" midiMinimumVolume = #1.5 midiMaximumVolume = #2.0 % -- 3rd line G clef %clefGlyph = #"clefs.G" %clefPosition = #0 %clefTransposition = #0 %middleCPosition = #-4 %middleCClefPosition = #-4 } { \clef soprano \voiceLuteTreble } \new Staff = "bass" \with { midiInstrument = "acoustic bass" midiMinimumVolume = #1.5 midiMaximumVolume = #2.0 } { \clef subbass \voiceLuteBass } >> % vibraphone {{{2 instrumentVibraphone = \new Staff \with { instrumentName = \markup \column { vibra- phone } shortInstrumentName = "vb" midiInstrument = "vibraphone" midiMinimumVolume = #1.0 midiMaximumVolume = #1.5 } { \clef treble \voiceVibraphone } % drums {{{2 instrumentDrums = \new DrumStaff \with { instrumentName = "drumkit" shortInstrumentName = "dk" } { \clef percussion \voiceDrums } % book {{{1 \book { \markup \column { \vspace #1 \line { winds = 2 flutes, 2 bassoons } \line { strings = 2 violins, 2 cellos } \line { lutes = lute, archlute } \vspace #1 } \score { << \instrumentWinds \instrumentStrings \instrumentKeyboard \instrumentLutes \instrumentVibraphone \instrumentDrums >> \layout { } \midi { \context { \Score %midiChannelMapping = #'instrument %\enablePolymeter } } } \paper { system-separator-markup = \slashSeparator } }