[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: guitar slides snippets in the LSR
From: |
Thomas Morley |
Subject: |
Re: guitar slides snippets in the LSR |
Date: |
Mon, 5 Aug 2024 09:39:54 +0200 |
Am Mo., 5. Aug. 2024 um 05:49 Uhr schrieb Federico Bruni via
bug-lilypond <bug-lilypond@gnu.org>:
>
> Hi folks
>
> This was reported 10 years ago:
> https://lists.nongnu.org/archive/html/bug-lilypond/2014-02/msg00326.html
>
> Now the string numbers have been removed, but there's still a sentence
> to be removed:
>
> "String numbers are necessary for TabStaff because automatic string
> calculations are different for chords and for single notes."
>
>
> The snippet is not using string numbers, so saying that they are
> necessary doesn't make sense.
>
> Can anybody fix the snippet in the LSR?
>
>
> Thanks
>
> Federico
Is this about the doc-tagged https://lsr.di.unimi.it/LSR/Item?id=803 ?
Isn't it more that StringNumber _may_ be needed, like
%% proposal:
Slides for chords are indicated by default in both Staff and TabStaff.
String numbers may be necessary for TabStaff because automatic string
calculations are different for chords and for single notes.
myMusic = \relative c' {
<c e g>1 \glissando <f a c>
<cis, eis gis>1 \glissando <f a c>
<cis eis gis>1 \glissando <f a c\3>
}
\score {
<<
\new Staff {
\clef "treble_8"
\omit StringNumber
\myMusic
}
\new TabStaff \myMusic
>>
}
Cheers,
Harm