"ignoring between-system-padding"

2009-02-06 Thread Tom Hall
Hello List I have a generous between-system-padding = #6 for my score, but this gets overriden when the pdf is created, with the following message: warning: Can't fit systems on page -- ignoring between-system-padding Is there a way to maintain the system padding I want, at the expense of how m

longfermata over measure rest?

2009-02-04 Thread Tom Hall
Hello List \fermataMarkup does the trick for a regular fermata over a measure rest, is there something like \longfermataMarkup ? Any other way to do this ? Regards Tom ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailma

vertical system spacing -adjusting only selected systems

2009-01-31 Thread Tom Hall
Hello List I have a piece of music for a solo (single stave) instrument, with about 10 systems per page. Of those, I use \bar "||" \break for about two systems per page, and wish to add additional space/padding before the next system in those cases (these breaks separate subsections of the piece

Re: Stopwatch time in markup

2009-01-25 Thread Tom Hall
OK, I'll do it this way, the arguments to the music-fn are now strings and not integers, so no integer-> string conversion needed. It would be better to still use integers and then pad a 0 where required, but I'm not sure how to do this. stopwatch = #(define-music-function (parser location minu

Re: Stopwatch time in markup

2009-01-25 Thread Tom Hall
Hello Mark Mark Polesky yahoo.com> writes: > Don't forget you can store all the formatting as a music-function: > > { c'1 \timestamp #4 #33 c' } This works well for most times, except when secs <10 { c'1 \timestamp #4 #03 c' } Here 03 gets passed in as an integer of 3 I guess so the result l

Re: Stopwatch time in markup

2009-01-24 Thread Tom Hall
Hello Mark Mark Polesky yahoo.com> writes: > Don't forget you can store all the formatting as a music-function: ... > { c'1 \timestamp #4 #33 c' } Thanks very much Mark, for this. I had been trying to make just such a function earlier today, after reading through 6.1.3 Paired substitution fun

Re: utf-8 characters

2009-01-24 Thread Tom Hall
James E. Bailey googlemail.com> writes: > > { > > \mark \markup \rounded-box { > > \small { > > \concat { 4\char ##x2032 } > > } > > } c'2 > > } > > > > error: > > > > (process:440): Pango-WARNING **: Error loading GDEF table 28333 > > > > ...

Re: Stopwatch time in markup

2009-01-24 Thread Tom Hall
Ole Schmidt gmx.net> writes: > > when I move the brace: > % > \version "2.12.1" > > { > \mark \markup { \rounded-box > \small \concat { 4' 33'' } > } c'2 > } > % > > it works but not with the prime and double prime characters copy and pasted in, that gives the Pango-WA

Re: utf-8 characters

2009-01-24 Thread Tom Hall
James E. Bailey googlemail.com> writes: Hello James > > I also get an error as follows when trying the code below: > > > > Regards > > > > Tom > > > > > > error: syntax error, unexpected SCM_TOKEN > > \concat { 4/char > > ##x2032 } >

Re: utf-8 characters

2009-01-24 Thread Tom Hall
James E. Bailey googlemail.com> writes: > > There may be an easier way. In osx, you have utf-8 on by default. So > you don't need to use the lilypond special of inserting utf-8 > characters. Which, by the way, mark's way I don't understand, it uses > scheme. The easier way is to just use \

utf-8 characters

2009-01-24 Thread Tom Hall
Hello List I understand the way to put special characters into markup is as below (from Mark's reply to the stopwach question below - although missing the struck out letters - read on). But how do I strike out the "char" part in LilyPond (Mac X.4.11)? Unlike, other charcters, like 中, for example

Re: Stopwatch time in markup

2009-01-23 Thread Tom Hall
Hello Neil Neil Thornock gmail.com> writes: > See the change below: thanks for that, but it's the same difference here using your suggestion (Mac PPC X.4.11). Is it working for you? Regards Tom > > > > \version "2.12.1" > { >  \mark \markup \rounded-box { \small { 4'

Stopwatch time in markup

2009-01-23 Thread Tom Hall
Hello List I want to print stopwatch timings in a score, surrounded by a little box. I've been through the help files and the archives of this list, but since quotation marks are special characters, it's not straight-forward and I've not managed to get this right. I'm aiming for somthing like:

Re: tuplet bracket required, override doesn't work?

2009-01-20 Thread Tom Hall
Thanks guys for your responses, most helpful! Regards Tom. ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user

tuplet bracket required, override doesn't work?

2009-01-19 Thread Tom Hall
Hello List A triplet that begins with a quaver (8) rest, followed by a crotchet (4) note, by default prints no bracket. This I thought unusual, more so that an overide as below seems to make no change either. Is there a simple way to have brackkets print by default in such cases? \override Tuple

Re: Artificial harmonics with sounding pitch in parenthesis

2009-01-12 Thread Tom Hall
Carl D. Sorensen byu.edu> writes: > Yes, this is a job for scheme, because parenthesize is a music function, and > it needs to have music following it. That's why you can't move it into an > identifier. > > The custosNote example in Section 6.1.2 of the Notation Reference should > give you the

Re: Beam collision next note's accidental within single voice

2009-01-12 Thread Tom Hall
hough the third is tempting because simple, it goes against my strict self-enforced stem direction policy. I think the e-flat shifting to the right is what _should_ happen since horizontal spacing is always less strict than, say, stem legnths? So I'd be interested to know how to do a hor

Beam collision next note's accidental within single voice

2009-01-12 Thread Tom Hall
Hello list how can I move a beamed note (the e-flat below) to the right, to avoid collision of the accidental with the beam of the preceding note? I've managed to lift the beams OK by overriding the beam positions, but what's needed i think is a horizontal right shift e-flat. I've looked at pos

Re: Artificial harmonics with sounding pitch in parenthesis

2009-01-12 Thread Tom Hall
Thanks Jon that was really helpful. From your post and lily docs, I've cobbled together the following below, which seems to work OK, aiming to use a global variable to save some space. A question about this: is there a way to move the parenthesisation (\parenthesize) to within the global variab

Artificial harmonics with sounding pitch in parenthesis

2009-01-12 Thread Tom Hall
Hello List is it possible to combine harmonics notation with a small stemless parenthesized note indicating the sounding pitch of a string harmonic? Something like -but also including a small stemless notehead (\tiny?) for the e'' This is common in C20th notation. I'm not familiar enough w