The below snippet shows a bug, the d,, note isn't affected by the octavation: (see bug.png)
\version "2.7.20" staffUp = \change Staff = up staffDn = \change Staff = dn octdn = { #(set-octavation -1) } octno = { #(set-octavation 0) } \new PianoStaff << \context Staff = "up" { \clef G \new Voice { \staffDn \octdn d,,2 \octno \staffUp f'2 } } \context Staff = "dn" { \clef F \skip 1 } >> %%% EOF %%% But if we insert a skip or a note before the \staffDn, then it works: (see nobug.png) The skip/note must have a duration, s1*0 does not work, sadly enough... (or it would be a quick workaround) \version "2.7.20" staffUp = \change Staff = up staffDn = \change Staff = dn octdn = { #(set-octavation -1) } octno = { #(set-octavation 0) } \new PianoStaff << \context Staff = "up" { \clef G \new Voice { \skip 1 \staffDn \octdn d,,2 \octno \staffUp f'2 } } \context Staff = "dn" { \clef F \skip 1*2 } >> %%% EOF %%% Any tips? /Jonatan -=( http://kymatica.com )=-
bug.png
Description: Binary data
nobug.png
Description: Binary data
_______________________________________________ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user