]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/single-staff-template-with-notes-and-chords.ly
665b13fe48202a7b3cb5e4f56826976853c2967d
[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.11.57"
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   texidoc = "
17 Want to prepare a lead sheet with a melody and chords? Look no further!
18
19
20 "
21   doctitle = "Single staff template with notes and chords"
22 } % begin verbatim
23 melody = \relative c' {
24   \clef treble
25   \key c \major
26   \time 4/4
27   
28   f4 e8[ c] d4 g
29   a2 ~ a
30 }
31
32 harmonies = \chordmode {
33   c4:m f:min7 g:maj c:aug
34   d2:dim b:sus
35 }
36
37 \score {
38   <<
39     \new ChordNames {
40       \set chordChanges = ##t
41       \harmonies
42     }
43     \new Staff \melody
44   >>  
45   \layout{ }
46   \midi { }
47 }