]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/single-staff-template-with-only-notes.ly
cfbe3180fd5cea9de358c63fca62226e96b503cb
[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.14.2"
8
9 \header {
10   lsrtags = "template, really-simple"
11
12 %% Translation of GIT committish: 6977ddc9a3b63ea810eaecb864269c7d847ccf98
13   texidoces = "
14 Esta plantilla simple prepara un pentagrama con notas, adecuado para
15 un instrumento solista o un fragmento melódico. Córtelo y péguelo en
16 un archivo, escriba las notas y ¡ya está!
17
18 "
19   doctitlees = "Plantilla de un solo pentagrama con notas únicamente"
20
21
22 %% Translation of GIT committish: fa1aa6efe68346f465cfdb9565ffe35083797b86
23   texidocja = "
24 これは音符を持つ譜表を提供するとても簡単なテンプレートであり、ソロの楽器や旋律に適しています。@c
25 これをファイルにカット&ペーストして、音符を付け加えれば完了です!
26 "
27
28
29 %% Translation of GIT committish: c3b519f0dd5ff0f8ccfc9a39ed1fe8df8b43741c
30   texidocit = "
31 Questo modello molto semplice mette a disposizione un rigo con delle note ed è
32 quindi adatto per uno strumento non accompagnato o per un frammento
33 melodico. Copialo e incollalo in un file, aggiungi le note e hai finito!
34
35 "
36   doctitleit = "Modello di rigo singolo con solo note"
37
38 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
39   texidocde = "
40 Das erste Beispiel zeigt ein Notensystem mit Noten, passend für ein
41 Soloinstrument oder ein Melodiefragment. Kopieren Sie es und fügen
42 Sie es in Ihre Datei ein, schreiben Sie die Noten hinzu, und Sie haben
43 eine vollständige Notationsdatei.
44 "
45
46   doctitlede = "Vorlage für ein Notensystem"
47
48
49 %% Translation of GIT committish: 3b125956b08d27ef39cd48bfa3a2f1e1bb2ae8b4
50   texidocfr = "
51 Cet exemple simpliste se compose d'une portée agrémentée de quelques
52 notes.  Il convient tout à fait pour un instrument seul ou un
53 fragment mélodique.  Recopiez-le dans un nouveau fichier, ajoutez-y
54 d'autres notes et c'est pret@tie{}!
55
56 "
57   doctitlefr = "Portée unique avec quelques notes"
58
59   texidoc = "
60 This very simple template gives you a staff with notes, suitable for a
61 solo instrument or a melodic fragment. Cut and paste this into a file,
62 add notes, and you're finished!
63
64 "
65   doctitle = "Single staff template with only notes"
66 } % begin verbatim
67
68
69 melody = \relative c' {
70   \clef treble
71   \key c \major
72   \time 4/4
73
74   a4 b c d
75 }
76
77 \score {
78   \new Staff \melody
79   \layout { }
80   \midi { }
81 }
82