]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/single-staff-template-with-only-notes.ly
Run scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / Documentation / snippets / single-staff-template-with-only-notes.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.16.0"
8
9 \header {
10   lsrtags = "really-simple, template"
11
12   texidoc = "
13 This very simple template gives you a staff with notes, suitable for a
14 solo instrument or a melodic fragment. Cut and paste this into a file,
15 add notes, and you're finished!
16
17 "
18   doctitle = "Single staff template with only notes"
19 } % begin verbatim
20
21
22 melody = \relative c' {
23   \clef treble
24   \key c \major
25   \time 4/4
26
27   a4 b c d
28 }
29
30 \score {
31   \new Staff \melody
32   \layout { }
33   \midi { }
34 }