]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/single-staff-template-with-only-notes.ly
45349ef7897031c9209366650f5f8e0c6d71b5a1
[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 \version "2.11.57"
4
5 \header {
6   lsrtags = "template"
7
8   texidoc = "
9 This very simple template gives you a staff with notes, suitable for a
10 solo instrument or a melodic fragment. Cut and paste this into a file,
11 add notes, and you're finished! 
12
13 "
14   doctitle = "Single staff template with only notes"
15 } % begin verbatim
16 melody = \relative c' {
17   \clef treble
18   \key c \major
19   \time 4/4
20   
21   a4 b c d
22 }
23
24 \score {
25   \new Staff \melody
26   \layout { }
27   \midi { }
28 }