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