2012/5/28 -Eluze <elu...@gmail.com>:
>
>
> damien-43 wrote:
>>
>> dear lilypond users/contributers.
>> please can you help i would like to create
>>  a bar of music with 2 mimims (1/2 notes)
>> one on middle c and the other a tone higher on d.
>> the d i would like to put into parentheses.
>>  and above it i would like to mark up
>> the text "BU".
>> finally i would like to do this in a TabStaff only.
>> so far I have got
>>
> this will probably do:
>
> \new TabStaff \relative c {
>  \tabFullNotation
>  c2^"BU"
>  \parenthesize d2
> }
>
> Eluze

Hi,

If you don't want to use \tabFullNotation, try:

\version "2.14.2"

mus = \relative c {
          c2^"BU"
          \parenthesize d2
}

\new StaffGroup <<
    \new Staff \with {
                \override TextScript #'stencil = ##f
                \override ParenthesesItem #'stencil = ##f
        }
           { \clef "G_8" \mus }
    \new TabStaff
      \new TabVoice \with { \revert TextScript #'stencil }
             \mus
>>

HTH,
  Harm

_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to