\version "2.18.2" \header { % Supprimer le pied de page par défaut tagline = ##f } global = { \key c \major \time 4/4 \repeat unfold 4 { c4 c c c } \tag violon { \mark \default } \repeat unfold 3 { c4 c c c } \override Score.RehearsalMark.break-visibility = #begin-of-line-invisible \mark \markup { \musicglyph #"scripts.ushortfermata" } \repeat unfold 21 { c4 c c c } } violin = \relative c'' { \global % En avant la musique ! } right = \relative c' { \global % En avant la musique ! } left = \relative c { \global % En avant la musique ! } violinPart = \new Staff \with { fontSize = #-4 \override StaffSymbol.staff-space = #(magstep -4) instrumentName = "Violon" midiInstrument = "violin" \consists Mark_engraver \consists Staff_collecting_engraver } \violin pianoPart = \new PianoStaff \with { instrumentName = "Piano" } << \new Staff = "right" \with { midiInstrument = "acoustic grand" \consists Mark_engraver \consists Staff_collecting_engraver } \right \new Staff = "left" \with { midiInstrument = "acoustic grand" } { \clef bass \left } >> \score { << \keepWithTag violon \violinPart \removeWithTag violon \pianoPart >> \layout { \context { \Score \remove Bar_number_engraver \remove Mark_engraver \remove Staff_collecting_engraver } } \midi { \context { \Score tempoWholesPerMinute = #(ly:make-moment 100 4) } } }