]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/single-staff-template-with-only-notes.ly
Merge master into nested-bookparts
[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.62"
4
5 \header {
6   lsrtags = "template"
7
8   texidoces = "
9 Esta plantilla simple prepara un pentagrama con notas, adecuado para
10 un instrumento solista o un fragmento melódico. Córtelo y péguelo en
11 un archivo, escriba las notas y ¡ya está!
12
13 "
14   doctitlees = "Plantilla de un solo pentagrama, con notas únicamente"
15   
16   texidocde = "
17 Das erste Beispiel zeigt ein Notensystem mit Noten, passend für ein 
18 Soloinstrument oder ein Melodiefragment. Kopieren Sie es und fügen 
19 Sie es in Ihre Datei ein, schreiben Sie die Noten hinzu, und Sie haben 
20 eine vollständige Notationsdatei.
21 "
22
23   texidoc = "
24 This very simple template gives you a staff with notes, suitable for a
25 solo instrument or a melodic fragment. Cut and paste this into a file,
26 add notes, and you're finished! 
27
28 "
29   doctitle = "Single staff template with only notes"
30 } % begin verbatim
31 melody = \relative c' {
32   \clef treble
33   \key c \major
34   \time 4/4
35   
36   a4 b c d
37 }
38
39 \score {
40   \new Staff \melody
41   \layout { }
42   \midi { }
43 }