]> 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.11.62"
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 upper = \relative c' {
23   \time 12/8
24   \key e \minor
25   \voiceOne
26   r4. r8 e, fis g16 b g e e' b c b a g fis e
27 }
28
29 lower = \relative c {
30   \key e \minor
31   \voiceTwo
32   r16 e d c b a g4 fis8 e fis g a b c
33 }
34
35 \score {
36   <<
37     \new StaffGroup = "tab with traditional" <<
38       \new Staff = "guitar traditional" <<
39         \clef "treble_8"
40         \context Voice = "upper" \upper
41         \context Voice = "lower" \lower
42       >>
43       \new TabStaff = "guitar tab" <<
44         \context TabVoice = "upper" \upper
45         \context TabVoice = "lower" \lower
46       >>
47     >>
48   >>
49 }