Am 03.04.2015 um 20:28 schrieb Mattes:
[...]

Well, think of it like this (slightly oversimplified):

  'tuplet' is a lilypond function, '\' will _call_ this function.
Let's quickly check that:

   guile> tuplet
     #<Music function #<procedure #f (parser location ratio tuplet-span music)>>

If you do '#(define t tuplet)'  't' will have the same value as 'tuplet':

  guile> (define t tuplet)
  guile> t
    #<Music function #<procedure #f (parser location ratio tuplet-span music)>>

If you write:

  t = \tuplet

't' would have the value of calling 'tuplet' .

  HTH RalfD

Hey, this is a concise yet brilliant explanation, thanks for sharing!

Marc


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

Reply via email to