]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/single-staff-template-with-only-notes.ly
7ec07c004b521dd86e56d07069940b305e72e1a9
[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.39"
5
6 \header {
7   lsrtags = "template"
8
9 %% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94
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
19 %% Translation of GIT committish: fa1aa6efe68346f465cfdb9565ffe35083797b86
20   texidocja = "
21 これは音符を持つ譜表を提供するとても簡単なテンプレートであり、ソロの楽器や旋律に適しています。@c
22 これをファイルにカット&ペーストして、音符を付け加えれば完了です!
23 "
24
25
26 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
27   texidocde = "
28 Das erste Beispiel zeigt ein Notensystem mit Noten, passend für ein
29 Soloinstrument oder ein Melodiefragment. Kopieren Sie es und fügen
30 Sie es in Ihre Datei ein, schreiben Sie die Noten hinzu, und Sie haben
31 eine vollständige Notationsdatei.
32 "
33
34   doctitlede = "Vorlage für ein Notensystem"
35
36
37 %% Translation of GIT committish: bdfe3dc8175a2d7e9ea0800b5b04cfb68fe58a7a
38   texidocfr = "
39 Cet exemple simpliste se compose d'une portée agrémentée de quelques
40 notes.  Il convient tout à fait pour un instrument seul ou un
41 fragment mélodique.  Recopiez-le dans un nouveau fichier, ajoutez-y
42 d'autres notes et c'est pret !
43
44 "
45   doctitlefr = "Portée unique avec quelques notes"
46
47   texidoc = "
48 This very simple template gives you a staff with notes, suitable for a
49 solo instrument or a melodic fragment. Cut and paste this into a file,
50 add notes, and you're finished!
51
52 "
53   doctitle = "Single staff template with only notes"
54 } % begin verbatim
55
56 melody = \relative c' {
57   \clef treble
58   \key c \major
59   \time 4/4
60
61   a4 b c d
62 }
63
64 \score {
65   \new Staff \melody
66   \layout { }
67   \midi { }
68 }
69