bug-lilypond
[Top][All Lists]
Advanced

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

Re: \finger \markup \tied-lyric option for tie to appear above numbers


From: tisimst
Subject: Re: \finger \markup \tied-lyric option for tie to appear above numbers
Date: Tue, 28 Apr 2015 10:31:54 -0700 (MST)

Eugene,

I had to do this recently, so here's a simple function catered for this
exact purpose. It uses two string numbers as input and looks very similar
to the normal downward tie (and could be further developed to act more
robustly like the \tied-lyric function, but my needs didn't stretch that
far):

#(define-markup-command (tied-finger-up layout props f1 f2)
   (string? string?)
   (interpret-markup layout props
     #{
       \markup {
       \override #'(baseline-skip . 1.2)
       \center-column {
         \scale #'(1 . -1) \musicglyph #"ties.lyric.default"
         \concat { #f1 \hspace #0.6 #f2 }
       }
       }
     #}
   ))

{ d''2\finger \markup { \tied-finger-up #"1" #"4" } }

Like I said, it could be further developed so that it follows the same
input syntax of #"1~4", but there's still some Scheme-fu for me to come to
grips with. I agree, though, that it would be nice to just write "1^~4"
into the \tied-lyric function and have it do it automagically :-)

Maybe I'll have a look at that myself. The only issue I can't quickly
understand is how to use the various markup functions in Scheme-mode.
Perhaps someone with more experience can help out here.

- Abraham

On Tue, Apr 28, 2015 at 10:15 AM, Eugene Cormier [via Lilypond] <
address@hidden> wrote:

> > I'm not top posting.
>
> Hi folks, I'm working on a back score that requires the following:
> { d''2\finger \markup \tied-lyric #"1~4" }
>
> but I can't seem to find a way to make the tie placement above the
> numbers. Is there a way to override? Should an easier method be added.
>
> I have tried the following with no luck:
> \override Tie.direction = #UP
> \tieUp
> \tied-lyric #"1^~4"
> etc....
>
> Eugene
>
> --
> Eugene Cormier
> ---------------
> Full-time Instructor
> Acadia University
> www.eugenecormier.com
> [hidden email] <http:///user/SendEmail.jtp?type=node&node=175595&i=0>
> Office: Denton Hall Rm.235
> Office Hours: Monday & Wednesday 10:30-11:30 (or by appointment)
> Phone: (902) 585-1329
>
>
> ---------------
> Statement of Confidentiality
> This message (including attachments) may contain confidential or
> privileged information intended for a specific individual or
> organization. If you have received this communication in error, please
> notify the sender immediately. If you are not the intended recipient,
> you are not authorized to use, disclose, distribute, copy, print or rely
> on this email, and should promptly delete this email from your entire
> computer system.
>
>
> _______________________________________________
> bug-lilypond mailing list
> [hidden email] <http:///user/SendEmail.jtp?type=node&node=175595&i=1>
> https://lists.gnu.org/mailman/listinfo/bug-lilypond
>
>
> ------------------------------
>  If you reply to this email, your message will be added to the discussion
> below:
>
> http://lilypond.1069038.n5.nabble.com/finger-markup-tied-lyric-option-for-tie-to-appear-above-numbers-tp175595.html
>  To start a new topic under Bugs, email
> address@hidden
> To unsubscribe from Lilypond, click here
> <http://lilypond.1069038.n5.nabble.com/template/NamlServlet.jtp?macro=unsubscribe_by_code&node=2&code=dGlzaW1zdC5saWx5cG9uZEBnbWFpbC5jb218Mnw4MzU3Njg3MDU=>
> .
> NAML
> <http://lilypond.1069038.n5.nabble.com/template/NamlServlet.jtp?macro=macro_viewer&id=instant_html%21nabble%3Aemail.naml&base=nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.view.web.template.NodeNamespace&breadcrumbs=notify_subscribers%21nabble%3Aemail.naml-instant_emails%21nabble%3Aemail.naml-send_instant_email%21nabble%3Aemail.naml>
>




--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/finger-markup-tied-lyric-option-for-tie-to-appear-above-numbers-tp175595p175599.html
Sent from the Bugs mailing list archive at Nabble.com.


reply via email to

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