Status: Accepted
Owner: ----
Labels: Type-Documentation
New issue 2722 by [email protected]: NR 2.4.1 Default tablatures
harmonics notes in Staff are one octave lower
http://code.google.com/p/lilypond/issues/detail?id=2722
Federico Bruni reported here:
http://lists.gnu.org/archive/html/bug-lilypond/2012-08/msg00018.html
From original post:
--------------------
Hi
in the three harmonics snippets below, the pitches in Staff are not
correct, at least for a guitar:
http://lilypond.org/doc/v2.15/Documentation/notation/common-notation-for-fretted-strings#index-_005charmonic-2
We should add \clef "G_8", like in this example:
\layout { \override Voice.StringNumber #'stencil = ##f }
firstHarmonic = {
d'4\4\harmonic
g'4\3\harmonic
b'2\2\harmonic
a,
\harmonicByFret #7 a,2\5
}
\score {
<<
\new Staff { \clef "G_8" \firstHarmonic }
\new TabStaff { \firstHarmonic }
>>
}