\version"2.16.2" #(set-global-staff-size 23) \pointAndClickOff % <= à ne mettre qu'à la fin \include "maMereLoyeNotes.ly" % suppression du warning : #(ly:set-option 'warning-as-error #f) #(ly:expect-warning (_ "(De)crescendo with unspecified starting volume in MIDI.")) %% Setting a color for all staff objects automatically %% =>http://lsr.di.unimi.it/LSR/Item?id=443 #(define (override-color-for-all-grobs color) (lambda (context) (let loop ((x all-grob-descriptions)) (if (not (null? x)) (let ((grob-name (caar x))) (ly:context-pushpop-property context grob-name 'color color) (loop (cdr x))))))) \paper { top-margin = 10 left-margin = 20 right-margin = 10 } \header { title = "MA MÈRE L'OYE" subtitle = "Pavane de la Belle au bois dormant" poet = "Pour piano à 4 mains" composer = "Maurice RAVEL" copyright = "J.G-B (24.02.2015)" tagline = ##f } \score { << \new PianoStaff \with { instrumentName = "Prima" shortInstrumentName = \markup\concat { "Pa. " } } << \new Staff \pianisteUnMainDroite \new Staff \pianisteUnMainGauche >> \new PianoStaff \with { instrumentName = "Seconda" shortInstrumentName = \markup\concat { "Sa. " } %% on change la couleur ici %% => http://lsr.di.unimi.it/LSR/Item?id=394 (liste des couleurs dispos) \applyContext #(override-color-for-all-grobs (x11-color 'PaleVioletRed)) } << \new Staff \pianisteDeuxMainDroite \new Staff \pianisteDeuxMainGauche >> >> \layout { system-count = 4 } \midi { %\tempo 4 = 100 % ?? } }