Re: Non-english letters in title and text
On Tue, Jun 05, 2007 at 09:39:44PM +0200, Mats Bengtsson wrote: > >I would guess so, yes. The reason I am using 2.8.7 is because this is > >the version that comes with Debian Etch. > > > > > I hope you have realized that the generic Linux installation > package available at www.lilypond.org -> Downloads works > excellently also on Debian. > > /Mats > This is true, but those running Rosegarden under Sid (and perhaps Lenny/Testing) will have discovered that Lilypond is now a dependency, not a Recommends. This means that unless you're careful an upgrade could install the 2.8 Lilypond in the repository which will cause all sorts of conflicts. The easy answer is to use equivs -- this fools apt into thinking that a package (or a particular version) is installed when it isn't. Check the apt manual for more info. -- = Cameron Horsburgh = ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
Using \allowPageTurn
Hi folks, I want to use the new \allowPageTurn command to control the page turning in a piece I'm setting. The manual (section 11.4.4 Optimal page turning) says: 'There are two steps to using this page breaking function. First, you must enable it in the \paper block. Then, you must tell the function where you would like to allow page breaks.' The second part is easy enough, but I don't see any instructions for enabling it in the \paper block. Any clues (or am I missing something obvious?) -- = Cameron Horsburgh = ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
Re: Using \allowPageTurn
On Wednesday 06 June 2007 21:31, Cameron Horsburgh wrote: > Hi folks, > > I want to use the new \allowPageTurn command to control the page > turning in a piece I'm setting. The manual (section 11.4.4 Optimal > page turning) says: > > 'There are two steps to using this page breaking function. First, you > must enable it in the \paper block. Then, you must tell the function > where you would like to allow page breaks.' Section 11.4.2 tells you how to enable a particular page-breaking algorithm in the \paper block. I guess it would be good to include a reference to that in later sections as well. ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
Re: need to generate mass quantities of random notes for practice
Rune Zedeler wrote: > > plasmacarwash wrote: > >> I'm a newbie and I'd like to create a blithe score of quarter notes >> purely >> for practice from middle c up an octave and half to g. > > This .ly outputs 256 random notes. > It will produce the same 256 random notes each time you run it, but you > can create 256 new random notes by simply replacing the randomish number > at the top of the file with another. > > > \version "2.10.0" > \score { > { #(let ((random-state (seed->random-state 1674234))) > (ly:export > (make-music 'SequentialMusic 'elements >(map (lambda x > (let ((idx (random 12 random-state))) >(make-music 'EventChord > 'elements (list (make-music 'NoteEvent > 'duration (ly:make-duration 2 0 1 1) > 'pitch (ly:make-pitch (quotient idx 7) > (remainder idx 7) > 0)) > (make-list 256) > } > } > > > ___ > lilypond-user mailing list > lilypond-user@gnu.org > http://lists.gnu.org/mailman/listinfo/lilypond-user > > Glückwünsche! Rune. I have to take a moment to acknowledge the unique give-and-take of this forum and the help I've been getting around Lilypond already. It compells me to get good at this. Thank-you so much, everbody. much love, JWPeek -- View this message in context: http://www.nabble.com/need-to-generate-mass-quantities-of-random-notes-for-practice-tf3850288.html#a10997827 Sent from the Gnu - Lilypond - User mailing list archive at Nabble.com. ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
Variant mensual ligatures?
I'm trying to set the Bodleian MS. Canon. Misc. 213 (early renaissance manuscript, perhaps the first in void mensural notation) in a form that captures most of the peculiarities of the copyist's notation, but uniformly readable. I've solved several of the problems, but ... The copyist uses a variant of the descending semibreves mensural ligature, with a slanting box instead of the two square noteheads (this is shown in the Wikipedia page on Mensural Notation http://en.wikipedia.org/wiki/Mensural_notation#Ligatures in the leftmost entry on line 5 of the table). The notation looks just like the descending breve ligature, except that the stem goes up instead of down. I don't expect the Lilypond mensural notation to provide this variant directly, so I'm trying to find the right tweak in the source. There seems to be no hook for mensural ligatures in the Scheme source. I have stared at mensural-ligature-engraver.cc and mensural-ligature.cc without absorbing any clue as to where/how the choices involved in creating ligatures are actually made. It appears that there should be some invocation of spanners and maybe beams to generate the slanted forms, but I can't find the right spot in the code. So, pointers into the code will be highly appreciated. Of course, if someone wants to provide selectable variant ligature forms, ... :-) When I've accomplished enough to make a useful example, I'll post some of my techniques. Cheers, Mike O'Donnell http://people.cs.uchicago.edu/~odonnell/ ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
break in measure
Hello, Lilypond formats a score and tries to fit as much as possible at the first page. Unfortunately the piece is too long and I have one remaining line at the last page. Therefore I would like to relax the lines at the pages before without entering manual breaks. How can I say "not more than x measures per line" or just "use more space"? /Helge ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
Re: break in measure
On 6/7/07, Helge Kruse <[EMAIL PROTECTED]> wrote: Hello, Lilypond formats a score and tries to fit as much as possible at the first page. Unfortunately the piece is too long and I have one remaining line at the last page. Therefore I would like to relax the lines at the pages before without entering manual breaks. How can I say "not more than x measures per line" or just "use more space"? If you set ragged-last-bottom to ##f in the paper block, then Lilypond will try to avoid the situation you describe. Alternatively, you can set system-count to a number in the paper block to force Lilypond to use that many systems. Finally, you can look at the chapter on horizontal spacing in the manual to see how to get Lilypond to prefer more widely spaced lines. ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user