]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/single-staff-template-with-notes-and-chords.ly
Docs: reorganize documentation directory structure
[lilypond.git] / Documentation / snippets / 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 %% Translation of GIT committish: 7e2910d2bc6167b10cfe328eb17a5f710f2a515a
9   texidoces = "
10 ¿Quiere preparar una hoja guía de acordes (o «lead sheet») con
11 melodía y acordes?  ¡No busque más!
12
13 "
14
15 doctitlees = "Plantilla de pentagrama único con música y acordes"
16 %% Translation of GIT committish: 17633f6b8681af86230aa84597fe7561e98c91d6
17
18   texidocde = "
19 Wollen Sie ein Liedblatt mit Melodie und Akkorden schreiben?  Hier ist 
20 das richtige Beispiel für Sie!
21 "
22
23 %% Translation of GIT committish: 06d99c3c9ad1c3472277b4eafd7761c4aadb84ae
24   texidocja = "
25 旋律とコードを持つリード譜を欲しくはありませんか?他を見る必要はありません!
26 "
27
28   texidoc = "
29 Want to prepare a lead sheet with a melody and chords? Look no further!
30
31
32 "
33   doctitle = "Single staff template with notes and chords"
34 } % begin verbatim
35
36 melody = \relative c' {
37   \clef treble
38   \key c \major
39   \time 4/4
40   
41   f4 e8[ c] d4 g
42   a2 ~ a
43 }
44
45 harmonies = \chordmode {
46   c4:m f:min7 g:maj c:aug
47   d2:dim b:sus
48 }
49
50 \score {
51   <<
52     \new ChordNames {
53       \set chordChanges = ##t
54       \harmonies
55     }
56     \new Staff \melody
57   >>  
58   \layout{ }
59   \midi { }
60 }
61