]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/single-staff-template-with-only-notes.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[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.di.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.18.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 melody = \relative c' {
22   \clef treble
23   \key c \major
24   \time 4/4
25
26   a4 b c d
27 }
28
29 \score {
30   \new Staff \melody
31   \layout { }
32   \midi { }
33 }