]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/polyphony-in-tablature.ly
Merge branch 'master' of ssh://jneem@git.sv.gnu.org/srv/git/lilypond
[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.11.64"
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   texidoc = "
16 Polyphony is created the same way in a @code{TabStaff} as in a regular
17 staff.
18
19 "
20   doctitle = "Polyphony in tablature"
21 } % begin verbatim
22
23 upper = \relative c' {
24   \time 12/8
25   \key e \minor
26   \voiceOne
27   r4. r8 e, fis g16 b g e e' b c b a g fis e
28 }
29
30 lower = \relative c {
31   \key e \minor
32   \voiceTwo
33   r16 e d c b a g4 fis8 e fis g a b c
34 }
35
36 \score {
37   <<
38     \new StaffGroup = "tab with traditional" <<
39       \new Staff = "guitar traditional" <<
40         \clef "treble_8"
41         \context Voice = "upper" \upper
42         \context Voice = "lower" \lower
43       >>
44       \new TabStaff = "guitar tab" <<
45         \context TabVoice = "upper" \upper
46         \context TabVoice = "lower" \lower
47       >>
48     >>
49   >>
50 }