\version "2.14.1"
%% shows that the first rest in the Vln 3 staff is misaligned and too close to the G.
%%
violinOne =  \relative a''' {
    \clef "treble^8" 
	\key c \major 
	\time 4/4
	R2*2 r2 a4 a8 [ b8 ]	
    }

violinTwo =  \relative d'' {
    \clef "treble" 
	\key c \major 
	\time 4/4 
	R2*2 d4 d8 [ e8 ] f4 f8 [ g8 ]  
    }


violinThree =  \relative g' {
    \clef "treble" 
	\key c \major 
	\time 4/4
	R2 g4 g8 [ a8 ] 
    b4 b8 [ c8 ] d8 [ e16 d16 ] c8 [ b8 ]
    }


violinFour =  \relative c {
    \clef "treble_8" 
	\key c \major 
	\time 4/4 
	c4 c8 [ d8 ]  e4 e8 [ f8 ] 
    g8 [ a16 g16 ] f8 [ e8 ] d8 [ f8 ] e8 [ d8 ]
    }


% The score definition

\score {
   \new StaffGroup <<
      \new Staff << 
        \set Staff.instrumentName = "Vln. 1 (S)"
        %\set Staff.shortInstrumentName = "Vln. 1"
		 \violinOne >>
      \new Staff << 
        \set Staff.instrumentName = "Vln. 2 (A)"
        %\set Staff.shortInstrumentName = "Vln. 2"
		 \violinTwo >>
      \new Staff << 
        \set Staff.instrumentName = "Vln. 3 (T)"
        %\set Staff.shortInstrumentName = "Vln. 3"
		 \violinThree >>
      \new Staff << 
        \set Staff.instrumentName = "Vln. 4 (B)"
        %\set Staff.shortInstrumentName = "Vln. 4"
		 \violinFour >>
   >>
   \layout { }
   \midi { }
}