lilypond-user
[Top][All Lists]
Advanced

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

Re: music-to-markup


From: David Kastrup
Subject: Re: music-to-markup
Date: Wed, 23 Jul 2014 18:52:11 +0200
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.4.50 (gnu/linux)

Urs Liska <address@hidden> writes:

> is it possible to take a music expression and print out its literal
> input?

Sort of.

> In other words: Could I write a function "\example" that takes a music
> expression as an argument and that first outputs the input code as
> text and then as a score?
>
> So that
>
> \example {
>   \relative c' {
>     c8 d e
>   }
> }

Well, if you write

example =
#(make-scheme-function (parser location music) (ly:music)
...
then (ly:input-both-locations location)
will return

-- Function: ly:input-both-locations sip
     Return input location in SIP as ‘(file-name first-line first-column
     last-line last-column)’.

So you'll be able to take the input location information and read the
corresponding source from the file.

It is sort of annoying that LilyPond does not offer something already
doing that since it _does_ have the information available (as you can
see when it produces error messages).

-- 
David Kastrup



reply via email to

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