]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/polyphony-in-tablature.ly
LSR: Update.
[lilypond.git] / input / lsr / polyphony-in-tablature.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.3"
4
5 \header {
6   lsrtags = "fretted-strings"
7
8   texidoces = "
9 La polifonía se crea de la misma forma en un @code{TabStaff} que
10 en una pauta normal.
11
12 "
13   doctitlees = "Polifonía en tablaturas"
14
15 %% Translation of GIT committish: 3f880f886831b8c72c9e944b3872458c30c6c839
16
17   texidocfr = "
18 Une section polyphonique s'obtient dans un @code{TabStaff} de la
19 même manière que dans une portée normale.
20
21 "
22   doctitlefr = "Polyphonie en mode tablature"
23
24   texidoc = "
25 Polyphony is created the same way in a @code{TabStaff} as in a regular
26 staff.
27
28 "
29   doctitle = "Polyphony in tablature"
30 } % begin verbatim
31
32 upper = \relative c' {
33   \time 12/8
34   \key e \minor
35   \voiceOne
36   r4. r8 e, fis g16 b g e e' b c b a g fis e
37 }
38
39 lower = \relative c {
40   \key e \minor
41   \voiceTwo
42   r16 e d c b a g4 fis8 e fis g a b c
43 }
44
45 \score {
46   <<
47     \new StaffGroup = "tab with traditional" <<
48       \new Staff = "guitar traditional" <<
49         \clef "treble_8"
50         \context Voice = "upper" \upper
51         \context Voice = "lower" \lower
52       >>
53       \new TabStaff = "guitar tab" <<
54         \context TabVoice = "upper" \upper
55         \context TabVoice = "lower" \lower
56       >>
57     >>
58   >>
59 }
60