]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/guitar-strum-rhythms.ly
427f93f7bddd64b3bf3ae0b2b14f01737c7e727c
[lilypond.git] / Documentation / snippets / guitar-strum-rhythms.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.39"
5
6 \header {
7   lsrtags = "rhythms, fretted-strings"
8
9 %% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94
10   texidoces = "
11 Para la música de guitarra, es posible mostrar los ritmos de rasgueo,
12 además de las notas de la melodía, acordes y diagramas de posiciones.
13
14 "
15   doctitlees = "Ritmos rasgueados de guitarra"
16
17
18 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
19   texidocde = "
20 In Gitarrennotation kann neben Melodie, Akkordbezeichnungen und
21 Bunddiagrammen auch der Schlagrhythmus angegeben werden.
22
23 "
24   doctitlede = "Schlagrhythmus für Gitarren"
25
26
27
28 %% Translation of GIT committish: 015b8e65e5e9a74cea1618b597402b5b74f89b89
29   texidocfr = "
30 En matière de notation pour guitare, il arrive que soient indiqués les
31 @qq{coups de gratte} en plus de la mélodie, grilles d'accords et
32 diagrammes de tablature.
33
34 "
35   doctitlefr = "Rythmique et guitare"
36
37   texidoc = "
38 For guitar music, it is possible to show strum rhythms, along with
39 melody notes, chord names and fret diagrams.
40
41 "
42   doctitle = "Guitar strum rhythms"
43 } % begin verbatim
44
45 \include "predefined-guitar-fretboards.ly"
46 <<
47   \new ChordNames {
48     \chordmode {
49       c1 | f | g | c
50     }
51   }
52   \new FretBoards {
53     \chordmode {
54       c1 | f | g | c
55     }
56   }
57   \new Voice \with {
58     \consists "Pitch_squash_engraver"
59   } {
60     \relative c'' {
61       \improvisationOn
62       c4 c8 c c4 c8 c
63       f4 f8 f f4 f8 f
64       g4 g8 g g4 g8 g
65       c4 c8 c c4 c8 c
66     }
67   }
68   \new Voice = "melody" {
69     \relative c'' {
70       c2 e4 e4
71       f2. r4
72       g2. a4
73       e4 c2.
74     }
75   }
76   \new Lyrics {
77     \lyricsto "melody" {
78       This is my song.
79       I like to sing.
80     }
81   }
82 >>
83