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