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