Sandbox: Difference between revisions

Find traditional instrumental music
No edit summary
No edit summary
Line 1: Line 1:
<lilypond>
<lilypond>
\version "2.12.2"
\version "2.12.2"
\layout {
 
ragged-right = ##f
indent = 7\cm
#(layout-set-staff-size 16)
\context {
        \Score
      \consists "Horizontal_bracket_engraver"     
        \remove "Bar_number_engraver"
      }
    }
Incipit ={
Incipit ={
  \key sol \major
  \key sol \major

Revision as of 19:54, 1 February 2010

<lilypond> \version "2.12.2"

Incipit ={ \key sol \major

  	   \time 2/4
   	   %\override Staff.TimeSignature #'stencil = ##f
   	   \override Staff.InstrumentName #'self-alignment-X = #LEFT
   	   \set Staff.instrumentName = \markup {\column  {

"G.5624 5621 - Reel, Key of G, 2/4, Ionian." \small{"(G.51H64.2442 with double note values)"}

   	   }
   	 }


   	   \relative c { 	
   	   	\stemDown d16^\markup{ 1. Frisky} b g' d e d c b|  
      		a b c d  c b a g\bar""
      		
      	}

}

\score { \new Score \with { \override NonMusicalPaperColumn #'page-break-permission = ##f } { \new Staff \Incipit } \layout { }

    }

</lilypond>