]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/single-staff-template-with-notes-and-chords.ly
Doc-es: pre-merge update of texidoc committishes.
[lilypond.git] / input / lsr / single-staff-template-with-notes-and-chords.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.13.1"
4
5 \header {
6   lsrtags = "chords, template"
7
8   texidoces = "
9 ¿Quiere preparar una hoja guía de acordes (o «lead sheet») con
10 melodía y acordes?  ¡No busque más!
11
12 "
13
14 doctitlees = "Plantilla de pentagrama único con música y acordes"
15
16   texidocde = "
17 Wollen Sie ein Liedblatt mit Melodie und Akkorden schreiben?  Hier ist 
18 das richtige Beispiel für Sie!
19 "
20
21   texidocja = "
22 旋律とコードを持つリード譜を欲しくはありませんか?他を見る必要はありません!
23 "
24
25   texidoc = "
26 Want to prepare a lead sheet with a melody and chords? Look no further!
27
28
29 "
30   doctitle = "Single staff template with notes and chords"
31 } % begin verbatim
32
33 melody = \relative c' {
34   \clef treble
35   \key c \major
36   \time 4/4
37   
38   f4 e8[ c] d4 g
39   a2 ~ a
40 }
41
42 harmonies = \chordmode {
43   c4:m f:min7 g:maj c:aug
44   d2:dim b:sus
45 }
46
47 \score {
48   <<
49     \new ChordNames {
50       \set chordChanges = ##t
51       \harmonies
52     }
53     \new Staff \melody
54   >>  
55   \layout{ }
56   \midi { }
57 }