]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/single-staff-template-with-only-notes.ly
b1a5553e84950591757f40be37375f17b04a8b80
[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.16"
5
6 \header {
7   lsrtags = "template"
8
9 %% Translation of GIT committish: 2b0dc29608d6c3f5a03ead4877ae514c647adb74
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: fa1aa6efe68346f465cfdb9565ffe35083797b86
19   texidocja = "
20 これは音符を持つ譜表を提供するとても簡単なテンプレートであり、ソロの楽器や旋律に適しています。@c
21 これをファイルにカット&ペーストして、音符を付け加えれば完了です!
22 "
23
24 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
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: bdfe3dc8175a2d7e9ea0800b5b04cfb68fe58a7a
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