]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/single-staff-template-with-only-notes.ly
Merge branch 'master' of git://git.sv.gnu.org/lilypond
[lilypond.git] / input / lsr / single-staff-template-with-only-notes.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 %% Tags: template
4 \version "2.11.35"
5
6 \header { texidoc = "
7 This very simple template gives you a staff with notes, suitable for a
8 solo instrument or a melodic fragment. Cut and paste this into a file,
9 add notes, and you're finished! 
10 " }
11 % begin verbatim
12 melody = \relative c' {
13             \clef treble
14             \key c \major
15             \time 4/4
16          
17             a4 b c d
18          }
19          
20          \score {
21             \new Staff \melody
22             \layout { }
23             \midi {}
24          }
25