Hi,
2014-06-17 23:17 GMT+02:00 Omer Katzir <[email protected]>:
> Basically I use two staves, one for bass one for the upper voices (usually
> two). Now, I tried to add a staff in the example you sent me, both by
> creating new staff group below the low tab staff and by just adding
> \new staff {
> \clef “bass”
> <<\low>>
> }
>
> I got errors all over the place, I can paste if really needed, but it
> seems like I’m just missing something, I guess I’m getting confused because
> i’m pretty much a nub when it comes to advance tactics.
>
See enclosed.
Cheers,
Pierre
\version "2.18.2"
%=> http://lilypond.1069038.n5.nabble.com/Changing-Tuning-td163390.html
global = {
\time 3/4
\cadenzaOn
\omit Stem
}
high = {
\global
s1 g,4 c f a d' g'
\cadenzaOff
\undo\omit Stem
\bar "|"
% mes.1
f'8 e' d' c' b a
% fin.
\bar "|."
}
medium = {
\global
s1 g,4 c f a d' g'
}
low = {
\global
c,4 d, e, f, s1.
% mes.1
R2.
% fin.
}
\score {
\new StaffGroup <<
\new TabStaff = "High"
\with {
stringTunings = \stringTuning <g, c f a d' g'>
\override VerticalAxisGroup.staff-staff-spacing = #'((padding . 0))
\override TimeSignature.style = #'single-digit
\override TimeSignature.X-offset = #-2
\override TimeSignature.font-size = #3
\revert TimeSignature.stencil
}
{
<< \high \\ \medium >>
}
\new TabStaff = "Low"
\with {
\omit StaffSymbol
\override VerticalAxisGroup.staff-staff-spacing = #'(
(basic-distance . 2)
(padding . 2))
stringTunings = \stringTuning <c,>
fretLabels = \markuplist {
"///a" \null
"//a" \null
"/a"
\column { \vspace #.15 "a" }
}
}
{
\low
}
\new GrandStaff <<
\new Staff {
\clef "treble_8"
<< \high \\ \medium>>
}
\new Staff {
\clef "bass"
<< \low >>
}
>>
>>
\layout {
\context {
\TabStaff
\omit Clef
tablatureFormat = #fret-letter-tablature-format
}
}
}
_______________________________________________
lilypond-user mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/lilypond-user