]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/single-staff-template-with-only-notes.ly
Docs: run convert-ly for 2.14.0.
[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   lsrtags = "template"
11
12 %% Translation of GIT committish: 59caa3adce63114ca7972d18f95d4aadc528ec3d
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: 0a868be38a775ecb1ef935b079000cebbc64de40
30   texidocde = "
31 Das erste Beispiel zeigt ein Notensystem mit Noten, passend für ein
32 Soloinstrument oder ein Melodiefragment. Kopieren Sie es und fügen
33 Sie es in Ihre Datei ein, schreiben Sie die Noten hinzu, und Sie haben
34 eine vollständige Notationsdatei.
35 "
36
37   doctitlede = "Vorlage für ein Notensystem"
38
39
40 %% Translation of GIT committish: bdfe3dc8175a2d7e9ea0800b5b04cfb68fe58a7a
41   texidocfr = "
42 Cet exemple simpliste se compose d'une portée agrémentée de quelques
43 notes.  Il convient tout à fait pour un instrument seul ou un
44 fragment mélodique.  Recopiez-le dans un nouveau fichier, ajoutez-y
45 d'autres notes et c'est pret !
46
47 "
48   doctitlefr = "Portée unique avec quelques notes"
49
50   texidoc = "
51 This very simple template gives you a staff with notes, suitable for a
52 solo instrument or a melodic fragment. Cut and paste this into a file,
53 add notes, and you're finished!
54
55 "
56   doctitle = "Single staff template with only notes"
57 } % begin verbatim
58
59 melody = \relative c' {
60   \clef treble
61   \key c \major
62   \time 4/4
63
64   a4 b c d
65 }
66
67 \score {
68   \new Staff \melody
69   \layout { }
70   \midi { }
71 }
72