]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/single-staff-template-with-only-notes.ly
be5f44a5cd1a90dac2d1e2d12497984ec9100115
[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 = "really-simple, template"
11
12 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
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: 6ae36b6f8a7cf2df5f4e46c3c06820fccd9f35e1
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: 28097cf54698db364afeb75658e4c8e0e0ccd716
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 prêt !
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