]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/single-staff-template-with-notes-and-chords.ly
Merge master into nested-bookparts
[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.62"
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 melody = \relative c' {
29   \clef treble
30   \key c \major
31   \time 4/4
32   
33   f4 e8[ c] d4 g
34   a2 ~ a
35 }
36
37 harmonies = \chordmode {
38   c4:m f:min7 g:maj c:aug
39   d2:dim b:sus
40 }
41
42 \score {
43   <<
44     \new ChordNames {
45       \set chordChanges = ##t
46       \harmonies
47     }
48     \new Staff \melody
49   >>  
50   \layout{ }
51   \midi { }
52 }