----- Original Message ----- From: "jon sea" <jonsea...@yahoo.com> To: lilypond-user@gnu.org Sent: Friday, January 25, 2013 1:42:37 PM Subject: New user - I have an lone treble clef/extra staff
Hi I'm a new user trying to clean up an lilypond export from a sequencer and I cant figure out how to remove this extra staff - \version "2.10.10" \header { dedication = "" title = "New Arrangement" subtitle = "" poet = "" composer = "" copyright = "" date = "2013" } GlobalMeter = \time 4/4 GlobalKeys = \key c \major Chords = \chords { c8 \skip 4. \skip 2 f8 \skip 4. \skip 2 g8 \skip 4. \skip 2 c8 \skip 4. \skip 2 } % bbb (GM.Acoustic Grand) voiceInstBOne = { e'1 | a'1 | b1 | e'1 } \paper { #(set-paper-size "a4") head-separation = 1\cm page-top-space = 0\cm left-margin = 16\mm line-width = 178\mm between-system-padding = #0.1 between-system-space = #0.1 ragged-last-bottom = ##f ragged-bottom = ##f } \score { << \tempo 4=120 \context Staff = "sysInstBOne" << \clef treble \GlobalMeter \GlobalKeys \set Staff.instrumentName = "bbb " \tempo 4=120 \skip 1*4 % keep staff alive \new Voice = "voiceInstBOneLocal" \voiceInstBOne \Chords >> >> \layout { } } I'm a beginner so ANY help is greatly appreciated - thx - p Jon, Change: \tempo 4=120 \context Staff = "sysInstBOne" << To: \context Staff = "sysInstBOne" << \tempo 4=120 This will put your tempo marking inside the Staff context. By placing it before \context Staff you force LilyPond to instantiate another Staff context. -David _______________________________________________ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user _______________________________________________ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user