lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: I'm not top posting. (markup for tabstaff ?)


From: Thomas Morley
Subject: Re: I'm not top posting. (markup for tabstaff ?)
Date: Wed, 30 May 2012 00:08:29 +0200

2012/5/28 -Eluze <address@hidden>:
>
>
> 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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]