Fingering Instructions
Hello, In the following code, I need the fingering instructions to be on the left of every note, so I use " \set fingeringOrientations = #'(left)". This works fine with the first couple of notes, but afterwards, the finger numbers begin reappearing above the note which is the default behaviour ( Note 8 ). Is there any reason for that? Thank you \score { \relative { \partial 2. << { a'8[ b] c[ d] e[ f] } \\ { r4 r2 } >> | \set fingeringOrientations = #'(left) << { 2. c8 b } \\ { d,[ e] f[ g] a2 } >> | << { 4 2. } \\ { a,2 8( d) e4 } >> } } \version "2.8.0" ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
Re: Fingering Instructions
Kamal wrote: > Hello, > In the following code, I need the fingering instructions to be on the > left of every note, so I use " \set fingeringOrientations = #'(left)". > This works fine with the first couple of notes, but afterwards, the > finger numbers begin reappearing above the note which is the default > behaviour ( Note 8 ). Is there any reason for that? > > Thank you The problem is that the setting you've used only applies to the first voice, and dies when that voice dies. You can either perform a few tricks to keep voice contexts alive, or the easier way is to move the Fingering_engraver from Voice to Staff: %% \score { \relative { \partial 2. << { a'8[ b] c[ d] e[ f] } \\ { r4 r2 } >> | \set Staff.fingeringOrientations = #'(left) << { 2. c8 b } \\ { d,[ e] f[ g] a2 } >> | << { 4 2. } \\ { a,2 8( d) e4 } >> } \layout{ \context{ \Voice \remove "Fingering_engraver" } \context{ \Staff \accepts "Fingering_engraver" } } } %% Cameron ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
how to get lilypond to ignore text when creating spaces
I am using text markup, and Lilypond kindly moves the chord symbols higher to accomodate them. But sometimes I want to use extra-offset to move the markup, and I want Lilypond to completely ignore the markup, i.e., not move the chord symbols higher. How to I get it to do this? ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
Re: how to get lilypond to ignore text when creating spaces
Currently I am doing something like this: \once \override TextScript #'Y-offset = #-5 \once \override TextScript #'extra-offset = #'(0.0 . 5.0) But it seems not to be the best way. How can I achieve the same effect? ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
problem with generated postscript
Hello, I have a strange problem with Lilypond-2.8.0 (I just generated it from scratch on my machine, a Sun sparc Solaris 10). All seems to be OK. Fonts are generated without any problem. However, I get a postscript file that I can see with gv, and looks correct, but is not printable. If I look at the pdf file, note heads seems missing. The last Lilypond version I generated was 2.7.12 and worked fine. I don't understand at all what happens. Could anybody give me an indication ? Thanks in advance for your help ! Regards. -- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= Guy DURRIEU ONERA/TIS/DTIMtel(33) 05.62.25.26.59 CERT, 2, avenue Edouard Belin B.P. 4025 fax(33) 05.62.25.25.93 31055 TOULOUSE CEDEX 4 FRANCE e-mail [EMAIL PROTECTED] =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
Re: how to get lilypond to ignore text when creating spaces
Did you read the section on Common Tweaks? It describes the padding property which often is the best way to move things vertically. /Mats Quoting dave k <[EMAIL PROTECTED]>: Currently I am doing something like this: \once \override TextScript #'Y-offset = #-5 \once \override TextScript #'extra-offset = #'(0.0 . 5.0) But it seems not to be the best way. How can I achieve the same effect? ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
Re: how to get lilypond to ignore text when creating spaces
LilyPond will ignore the extra-offset, but it will still move the chords according to the normal position of the text. If you don't want that, you can specify a fixed vertical extent of the Staff, see the section on Vertical Spacing and follow the link at the bottom of the page to the VerticalAlignment object for more information. /Mats Quoting dave k <[EMAIL PROTECTED]>: I am using text markup, and Lilypond kindly moves the chord symbols higher to accomodate them. But sometimes I want to use extra-offset to move the markup, and I want Lilypond to completely ignore the markup, i.e., not move the chord symbols higher. How to I get it to do this? ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
Re: Fingering Instructions
There shouldn't be any reason to move the engraver, just use \set Staff.fingeringOrientations ... or \set Score.fingeringOrientations ... to make the setting apply to all voices in the Stave or score, respectively. /Mats Quoting Cameron Horsburgh <[EMAIL PROTECTED]>: Kamal wrote: Hello, In the following code, I need the fingering instructions to be on the left of every note, so I use " \set fingeringOrientations = #'(left)". This works fine with the first couple of notes, but afterwards, the finger numbers begin reappearing above the note which is the default behaviour ( Note 8 ). Is there any reason for that? Thank you The problem is that the setting you've used only applies to the first voice, and dies when that voice dies. You can either perform a few tricks to keep voice contexts alive, or the easier way is to move the Fingering_engraver from Voice to Staff: %% \score { \relative { \partial 2. << { a'8[ b] c[ d] e[ f] } \\ { r4 r2 } >> | \set Staff.fingeringOrientations = #'(left) << { 2. c8 b } \\ { d,[ e] f[ g] a2 } >> | << { 4 2. } \\ { a,2 8( d) e4 } >> } \layout{ \context{ \Voice \remove "Fingering_engraver" } \context{ \Staff \accepts "Fingering_engraver" } } } %% Cameron ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
Re: More than one book?
If you have several \book blocks in a .ly file, then you will get one output PDF file for each \book. If the input file is called test.ly, then the outputs will be test.pdf test-1.pdf test-2.pdf ... if I remember correctly. /Mats Quoting Art Hixson <[EMAIL PROTECTED]>: I've wondered about this for a while. In the following section of the doc it says: 10.4.1 Paper size . . .if the \paper block is at the top of the file, then it will apply to all pages. If the \paper block is inside a \book, then the paper size will only apply to that book. The construction here sounds as if more than one \book might be possible although when I try it only the first book is recognized. I can envisage that multiple books could be useful. Is there a way? AH -- No virus found in this outgoing message. Checked by AVG Free Edition. Version: 7.1.385 / Virus Database: 268.3.1/292 - Release Date: 2006/03/24 ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
Re: Problems with titling layout
If you set the line width in the paper block instead of the layout block, then it should apply both to the titling and the music. Now it only applies to the music. /Mats Quoting Cameron Horsburgh <[EMAIL PROTECTED]>: Hi folks, I have a score set out as follows: ** \version "2.8.0" \header{ subtitle = \markup{\italic "Brantwood"} title = "I Know Thee Who Thou Art" poet = "Albert Orsborn" composer = "arr. Ray Steadman-Allen" arranger = "transc. Cameron Horsburgh" meter = "Version 1.0" instrument = "Full Score" } \score{ <> \layout{ line-width = #250 } } \paper{ #(set-paper-size "a4" 'landscape) % left-margin = #30 % horizontal-shift = #30 indent = #10 } If I compile this, the titling comes out fine, but the instrument names don't fit on the left hand side of the score. (I have 13 instruments in the music, so the first system doesn't fit on the first page. I'm happy with this--it gives me a nice title page). So I set line-width = #250 in the layout block and set left-margin = #30 in the \paper block. The music fits on the page quite nicely. However, the titles are all offset to the right, meaning that the title, subtitle and instrument name are off centre, and the composer and arranger don't fit properly on the page (please see the attached pdf). I tried setting horizontal-shift = #30, with the same effect. I don't remember this being a problem in the past. Any idea how to get my titles set in the right places without mucking up the rest of my score? Cameron ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
Re: how to get lilypond to ignore text when creating spaces
Mats Bengtsson ee.kth.se> writes: > > LilyPond will ignore the extra-offset, but it will still move the > chords according to the normal position of the text. If you don't want > that, you can specify a fixed vertical extent > of the Staff, see the section on Vertical Spacing and follow the link > at the bottom of the page to the VerticalAlignment object > for more information. > >/Mats I thought the vertical spacing parameters were for adjusting staves. I don't really care where the staves are, I just need Lilypond to put symbols without regard to the position of that markup. ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
Re: Fingering Instructions
Mats Bengtsson wrote: > There shouldn't be any reason to move the engraver, just use > \set Staff.fingeringOrientations ... or > \set Score.fingeringOrientations ... to make the setting apply to all > voices in the Stave or score, respectively. > > /Mats > Hmm, you're right. That was my first thought, and I did try that, but it didn't work at the time. It works now though. I must have done something weird. Sorry Kamal! Cam ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
Re: vertical spacing of StaffGroup
Werner LEMBERG wrote: What must I do to make \override VerticalAxisGroup #'minimum-Y-extent = #'(-10 . 10) work for the `StaffGroup' context? I want a score layout like this (each horizontal line represents a staff): You can't, technically: StaffGroup is just a bunch of staves with a bracket in front, and spanning bar lines. / |---| \new StaffGroup = "sg1" << |---| \new Staff = "s11" {...} |---| \new Staff = "s12" {...} \ \new Staff = "s13" {...} | >> | / \new StaffGroup = "sg2" << |---| \new Staff = "s21" {...} |---| ... |---| \ | | / |---| |---| |---| \ I could fiddle with VerticalAxisGroup of single staff lines, but... I could also insert invisible staves, but... If you're inserting something invisible, I'd recommend a Lyrics context. You have to make sure it's not hara-kiri'd though. -- Han-Wen Nienhuys - [EMAIL PROTECTED] - http://www.xs4all.nl/~hanwen LilyPond Software Design -- Code for Music Notation http://www.lilypond-design.com ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
howtoadjustdefaultlyricspacing
Yes there is! In layout block, do \layout { \context { \Lyrics \override \LyricSpace #'minimum-distance = #.8 } .8 works for me. Some prefer .6 Defaultlyricspacingisdefinitelytotootight. Fr. P ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
Chord Symbols
Quick question: I just upgraded to 2.6.3, and what used to be "E7#5" in a lead sheet now shows up as "E7/5." Also, what used to be Fmaj7#11 is now Fmaj/add11. Is there a guide out there somewhere that lists the various chord alterations, extensions, etc. so that I can fix the discrepancies? Also, how does one simply notate "E7alt?" Thanks, Lyle ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
Re: Leadsheet top staff line spacing inconsistent with rest of piece
See http://lists.gnu.org/archive/html/lilypond-user/2005-08/msg00085.html which hopefully solves your problem. /Mats Quoting Bryan Murdaugh <[EMAIL PROTECTED]>: Hi, I've got a simple leadsheet (Chords above staff, melody, and lyrics) and the very first line is spaced much further from the 2nd than the 2nd from the 3rd, etc.. From afar, my piece would look like this: - - - - - Any suggestions would be helpful, and if needed, I can include my .ly. Thanks in advance - Lilypond has changed the way I compose and transcribe! Bryan ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
Regression Tests?
I'm confused, trying to read old posts... What is the "Regression Tests" documents? Where do I locate them? I'm using 2.6.5 on a Win XP/Home machine...right now I'm at a point where I want to alter the way a couple of chords are printed, probably common tricks. I want a 13th to just have "13" in the chord symbol rather than "9 add 13" (which I know is really the same thing), and want a half diminished chord to be printed out as a "m7b5"... I've seen some posts about these subjects, but always mentioning the "Regression Tests", and that detail stumps me! Thanks! ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
Re: Mirror margins
> My question is about the margins. My songbook consists of a D-ring binder, so > I > need some space where I can punch the holes. I can only find settings for left > and right margins, but as you probably know, the holes are on the right on > even > pages and on the left on odd pages. So I need the margins to be mirrored on > even > and ood pages. For a hardware solution, try putting the sheets into transparent three-hole sheet protectors. As an added bonus, it will be a lot harder for them to tear loose by accident. Geoff ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
Re: PDF font issues in 2.7.40
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Well...after downloading 2.8.0, tweaking the ebuild, and upgrading my version of Ghostscript, all is well again. It's probably Ghostscript's fault; my previous version was 7.07 and I upgraded to 8.15. - -- Nicholas Haggin A.M.D.G. Find my public keys at my website: http://nhaggin.freeshell.org/ -BEGIN PGP SIGNATURE- iD8DBQFEIbS5YbuXiaDnyW4RAqqoAJ0Ul5DazR7Tr9N6XS/w7IPnlR8aFQCfRy26 qH/AFWjeb7NEapwLiog3QtQ= =QlFx -END PGP SIGNATURE- ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
MIDI2ly
how can I use MIDI2ly? I'm unsure, since I'm using Windows. Can someone help me? Ben ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
Manual tie formatting, slight inconsistency
I am personally extremely grateful for all of the great changes in LilyPond's tie formatting code during these last many months: both the improvements in the default tie formatting and especially the new ability to override the default formatting with manual adjustments. I have thought of an inconsistency though which may confuse some people, especially new users of LilyPond. As of version 2.7.40 and now 2.8, users may now manually format single ties (between two notes, or chords which have just one note tied between them) in addition to entire "tie columns" between chords that have more than one tied note. The inconsistency is that in the case of single ties, the manual formatting command(s) *precede* the first of the two tied notes (or chords that have only a single note tied), whereas when manually formatting entire tie columns, the formatting commnd(s) are placed *between* the two tied chords-- Example for single tie formatting (in this case, using chords with only a single tied note between them)-- \once \override Tie #'staff-position = #2.5 4 ~ 4 Example for multiple tie (tie column) formatting between chords-- 4 ~ \once \override TieColumn #'tie-configuration = #'((0 . -1) (4.5 . 1)) 4 As you can see, for single ties the command is placed _before_ the two tied notes or chords, but for multiple simultaneous ties, the command is placed _between_ the two chords. Best wishes all, Steve D New Mexico US -- If you can't be a good example, then you'll just have to be a horrible warning. -Catherine Aird ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
problems while building 2.8
Hello, I previously succeeded in building 2.6 and 2.7 from source on my computer (a Sun Sparc under Solaris 10). With 2.8, I experience new problems : - I cannot produce the man pages. help2man complains help2man: can't get `--help' info from convert-ly.py - I get another problem while building the fonts : > out/feta-braces-i.otf-table gmake[1]: *** No rule to make target `unknown/c059013l.pfb', needed by `out/CenturySchL-Ital.ttf'. Stop. Could anybody explain me what happens ? I am a bit puzzled. Thanks in advance for your help ! Regards. -- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= Guy DURRIEU ONERA/TIS/DTIMtel(33) 05.62.25.26.59 CERT, 2, avenue Edouard Belin B.P. 4025 fax(33) 05.62.25.25.93 31055 TOULOUSE CEDEX 4 FRANCE e-mail [EMAIL PROTECTED] =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
manually shifting notes
Hi, i'm using 2.6.4. have been looking through the manual, but seem to be missing the information i need. I want to manually shift a note horizontally. can someone help me with the syntax, or point me in the right direction in the manual. Thanks, James. _ ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
Re: 2.8 for Debian
> > > Or shall I file a "wishlist" bug report? > > please go ahead. > Done. http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=358663 Best, Gilles ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
Glissando?
I have been looking for a hint how to make this: Sometimes you find that all of the notes in a glissando have been written out in small notes. How can you do that in Lilypond? Regards Stig ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
Re: SciTE and Lilypond
On 3/24/06, Erik Sandberg <[EMAIL PROTECTED]> wrote: On Thursday 23 March 2006 04.56, RDNewman wrote:> At the SciTE web site , there seems to be a pretty cool source code editor> that can be set up to auto compile if the right commands are given. It> needs a lexer to support Lilypond though. >> I'm fairly new to Lilypond and am using it to support my efforts to learn> the guitar.>> Is there a recommended editor (I'm on Windows here, or I'd consider Kate or> something similar) that is already recognizes .ly files for syntax > highlighting and can handle make style compilations?[Erik]You could give jedit a try. It has a powerful lilypond mode, and it iscross-platform...except the Console plugin (newest version) is broken and you'll need to get another one, it does not support 2.8 yet, and that it had difficulties understand me writing tildes, etc etc, but other than that, it seems promising/Simon ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
Re: Hiding ledger lines?
> Have a look in the manual, Section 6.1.6 'Rests.' You can specify where > the rest goes: Thank you! I looked through the manual for "ledger" and never thought to re-read the section on rests to see what's been added. Geoff ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
Re: how to get lilypond to ignore text when creating spaces
Mats Bengtsson ee.kth.se> writes: > > Did you read the section on Common Tweaks? It describes the padding > property which often is the best way to move things > vertically. > >/Mats Padding is exactly what I _don't_ want - I need Lilypond to ignore that text markup when deciding where to put the other symbols. ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
Re: vertical spacing of StaffGroup
Graham Percival wrote: Umm. I've added a note to the internals... Han-Wen, could you check it for correctness? I dislike making non-specific changes when I'm not certain I understand the material... looks fine. -- Han-Wen Nienhuys - [EMAIL PROTECTED] - http://www.xs4all.nl/~hanwen LilyPond Software Design -- Code for Music Notation http://www.lilypond-design.com ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
Generating .png files with Lilypond
To create graphical files from a Lilypond file in Windows, I know only this rather complicated way with right click on the Lily icon, properties and then adding --png in the command phrase for starting Lilypond. Is there an other way (less complicated) or is it possible to provide in the program "something" that allows easy creating .png files? Thanks a lot Peter Kestens Belgium ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
Re: Mirror margins
On 23-Mar-06, at 3:17 AM, Bart Kummel wrote: I think I'm going to give lilypond-book a try, as Graham suggested. (Thanks for that Gramah!) I hope to find some time this weekend. Has someone already done this with lilypond-book? Please let me know your experiences and perhaps someone can be so kind to share some example with the mailinglist... I've done this without any problems. It's a large project (I think about 10 files involved for each individual part -- I like to separate definitions), so I can't easily post an example. But from what I recall, it all works just like you'd expect it to. - Graham ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
chord_name_exceptions.ly question
I tried to post about this before...I don't knwo why my post never showed up. I've looked at this file, and looked at a lot of posts about changing the way chord names are displayed, and all I get is more confused. Can somebody give me some guidance on how to create my own list of chord name exceptions, and how to implement it? I've read that the chord name exceptions file "shows" how to do this. I can't make heads nor tails from it...sorry if I'm being stupid about it. I'm sure once I understand it I'll truly feel stupid, but right now I just can't get a clue. Specifically, I'd rather a 13th chord be "A13" instead of "A9/add 13", and I'd like to have the half diminished chord show as "Am7/b5)... ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
LilyPond
I just discovered LilyPond and wanted a chance to thank everyone that has been involved with creating and maintaining it. I don't have much experience with music printing programs, but have use used CakeWalk (really just a sequencer), and Finale. Although these are good programs, I don't like the mouse point and click method very much. Sometimes small changes are so hard to figure out. e.g. Once I took an hour to figure out how to move a Coda sign from one measure to another! Of course, I could be a little dense, but still, it shouldn't be that hard. In contrast, LilyPond is a breath of fresh air. I allows me to manipulate where things are put in a much more natural way. I feel that I have complete control. Even the first piece I entered, I was able to figure out how to correct all my mistakes in a short time by reading the manual and just editing a little. I think you have a wonderful program. -Dave ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
Re: Regression Tests?
http://lilypond.org/doc/v2.8/input/regression/collated-files.html..seems to be a good guess :)/Simon On 3/22/06, Edward Ardzinski <[EMAIL PROTECTED]> wrote: I'm confused, trying to read old posts...What is the "Regression Tests" documents? Where do I locate them?I'm using 2.6.5 on a Win XP/Home machine...right now I'm at a point where Iwant to alter the way a couple of chords are printed, probably common tricks. I want a 13th to just have "13" in the chord symbol rather than "9 add 13"(which I know is really the same thing), and want a half diminished chord to beprinted out as a "m7b5"... I've seen some posts about these subjects, but always mentioningthe "Regression Tests", and that detail stumps me!Thanks!___lilypond-user mailing list lilypond-user@gnu.orghttp://lists.gnu.org/mailman/listinfo/lilypond-user ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
lilypond-book under winXP
I'm having some problems running lilypond-book under WinXP. I get the same error no matter what I do. Even if I type in the lilypond-book-example from the Users Guide. The errormsg I get is written below. I just upgraded to version 2.8 but the problem was there in version 2.6 as well. If anyone could give me a hint, as to where I should start looking for the problem, I would be very thankfull! /Morten And now the errorMsg: Reading bog.lytex... Running latex...Traceback (most recent call last): File "C:\Programmer\LilyPond\usr\bin\lilypond-book.py", line 1762, in ? main () File "C:\Programmer\LilyPond\usr\bin\lilypond-book.py", line 1716, in main chunks = do_file (file) File "C:\Programmer\LilyPond\usr\bin\lilypond-book.py", line 1611, in do_file set_default_options (source) File "C:\Programmer\LilyPond\usr\bin\lilypond-book.py", line 759, in set_defau lt_options textwidth = get_latex_textwidth (source) File "C:\Programmer\LilyPond\usr\bin\lilypond-book.py", line 1416, in get_late x_textwidth ly.system ('latex %s' % tmpfile, be_verbose=global_options.verbose) File "C:\Programmer\LilyPond\usr\share\lilypond\current\python\lilylib.py", li ne 95, in system stderr=stdout_setting) File "C:\Programmer\LilyPond\usr\lib\python2.4\subprocess.py", line 542, in __ init__ errread, errwrite) File "C:\Programmer\LilyPond\usr\lib\python2.4\subprocess.py", line 899, in _e xecute_child errpipe_read, errpipe_write = os.pipe() AttributeError: 'module' object has no attribute 'pipe' ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
Re: how to get lilypond to ignore text when creating spaces
The chords are handled just like a stave, when it comes to vertical spacing. Think of it as an invisible rectangle around each stave and around each line of chords. These rectangles are placed edge to edge. The parameters described in this section describe how LilyPond determines the size of each of these rectangles. /Mats Quoting dave k <[EMAIL PROTECTED]>: Mats Bengtsson ee.kth.se> writes: LilyPond will ignore the extra-offset, but it will still move the chords according to the normal position of the text. If you don't want that, you can specify a fixed vertical extent of the Staff, see the section on Vertical Spacing and follow the link at the bottom of the page to the VerticalAlignment object for more information. /Mats I thought the vertical spacing parameters were for adjusting staves. I don't really care where the staves are, I just need Lilypond to put symbols without regard to the position of that markup. ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
Re: Generating .png files with Lilypond
I don't know if you find it more or less complicated, but I would start a Command Prompt (Start menu -> Programs -> Accessories), move to my working directory ('cd My Documents' or wherever) and run the command manually: lilypond --png myfile.ly /Mats Quoting Peter Kestens <[EMAIL PROTECTED]>: To create graphical files from a Lilypond file in Windows, I know only this rather complicated way with right click on the Lily icon, properties and then adding --png in the command phrase for starting Lilypond. Is there an other way (less complicated) or is it possible to provide in the program "something" that allows easy creating .png files? Thanks a lot Peter Kestens Belgium ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
Re: Pango, Lilypond and OTF
Joshua Goforth schreef: Is there a way to update pango in the binary release for Mac OS X? I want to use Adobe OpenType fonts for my lyrics, but the kerning is messed up. Apparently the culprit is pango. Can you send a short example (both .pdf and .ly), and the offending OTF file? It would be even better if you could file a bugreport with Pango development directly. Pango is 1.11.2, a very recent prerelease of 1.12 the latest version. -- Han-Wen Nienhuys - [EMAIL PROTECTED] - http://www.xs4all.nl/~hanwen LilyPond Software Design -- Code for Music Notation http://www.lilypond-design.com ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
Re: Regression Tests?
> What is the "Regression Tests" documents? Where do I locate them? They're in the documentation. They're probably installed on your hard drive, but they're also here: http://lilypond.org/doc/v2.6/input/regression/collated-files.html (well, 2.6.6 is, which should be close enough). It's a large file, so be ready. Geoff ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
Re: Problems with ties over line breaks
On Mon, Mar 20, 2006 at 08:54:58AM +1100, Cameron Horsburgh wrote: > The score I'm working on has ties going over a page/line break. On the > second page, one of the ties is hardly noticeable--in fact, I was > alerted to the problem by what I thought was a misplaced staccato! > [...] > http://web.netcall.com.au/horsburgh/Downloads/brantwood.pdf > > The problem is at the beginning of page 3 on the second cornet line > [...] I had the same problem (though not at the same location within the score (not at a page or line break), so I manually added a little extra space before the note the tie ends at, which lengthened the tie and made it more distinguishable as a tie) using a technique described in the manual at the end of section 10.5.6 (Horizontal Spacing)-- \once \override Score.SeparationItem #'padding = #1 -sd It is true that liberty is precious--so precious that it must be rationed. -Vladimir I. Lenin ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
Problem with Classical guitar notation
Hi all, I am having a little trouble engraving some classical guitar sheets. I am trying to edit some sheets and they have the notation showed at the jpg attached. I search lilypond documentation and haven´t found anything like that ( the C3 above the sheet ). Does someone can help me with that ? thanks all, Allan -- An application asked: "Requeires Windows 9x, NT4 or better", so I´ve installed Linux <> ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
is this a bug 2.8.0 with \turn ?
In the pdf from the code below measure 16 with the turn - the turn seems to have durational value throwing the rest of the piece off. Perhaps there is something I do not understand about current practise with turns but this seems wrong and I can't find a way to fix it. Thanks Jay \version "2.8.0" \header { title = "Prelude" composer = "Frederic Chopin, op. 28 #4" copyright = "for study purposes only" } upper = \relative c' { \clef treble \key g \major \time 2/2 \partial 4 b8.\p (b'16_\markup {"espressivo"} b2. c4 b2. c4 b2. c4 b2. bes4 a2. b4 a2. b4 a2. b8. a16 a2.) gis4\> ~ gis\! a8\< (b\!\> d c e, a\! fis2.) a4 (fis2.) \acciaccatura b8 (a4 g8 fis c->\< b dis fis \times 2/3 {d' c b\!)} b2. (c4 b2. c4 b2. c4. b8.\< ais16 ais4\turn g'\!\> fis8. e16\! e8\f dis c'\> dis, dis e g b, d c e e, a fis4.\!_\markup {"dim."} a8 fis2.)\p \acciaccatura b8 (a4 fis2.~ fis8.\< e16 e2.\! fis4_\markup {"smorz. - - - - -"}e2. fis4 e2) r2\fermata 2\pp ( 1\fermata) \bar "||" } lower = \relative c' { \clef treble \key g \major \time 2/2 } \score { \context PianoStaff << \context Staff = upper \upper \context Staff = lower \lower >> \layout { } \midi { \tempo 4=60 } } -- Childhood is a Journey not a race- Emma Sadinsky aged 8 Jay Hamilton Sound and Silence 206-328-7694 www.soundand.com ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
Re: is this a bug 2.8.0 with \turn ?
Title: Re: is this a bug 2.8.0 with \turn ? You have accidentally dotted the quarter note C in the measure before the turn. That's what's throwing your time off. From: "Jay Hamilton, Sound and Silence" <[EMAIL PROTECTED]> Organization: Sound and Silence Reply-To: [EMAIL PROTECTED] Date: Mon, 27 Mar 2006 18:37:47 -0800 To: "lilypond-user@gnu.org list" Subject: is this a bug 2.8.0 with \turn ? In the pdf from the code below measure 16 with the turn - the turn seems to have durational value throwing the rest of the piece off. Perhaps there is something I do not understand about current practise with turns but this seems wrong and I can't find a way to fix it. Thanks Jay \version "2.8.0" \header { title = "Prelude" composer = "Frederic Chopin, op. 28 #4" copyright = "for study purposes only" } upper = \relative c' { \clef treble \key g \major \time 2/2 \partial 4 b8.\p (b'16_\markup {"espressivo"} b2. c4 b2. c4 b2. c4 b2. bes4 a2. b4 a2. b4 a2. b8. a16 a2.) gis4\> ~ gis\! a8\< (b\!\> d c e, a\! fis2.) a4 (fis2.) \acciaccatura b8 (a4 g8 fis c->\< b dis fis \times 2/3 {d' c b\!)} b2. (c4 b2. c4 b2. c4. b8.\< ais16 ais4\turn g'\!\> fis8. e16\! e8\f dis c'\> dis, dis e g b, d c e e, a fis4.\!_\markup {"dim."} a8 fis2.)\p \acciaccatura b8 (a4 fis2.~ fis8.\< e16 e2.\! fis4_\markup {"smorz. - - - - -"}e2. fis4 e2) r2\fermata 2\pp ( 1\fermata) \bar "||" } lower = \relative c' { \clef treble \key g \major \time 2/2 } \score { \context PianoStaff << \context Staff = upper \upper \context Staff = lower \lower >> \layout { } \midi { \tempo 4=60 } } -- Childhood is a Journey not a race- Emma Sadinsky aged 8 Jay Hamilton Sound and Silence 206-328-7694 www.soundand.com ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user