Re: LSR search

2018-06-08 Thread Thomas Morley
2018-06-09 3:56 GMT+02:00 Andrew Bernard : > What has happened to the LSR search engine? It has different ordering > options, with the hard to understand 'late' and 'early' order, and choosing > those it fails to return any results. > > Has this code been changed recently? > > Where is the best

LSR search

2018-06-08 Thread Andrew Bernard
What has happened to the LSR search engine? It has different ordering options, with the hard to understand 'late' and 'early' order, and choosing those it fails to return any results. Has this code been changed recently? Where is the best place to post this issue? Andrew

Re: Understanding symbol-list? variable names

2018-06-08 Thread Simon Albrecht
On 09.06.2018 01:51, Aaron Hill wrote: By the by, I noticed a little inconsistency with the support for commas within symbol lists.   \version "2.19.81"   foo,bar = { c'4 }   {     \foo.bar % works     \foo,bar % error: syntax error, unexpected ','   } I would have expected the

Re: Understanding symbol-list? variable names

2018-06-08 Thread Aaron Hill
On 2018-06-08 04:35, Urs Liska wrote: Am 08.06.2018 um 12:43 schrieb David Kastrup: Urs Liska writes: But I can do { #(#{ \my.function #}) } Or $#{ \my.function #} but ugh. Could $ be extended to support something like `$\my.function` as an abbreviation of the above?

Add an arbitrary music property

2018-06-08 Thread Urs Liska
Hi, is there anything wrong with adding an arbitrary property to a SequentialMusic like that: \version "2.19.80" someNote = { c' d' } #(set! (ly:music-property someNote 'foo) "bar") \displayMusic \someNote ? The following is a MWE of a new extension I plan for scholarLY, and it seems to

Re: Understanding symbol-list? variable names

2018-06-08 Thread David Kastrup
Urs Liska writes: > Am 08.06.2018 um 12:43 schrieb David Kastrup: > >> http://lilypond.org/doc/v2.19/Documentation/changes/index.html >> >> >> >> Association list elements could previously be assigned values >> individually (for example, paper variables like >>

\markup doesn't seem to honor \paper values

2018-06-08 Thread Knute Snortum
Asking for a "friend". It seems that when you use a \markup command the values in the \paper block aren't honored. Here is a minimal example: %%% Start \version "2.19.81" chordNames = \chordmode { c1 f g a:m \break c f g:7 c \break } words = \lyricmode { Here_are some random lyrics

Re: Problem with arpeggio's

2018-06-08 Thread Malte Meyn
Hi Robert, please always try to give a minimal example. This could look like this: % \version "2.19.81" \new PianoStaff << \new Staff \with { connectArpeggios = ##t } << { a''2\arpeggio } \\ { \arpeggio } >> \new Staff {

Problem with arpeggio's

2018-06-08 Thread Robert Blackstone
Hi all, I'm transcribing a piano piece that ends with arpeggiated chords, both in the upper and the lower staff, but not connected across the staves. Here is approximately what the final chords should be, approximately because also the top note in the upper staff should be part of the

Re: Understanding symbol-list? variable names

2018-06-08 Thread Urs Liska
Am 08.06.2018 um 12:43 schrieb David Kastrup: Urs Liska writes: I can store variables with symbol-list? names like so: \version "2.19.80" my.note.one = { c'4 } my.note.two = { d'2 } {   \my.note.one   \my.note.two   \my.note.one } It is also possible

Re: Understanding symbol-list? variable names

2018-06-08 Thread David Kastrup
Urs Liska writes: > I can store variables with symbol-list? names like so: > >\version "2.19.80" > >my.note.one = { c'4 } >my.note.two = { d'2 } > >{ >   \my.note.one >   \my.note.two >   \my.note.one >} > > It is also possible to store functions in such

Understanding symbol-list? variable names

2018-06-08 Thread Urs Liska
I can store variables with symbol-list? names like so: \version "2.19.80" my.note.one = { c'4 } my.note.two = { d'2 } {   \my.note.one   \my.note.two   \my.note.one } It is also possible to store functions in such variables: my.function =