Centered text lines in markuplist

2016-07-16 Thread Andrew Bernard
How does one centre a block of justified text spanning multiple pages? [Text here obviously abbreviated for the purposes of the MWE.] Andrew === snip \markuplist { \override #'(line-width . 60) \justified-lines { Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus sce

Re: Scheme controllable text spanner padding

2016-07-16 Thread dtsmarin
Thanks a lot David! The next step would be to make pairs of arg's but I think I can do this on my own. -- View this message in context: http://lilypond.1069038.n5.nabble.com/Scheme-controllable-text-spanner-padding-tp192729p192732.html Sent from the User mailing list archive at Nabble.com.

Re: Scheme controllable text spanner padding

2016-07-16 Thread David Kastrup
dtsmarin writes: > Hello, > > How can I create a function such as: \Rpad #2 which will control the padding > of a text spanner? > > It's only for reducing my code's size since using the \override blah blah > takes a lot of space if used many times! > To be absolutely clear this will not used for

Scheme controllable text spanner padding

2016-07-16 Thread dtsmarin
Hello, How can I create a function such as: \Rpad #2 which will control the padding of a text spanner? It's only for reducing my code's size since using the \override blah blah takes a lot of space if used many times! To be absolutely clear this will not used for common things that work well but

Missing warning about clashing note columns in 2.19

2016-07-16 Thread Malte Meyn
Is this a bug/regression? 2.18.2 warns about clashing note columns, 2.19.44 does not. \version "2.19.44" << c''4 \\ \stemUp a'2 >> ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user

Re: Different treatment of \repeat volta in midi

2016-07-16 Thread David Kastrup
Federico Bruni writes: > Il giorno sab 16 lug 2016 alle 16:31, pkarl ha > scritto: >> It would be so nifty if the following snippet produced equivalent >> output in the midi file to what is produced in the pdf: [Example using \repeat volta only in one Staff and expecting other Staves to inherit

Re: Different treatment of \repeat volta in midi

2016-07-16 Thread Federico Bruni
Il giorno sab 16 lug 2016 alle 16:31, pkarl ha scritto: It would be so nifty if the following snippet produced equivalent output in the midi file to what is produced in the pdf: \version "2.19.38" musicA = \relative { \set Staff.instrumentName = "A" \repeat volta 2 { c''4 d e

Different treatment of \repeat volta in midi

2016-07-16 Thread pkarl
It would be so nifty if the following snippet produced equivalent output in the midi file to what is produced in the pdf: \version "2.19.38" musicA = \relative { \set Staff.instrumentName = "A" \repeat volta 2 { c''4 d e f } f d e c \bar "|." } musicB = \relative {

Re: Defining a function that passes contents between braces to a markup

2016-07-16 Thread David Kastrup
Mojca Miklavec writes: > Hi, > > I've learnt some basics of scheme and managed to write some simple > functions, but I'm unable to figure out how to write a function that > would take all the contents between braces as an argument and return a > markup. > > I would be grateful even if I get just