% LilyPond \include "english.ly" \version "2.12.0" \header{ title = "Que Bien Te Miras" composer = "Recorded by: Rudy Palacias" arranger = "Transcribed by: Chip Wiegand" } global = { \time 4/4 \key g \major \tempo 4=107 #(override-auto-beam-setting '(end 1 8 * *) 1 4 'Staff) #(override-auto-beam-setting '(end 1 8 * *) 2 4 'Staff) #(override-auto-beam-setting '(end 1 8 * *) 3 4 'Staff) %\override Score.BarNumber #'break-visibility = #'#(#f #f #f) %\override Score.BarNumber #'break-visibility = #end-of-line-invisible %\override Score.BarNumber #'self-alignment-X = #-1 \override Glissando #'thickness = #3 \override Glissando #'style = #'zigzag \override Glissando #'minimum-length = #6 \override Glissando #'springs-and-rods = #ly:spanner::set-spacing-rods \override MultiMeasureRest #'expand-limit = 1 \set Score.skipBars = ##t \numericTimeSignature } \paper { top-margin = 0.1\cm page-top-space = 0.1\cm ragged-bottom = ##t left-margin = 20\mm line-width = 175\mm } % ------ Trumpet 1------ trpt = \relative c' { \partial 8*3 fs8 fs e-. a8 a-. a8.-. a16 a8-. fs g a-. % ===== all the rest of the notes removed to condense it here === } trumpet = { \global \set Staff.instrumentName = #"Trumpet 1" \set Staff.shortInstrumentName = #"Tpt 1" % ~~~~~~~ I set this so it shows on all the score pages \clef treble << \trpt >> } % ------ Trumpet 2------ % ==== a whole bunch of notation removed to condense it here ==== \book { \score { << \new Staff = "trumpet" \trumpet % \new Staff = "trumpetb" \trumpetb % \new Staff = "alto" \altosax % \new Staff = "altob" \altosaxb % \new Staff = "tenor" \tenorsax % \new Staff = "bari" \barisax % \new Staff = "trombone" \trombone % \new Staff = "tromboneb" \tromboneb >> } } \book { \score { << \new Staff = "trumpet" \with { \remove Instrument_name_engraver } \trumpet >> } } \layout { \context { \Score } }