Re: String number spanner

2012-12-28 Thread Nick Payne
On 29/12/12 04:14, Phil Burfitt wrote: From: "Nick Payne" I'm stuck on the last part of getting this working - the part that is eluding me is getting a short vertical line drawn at the RH end of the spanner. According the the Internals reference, UP = 1 and DOWN = -1, and that works fine when

Re: Between-staff beam wrong direction

2012-12-28 Thread Shane Brandes
Try \override Beam #'concaveness = #x where is some negative value. It is in the LSR (lilypond snippet repository) Shane On Fri, Dec 28, 2012 at 5:24 PM, Mark Witmer wrote: > Hi, > > I'm trying to typeset something like the following example: > > \version "2.17.10" > > \new PianoStaff << > \n

Re: Trill and nonstandard expressive mark

2012-12-28 Thread Shane Brandes
The title page says for Clavecin or Pianoforte. So therefore not the harmonium. In any event it is very idiomatically piano music. If the marking "pf" is a straightforward expressive mark why is it not hard coded into Lilypond? it has been necessary to construct it as a separate markup. As a s

Between-staff beam wrong direction

2012-12-28 Thread Mark Witmer
Hi, I'm trying to typeset something like the following example: \version "2.17.10" \new PianoStaff << \new Staff = "up" \relative c'' { r4 \change Staff = "down" \stemUp c16 \change Staff = "up" \stemDown c, a } \new Staff = "down" \relative c'' { r4 s } >> The result is attach

Re: String number spanner

2012-12-28 Thread Olivier Biot
On Fri, Dec 28, 2012 at 6:14 PM, Phil Burfitt wrote: > From: "Nick Payne" > > > I'm stuck on the last part of getting this working - the part that is >> eluding me is getting a short vertical line drawn at the RH end of the >> spanner. According the the Internals reference, UP = 1 and DOWN = -1,

Re: String number spanner

2012-12-28 Thread Phil Burfitt
From: "Nick Payne" I'm stuck on the last part of getting this working - the part that is eluding me is getting a short vertical line drawn at the RH end of the spanner. According the the Internals reference, UP = 1 and DOWN = -1, and that works fine when I use the return value from the updown

Re: Writing a converter

2012-12-28 Thread Xavier Scheuer
On 28 December 2012 17:36, Noeck wrote: > For the purpose you mentioned, I would not use such a script but common > LilyPond functionality like variables. If you use ( ) for melismata, the > slurs are not shown in the KievanVoice but in the Voice context, like > you want it to be. > > music = {

Re: Writing a converter

2012-12-28 Thread Noeck
For the purpose you mentioned, I would not use such a script but common LilyPond functionality like variables. If you use ( ) for melismata, the slurs are not shown in the KievanVoice but in the Voice context, like you want it to be. music = { … } % with ( ) for melismata. and then \new Kieva

Re: Displaying "page x of y" in header / footer

2012-12-28 Thread Olivier Biot
Dear all, Replying to myself all I managed to do is the following "hack": add the following sneppet after the last \score {} block: \label #'theLastPage \markup \rounded-box { \tiny "" } Thios empty block displays nothing in the score and seems to solve the problem, although in a rather "hacki

Displaying "page x of y" in header / footer

2012-12-28 Thread Olivier Biot
Dear all, I can't find how to display the total number of pages in a score as part of the page header / footer. I tried adding a "theLastPage" label at the end of my score but it sometimes is off by one. I sadly cannot create a small snippet that reproduces the off-by one ("page 4 of 3") problem.