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