]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/guitar-strum-rhythms.ly
75b97b06acd90367149eec4ae8b71c498e8e219f
[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.16"
5
6 \header {
7   lsrtags = "rhythms, fretted-strings"
8
9 %% Translation of GIT committish: 2b0dc29608d6c3f5a03ead4877ae514c647adb74
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 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
18   texidocde = "
19 In Guitarrennotation kann neben Melodie, Akkordbezeichnungen und
20 Bunddiagrammen auch der Schlagrhythmus angegeben werden.
21
22 "
23   doctitlede = "Schlagrhythmus für Guitarren"
24
25
26 %% Translation of GIT committish: 015b8e65e5e9a74cea1618b597402b5b74f89b89
27   texidocfr = "
28 En matière de notation pour guitare, il arrive que soient indiqués les
29 @qq{coups de gratte} en plus de la mélodie, grilles d'accords et
30 diagrammes de tablature.
31
32 "
33   doctitlefr = "Rythmique et guitare"
34
35   texidoc = "
36 For guitar music, it is possible to show strum rhythms, along with
37 melody notes, chord names and fret diagrams.
38
39 "
40   doctitle = "Guitar strum rhythms"
41 } % begin verbatim
42
43 \include "predefined-guitar-fretboards.ly"
44 <<
45   \new ChordNames {
46     \chordmode {
47       c1 | f | g | c
48     }
49   }
50   \new FretBoards {
51     \chordmode {
52       c1 | f | g | c
53     }
54   }
55   \new Voice \with {
56     \consists "Pitch_squash_engraver"
57   } {
58     \relative c'' {
59       \improvisationOn
60       c4 c8 c c4 c8 c
61       f4 f8 f f4 f8 f
62       g4 g8 g g4 g8 g
63       c4 c8 c c4 c8 c
64     }
65   }
66   \new Voice = "melody" {
67     \relative c'' {
68       c2 e4 e4
69       f2. r4
70       g2. a4
71       e4 c2.
72     }
73   }
74   \new Lyrics {
75     \lyricsto "melody" {
76       This is my song.
77       I like to sing.
78     }
79   }
80 >>
81