]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/single-staff-template-with-only-notes.ly
Doc: update snippet committishes.
[lilypond.git] / Documentation / snippets / single-staff-template-with-only-notes.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.10"
5
6 \header {
7   lsrtags = "template"
8
9 %% Translation of GIT committish: 45fc8488655f9ea122d1ec6e3328892618bd6971
10   texidoces = "
11 Esta plantilla simple prepara un pentagrama con notas, adecuado para
12 un instrumento solista o un fragmento melódico. Córtelo y péguelo en
13 un archivo, escriba las notas y ¡ya está!
14
15 "
16   doctitlees = "Plantilla de un solo pentagrama con notas únicamente"
17
18 %% Translation of GIT committish: 06d99c3c9ad1c3472277b4eafd7761c4aadb84ae
19   texidocja = "
20 これは音符を持つ譜表を提供するとても簡単なテンプレートであり、ソロの楽器や旋律に適しています。@c
21 これをファイルにカット&ペーストして、音符を付け加えれば完了です!
22 "
23
24 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
25   texidocde = "
26 Das erste Beispiel zeigt ein Notensystem mit Noten, passend für ein
27 Soloinstrument oder ein Melodiefragment. Kopieren Sie es und fügen
28 Sie es in Ihre Datei ein, schreiben Sie die Noten hinzu, und Sie haben
29 eine vollständige Notationsdatei.
30 "
31
32   doctitlede = "Vorlage für ein Notensystem"
33
34 %% Translation of GIT committish: 892286cbfdbe89420b8181975032ea975e79d2f5
35   texidocfr = "
36 Cet exemple simpliste se compose d'une portée agrémentée de quelques
37 notes.  Il convient tout à fait pour un instrument seul ou un
38 fragment mélodique.  Recopiez-le dans un nouveau fichier, ajoutez-y
39 d'autres notes et c'est pret !
40
41 "
42   doctitlefr = "Portée unique avec quelques notes"
43
44   texidoc = "
45 This very simple template gives you a staff with notes, suitable for a
46 solo instrument or a melodic fragment. Cut and paste this into a file,
47 add notes, and you're finished!
48
49 "
50   doctitle = "Single staff template with only notes"
51 } % begin verbatim
52
53 melody = \relative c' {
54   \clef treble
55   \key c \major
56   \time 4/4
57
58   a4 b c d
59 }
60
61 \score {
62   \new Staff \melody
63   \layout { }
64   \midi { }
65 }
66