Re: lyrics running wider than the staff
Michael Haynie wrote: I would be embarrassed to not have found that, except that it never occurred to me to look at the root node of the section, which doesn't suggest that it deals with such an odd topic. I've wondered if it might be a good idea to collect settings which have global formatting effects into one section, or at least creating a sort of index. As someone who creates thousand page documents ever other year, I can appreciate the difficulties ... All the global formatting options are listed in the program reference. Many manual pages have "commonly tweaked properties" which are designed to handle common cases (or simply give examples of the kinds of tweaks which are possible), but they are not the main source of that information. I agree that this specific case is not ideal; informal patches are appreciated. I don't do vocal music, so I am not the best person to be making changes to section 7.3. For more info, see http://lilypond.org/web/devel/participating/documentation-adding - Graham ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
Re: Line breaking every x bars
Christopher Culver wrote: I've played at the top of \score{... the example in the manual for line breaking every x beats so that I could have Lilypond place no more than 7 bars on each page of my orchestral score, but when I run Lilypond, it complains that it cannot provide such line breaking because of "constraints". The resulting PDF has the staves going over the right end of the page because it can't break onto the next page. Is there another way I could enable such breaking? I'm almost positive that you have a rhythmic mistake in your score. Please add barline checks | to find out where they are. - Graham ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
Glissandi between specific notes in a chord?
Hi again, The glissando below appears by default between the upper notes of the two chords, ie, upwards from b' to c''. Is there a way to gliss instead downwards from d' to c'? %%% BEGIN %%% \version "2.9.13" \new Staff { < d' g' b' >4 \glissando < c' g' c'' >4 } %%% END %%% -- Trevor Bača [EMAIL PROTECTED] ... like the dew, or like lightning ... one-gliss.png Description: PNG image ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
Tying only one note of a chord?
Hi, Is it possible to tie only one note of a chord? This snippet using the tie-configuration property of the TieColumn is basically what I'm looking for, except that the tie prints three times, giving too heavy a weight. %%% BEGIN %%% \version "2.9.13" \new Staff { < c' e' g' >4 ~ \once \override TieColumn #'tie-configuration = #'((-4 . -1) (-4 . -1) (-4 . -1)) < c' e' g' >4 } %%% END %%% Is there a way to say explicitly "tie only the e in the chord"? -- Trevor Bača [EMAIL PROTECTED] ... like the dew, or like lightning ... one-tie.png Description: PNG image ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
Sponsorship - Better Incipits / Ossai Staves.
Hi All, This email is mainly directed at Han-Wen but if others have ideas and suggestions then please don't hesitate. I'm looking to sponsor two features: 1: Better support for Incipits: looking at the current way of preparing incipits there isn't a way to restart the staff again e.g. to show the staff brackets etc to let reader know that the incipit ends and the staff restarts. Also there has be an incipit for the whole staff regardless of whether the clef or not values have changed or not. I've been trying examples of using markups to produce the incipit for a particular staff and then using manual overrides to shift it down and before the staff. As you can imagine this takes a lot of trial and error and can be quite time consuming to get one done let alone more. 2: The second feature is a better way to prepare ossia staves. I prepare a lot of baroque music and sometimes there a shortcuts in the notation for example: chords that should be played in the same way as the preceding bars. A fully functioning ossai stave would be beneficial. Any thoughts and feedback appreciated. Regards, Trent Johnston ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
Re: a tweak to the accidental engraver
Jon Wild wrote: I'm having difficulty figuring out how I should implement a tweak. The Accidental_engraver has a property called extraNatural, which for my current purposes I'd like to set to false. (This suppresses the extra natural when going directly from Gb to G#, for example.) Could someone demonstrate how I'd make this tweak? I haven't used this in a recent version but this is what I used last: \set Staff.extraNatural = ##f Paul Scott ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
a tweak to the accidental engraver
I'm having difficulty figuring out how I should implement a tweak. The Accidental_engraver has a property called extraNatural, which for my current purposes I'd like to set to false. (This suppresses the extra natural when going directly from Gb to G#, for example.) Could someone demonstrate how I'd make this tweak? Thanks. --Jon ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
neo-mensural time signatures
Hi, I'm trying to typeset a piece of renaissance music in neomensural style and would like to use the neo-mensural time signature glyphs. Unfortunately they are preset to decode 3/2 or 2/2 bars although the tempus imperfectum or perfectum should get translated into 2 or 3 semibrevis which means in lilypond into 2/1 or 3/1 (for a thorough explanation in german see section "Weisse Mensuralnotation (ca. 1430-1600)" at http://de.wikipedia.org/wiki/Mensuralnotation ) The result: If I set the timesignature to 3/2 I get double as many bars as wanted. Is there any workaround? Yours, Orm BTW: Is there any good reason for lilypond's translation of the tempus perfectum into 3/2? Maybe it'd be a good idea to change it altogether and for good in future versions? ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
Re: setting accidental style
Jon Wild wrote: On Wed, 26 Jul 2006, Paul Scott wrote: Where should I insert the line #(set-accidental-style 'no-reset) in my .ly file, in order to have accidentals be remembered across barlines? I tried outside the /book block, inside the /book block but outside the /score block, and inside the /score block. Each time I got the error "syntax error, unexpected MUSIC_IDENTIFIER" I can get it to compile with this but I don't know if it gives you what you want. There are no notes in the second "bar" that have the same accicentals as notes in the first "bar". This assuming you are thinking of each whole chord as a 4/4 bar. \book { \score { << \new Staff{ #(set-accidental-style 'no-reset) { 1 1 } } >> \layout { ragged-right = ##t \context { \Staff \remove "Time_signature_engraver" \remove "Bar_engraver" } } } \score { << { 1 1 } >> \layout { ragged-right = ##t \context { \Staff \remove "Time_signature_engraver" \remove "Bar_engraver" } } } } Paul - this gives me the way to do it, thanks very much. Notice that in the first score the D and E in the second chord are in an invisible new bar, so lilypond would usually not put a natural on it to cancel the Db and Eb in the first bar. With the set-accidental-style command within the \new Staff block, it does add the cancelling naturals, which is what I wanted. I will have to insert the command for every new \score block, however, since as you can see the second staff didn't include a natural sign on the F (in the second invisible bar) to cancel the Fb in the first bar. This version does what I want it do, but I still can't believe I need to be so verbose, with repeating everything for each score block: Kieren is right. I have done that before. You get the same result by just choosing a time signature that takes in the whole line (without #(set-accidental-style 'no-reset) ), I tried your example with \time 2/1 and it worked. Paul ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
Re: setting accidental style
On Wed, 26 Jul 2006, Paul Scott wrote: Where should I insert the line #(set-accidental-style 'no-reset) in my .ly file, in order to have accidentals be remembered across barlines? I tried outside the /book block, inside the /book block but outside the /score block, and inside the /score block. Each time I got the error "syntax error, unexpected MUSIC_IDENTIFIER" I can get it to compile with this but I don't know if it gives you what you want. There are no notes in the second "bar" that have the same accicentals as notes in the first "bar". This assuming you are thinking of each whole chord as a 4/4 bar. \book { \score { << \new Staff{ #(set-accidental-style 'no-reset) { 1 1 } } >> \layout { ragged-right = ##t \context { \Staff \remove "Time_signature_engraver" \remove "Bar_engraver" } } } \score { << { 1 1 } >> \layout { ragged-right = ##t \context { \Staff \remove "Time_signature_engraver" \remove "Bar_engraver" } } } } Paul - this gives me the way to do it, thanks very much. Notice that in the first score the D and E in the second chord are in an invisible new bar, so lilypond would usually not put a natural on it to cancel the Db and Eb in the first bar. With the set-accidental-style command within the \new Staff block, it does add the cancelling naturals, which is what I wanted. I will have to insert the command for every new \score block, however, since as you can see the second staff didn't include a natural sign on the F (in the second invisible bar) to cancel the Fb in the first bar. This version does what I want it do, but I still can't believe I need to be so verbose, with repeating everything for each score block: \book { \score { << \new Staff{ #(set-accidental-style 'no-reset) { 1 1 } } >> \layout { ragged-right = ##t \context { \Staff \remove "Time_signature_engraver" \remove "Bar_engraver" } } } \score { << \new Staff{ #(set-accidental-style 'no-reset) { 1 1 } } >> \layout { ragged-right = ##t \context { \Staff \remove "Time_signature_engraver" \remove "Bar_engraver" } } } } cheers --Jon ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
Re: layout across multiple scores
Hi, Jon: Do you know anything about the set-accidental-style command and where it should go in the .ly file? (see other thread) Not specifically -- but why not just use \time 60*4 (or whatever you need), since you're not showing the time-sig anyway... Best, Kieren. ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
Re: setting accidental style
Jon Wild wrote: On Wed, 26 Jul 2006, Paul Scott wrote: Where should I insert the line #(set-accidental-style 'no-reset) in my .ly file, in order to have accidentals be remembered across barlines? I tried outside the /book block, inside the /book block but outside the /score block, and inside the /score block. Each time I got the error "syntax error, unexpected MUSIC_IDENTIFIER" Can you give us a small non-working example? Sure. Here's an attempt at putting the line inside the /book block but outside any of the /score blocks: = \book { #(set-accidental-style 'no-reset) \score { { 1 1 } \layout { ragged-right = ##t \context { \Staff \remove "Time_signature_engraver" \remove "Bar_engraver" } } } \score { { 1 1 } \layout { ragged-right = ##t \context { \Staff \remove "Time_signature_engraver" \remove "Bar_engraver" } } } } I can get it to compile with this but I don't know if it gives you what you want. There are no notes in the second "bar" that have the same accicentals as notes in the first "bar". This assuming you are thinking of each whole chord as a 4/4 bar. \book { \score { << \new Staff{ #(set-accidental-style 'no-reset) { 1 1 } } >> \layout { ragged-right = ##t \context { \Staff \remove "Time_signature_engraver" \remove "Bar_engraver" } } } \score { << { 1 1 } >> \layout { ragged-right = ##t \context { \Staff \remove "Time_signature_engraver" \remove "Bar_engraver" } } } } Paul ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
Re: layout across multiple scores
On Wed, 26 Jul 2006, Kieren MacMillan wrote: The "ragged-right" and no time signature, etc. Did it observe the /layout block for you? Yes: Arg - I just double-checked and it works for me too, here at the office. But the same .ly file at home didn't work... Thank you Kieran. Do you know anything about the set-accidental-style command and where it should go in the .ly file? (see other thread) best regards --Jon W. ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
Re: layout across multiple scores
Hi, Jon: The "ragged-right" and no time signature, etc. Did it observe the / layout block for you? Yes: Picture 1.png Description: application/applefile FWIW, I'm using 2.9.13 on Mac OS X. Cheers, Kieren.___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
Re: setting accidental style
On Wed, 26 Jul 2006, Paul Scott wrote: Where should I insert the line #(set-accidental-style 'no-reset) in my .ly file, in order to have accidentals be remembered across barlines? I tried outside the /book block, inside the /book block but outside the /score block, and inside the /score block. Each time I got the error "syntax error, unexpected MUSIC_IDENTIFIER" Can you give us a small non-working example? Sure. Here's an attempt at putting the line inside the /book block but outside any of the /score blocks: = \book { #(set-accidental-style 'no-reset) \score { { 1 1 } \layout { ragged-right = ##t \context { \Staff \remove "Time_signature_engraver" \remove "Bar_engraver" } } } \score { { 1 1 } \layout { ragged-right = ##t \context { \Staff \remove "Time_signature_engraver" \remove "Bar_engraver" } } } } (I still have my \context block duplicated in every score block because I haven't solved that problem yet either) Many thanks --Jon Wild ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
Re: setting accidental style
Jon Wild wrote: Where should I insert the line #(set-accidental-style 'no-reset) in my .ly file, in order to have accidentals be remembered across barlines? I tried outside the /book block, inside the /book block but outside the /score block, and inside the /score block. Each time I got the error "syntax error, unexpected MUSIC_IDENTIFIER" Can you give us a small non-working example? Paul Scott ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
setting accidental style
Where should I insert the line #(set-accidental-style 'no-reset) in my .ly file, in order to have accidentals be remembered across barlines? I tried outside the /book block, inside the /book block but outside the /score block, and inside the /score block. Each time I got the error "syntax error, unexpected MUSIC_IDENTIFIER" Thanks --Jon W. ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
Re: layout across multiple scores Oops!
Paul Scott wrote: Jon Wild wrote: On Wed, 26 Jul 2006, Kieren MacMillan wrote: That works fine for me...? It works for me, in that it compiles and produces an output - just not the output I wanted, since all the /layout instructions are ignored. (The "ragged-right" and no time signature, etc.) Did it observe the /layout block for you? That would be weird! I am using the latest stable version, 2.8.something. At least ragged-right belongs in the \paper block (or at least works for me there). I didn't read that carefully enough. I was thinking about ragged-bottom. Paul ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
Re: layout across multiple scores
Jon Wild wrote: On Wed, 26 Jul 2006, Kieren MacMillan wrote: That works fine for me...? It works for me, in that it compiles and produces an output - just not the output I wanted, since all the /layout instructions are ignored. (The "ragged-right" and no time signature, etc.) Did it observe the /layout block for you? That would be weird! I am using the latest stable version, 2.8.something. At least ragged-right belongs in the \paper block (or at least works for me there). More in a minute. Paul ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
Re: layout across multiple scores
On Wed, 26 Jul 2006, Kieren MacMillan wrote: That works fine for me...? It works for me, in that it compiles and produces an output - just not the output I wanted, since all the /layout instructions are ignored. (The "ragged-right" and no time signature, etc.) Did it observe the /layout block for you? That would be weird! I am using the latest stable version, 2.8.something. Thanks -Jon ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
Line breaking every x bars
I've played at the top of \score{... the example in the manual for line breaking every x beats so that I could have Lilypond place no more than 7 bars on each page of my orchestral score, but when I run Lilypond, it complains that it cannot provide such line breaking because of "constraints". The resulting PDF has the staves going over the right end of the page because it can't break onto the next page. Is there another way I could enable such breaking? ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
Re: layout across multiple scores
Hi, Jon: That works fine for me...? Best, Kieren. ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
Re: layout across multiple scores
On Wed, 26 Jul 2006, Paul Scott wrote: Jon Wild wrote: How can I specify a layout block that applies to all scores in a book? I wrote a program to generate musical examples, and each snippet is to go on its own staff. So my program writes them in separate scores like this, each with its own layout block: Just put the single \layout block before the \book block Like this? still doesn't work: ==begin .ly file== \layout { ragged-right = ##t \context { \Staff \remove "Time_signature_engraver" \remove "Bar_engraver" } } \book { \score { { 1 1 } } \score { { 1 1 1 1 } } } ==end .ly file== any other suggestions? --Jon ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
Organization of vocal scores
Hi all, As I prepare to start on my second major vocal piece, I'm wondering if there's a nicer way to organize the lilypond file. My issue is that when I'm looking at the score to make corrections or tweaks, I mentally reference things based off the words. Lilypond, however, bases it off the notes, and so every time I want to change something I need to find the notes that the words are associated with. It gets worse when I need to do something in all 4 voice parts, as I need to find the same point in 4 different note collections. I could put comments throughout the notes sections indicating where various points in the lyrics are in relation to the notes - is this the best/only way to link them? I'm also looking at LilyPad (I'm on OS X), but it seems that I could organize the source better, rather than relying on the editor. Any tips/best-practices for larger, multi-part vocal music are much appreciated! Thanks! Benedict ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
Re: layout across multiple scores
Jon Wild wrote: Please don't use "Reply" to start a new thread. How can I specify a layout block that applies to all scores in a book? I wrote a program to generate musical examples, and each snippet is to go on its own staff. So my program writes them in separate scores like this, each with its own layout block: Just put the single \layout block before the \book block Paul Scott ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
Re: a metronome mark question
Hi, y'all -- How 'bout the attached as a starting point? Best, Kieren. \version "2.9.13" \layout { ragged-right = ##t } metMark = \mark \markup { \line \vcenter { "Swing" \hspace #0.5 \score { \relative { \voiceOne \times 2/3 { b'4 b8 } } \layout { line-width = 0.4\in indent = 0 \context { \Staff \remove "Clef_engraver" \remove "Time_signature_engraver" \remove "Staff_symbol_engraver" } } } } } \score { { \metMark g'1 } } ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
layout across multiple scores
How can I specify a layout block that applies to all scores in a book? I wrote a program to generate musical examples, and each snippet is to go on its own staff. So my program writes them in separate scores like this, each with its own layout block: ==begin .ly file== \book { \score { { 1 1 } \layout { ragged-right = ##t \context { \Staff \remove "Time_signature_engraver" \remove "Bar_engraver" } } } \score { { 1 1 1 1 } \layout { ragged-right = ##t \context { \Staff \remove "Time_signature_engraver" \remove "Bar_engraver" } } } } ==end .ly file== But when there are dozens of snippets in the file, the file is much bigger than it needs to be because of the duplication of layout instructions. Can I include a layout block once to cover all scores in the book? If so, where does it go? I tried this structure: \book { \layout { } \score { } \score { } } but that didn't work. Thanks for any tips. --Jon ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
Re: true Cmaj7 chord ?
[EMAIL PROTECTED] wrote: I would like to be able to write a true Cmaj7 chord. This is a I chord in the key of C major with an added scale tone 7th. There is no such chord as a Cadd(#7) which is spelled out in the Lilypond documentation examples as c e g b. c:maj7 This is in the manual. If you don't want the triangle notation you will have to read the Chord Names section. Paul Scott ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
Re: top posting?
Hi, Joe -- If you included Lily code in your post, the << and >> can sometimes be misconstrued by the server as top-posting. Try replacing them with other symbols. Cheers, Kieren. ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
top posting?
I tried to submit a bug regarding the documentation of chord symbols through the documentation bug reporting system, but my message appears to be rejected due to the false claim that I'm "top-posting" How can you "top post" when you are writing an original message? This seems to be just another bug. I don't feel any message should be rejected for "top posting as I happen to prefer top posting even though I didn't do it in my rejected bug report. ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
top posting?
I tried to submit a bug regarding the documentation of chord symbols through the documentation bug reporting system, but my message appears to be rejected due to the false claim that I'm "top-posting" How can you "top post" when you are writing an original message? This seems to be just another bug. I don't feel any message should be rejected for "top posting as I happen to prefer top posting even though I didn't do it in my rejected bug report. ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
true Cmaj7 chord ?
I would like to be able to write a true Cmaj7 chord. This is a I chord in the key of C major with an added scale tone 7th. There is no such chord as a Cadd(#7) which is spelled out in the Lilypond documentation examples as c e g b. A #7 in the key of C would be another C an octive above the root. A C7 chord does not belong to the key of C at all. It is a V7 chord in the Key of F. http://www.lilypond.org/doc/v2.8/Documentation/user/lilypond/Chord-name-chart.html#Chord-name-chart By the way the .ly file of this documentation page won't run in 2.8.5 ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
Re: A new freeware LilyPond editor for Windows
Thanks, this highlighter is making my work easier too and increased my understanding of how lp language works. > One question : Do you know how to use convert-ly under windows ? Is this a > separate program I cannot find or it is a command to add with > lilypond(-windows).exe I did not find ? The doc is only dealing with unix > or > Mac. I have not had the need for conversion yet because my scores worked fine the last time I upgraded. It is a command line just like lp, see section 12.3 of the current manual. Make sure you've backed-up your files before conversion and that the version number is present in the files you are converting. Rick Thibaut Chevalier-2 wrote: > > Thanks for the information, I have just downloaded ConTEXT and installed > your highlighting file and user commands and everything is working very > nice. I had endless problems with jEdit so I am glad you told about > ConTEXT. > I also find ConTEXT far better, particularly to access the different > opened > files (with the explorer on the left or the tabs). > > One question : Do you know how to use convert-ly under windows ? Is this a > separate program I cannot find or it is a command to add with > lilypond(-windows).exe I did not find ? The doc is only dealing with unix > or > Mac. > > And one suggestion : You should add in your text at the top of the .chl > file > to turn on the option : "Capture console output" for the compile user key > (F9...), else we don't know what happens (because the windows console > auto-close at the end of the compilation). > > Anyway thanks very much for your work on the highlighting ! > > > Thibaut. > > > > On 24/07/06, Rick Hansen (aka RickH) <[EMAIL PROTECTED]> > wrote: >> >> >> Hello, >> >> I just created and uploaded a syntax highlighting file for the ConTEXT >> editor. >> >> www.context.cx >> >> http://www.context.cx http://www.context.cx >> >> Look in the "forum" section for the highlighting file I uploaded and some >> instructions at the top for setting up the Function keys to do compiles, >> views, midi, etc. >> >> After using jEdit for a while I found ConTEXT to be far, far, far >> superior >> on the Windows platform. ConTEXT editor is light and very fast, whereby >> jEdit would take 30 seconds or more to open large or many files (over 1 >> meg). (But Java apps generally do run slow on Windows.) Also the jEdit >> highlighter misses a lot of reserved words. >> >> I have included every LilyPond user-public reserved word I can find >> through >> version 2.8.5. Also it will highlight imbedded Scheme code separately >> making LP proper much easier to read and keep separated from Scheme. It >> also separates Context objects from Layout objects, hilights strings, >> comments, markup commands, properties, action words like \set and >> \override >> differently, etc. I came up with several thousand LP reserved words and >> categorized them all, I also tested this hilighter with all the LP >> regression and input files. >> >> The only minor highlighting glitch I found with ConTEXT is that string >> ending quotes cannot be on a line by themselves (they must end the string >> immediately, or if they are on their own line they must be preceeded with >> a >> space and not the carriage return) Other than that, this editor is >> pretty >> simple and pretty darn good at hilighting LP syntax. I've also had about >> 100 files open simultaneously with no performance problems in it. >> >> As new versions of LP arise I'll add reserved words as needed to the >> highlighting file. >> >> After installing ConTEXT, just download "LilyPond.chl" from the forum >> area >> and copy it to: >> >> "C:\Program Files\ConTEXT\Highlighters" >> >> Close and Re-Open ConTEXT. >> >> Now whenever you open up .LY files in ConTEXT they will be syntactically >> highlighted. >> >> Then read the blurb I wrote at the top of the LilyPond.chl file to show >> how >> to set up your F9 and F10 keys to compile and view your music in the >> ConTEXT >> command shell. >> >> Have fun >> Rick >> >> >> >> -- >> View this message in context: >> http://www.nabble.com/A-new-freeware-LilyPond-editor-for-Windows-tf1993431.html#a5470863 >> Sent from the Gnu - Lilypond - User forum at Nabble.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 > > -- View this message in context: http://www.nabble.com/A-new-freeware-LilyPond-editor-for-Windows-tf1993431.html#a5504112 Sent from the Gnu - Lilypond - User forum at Nabble.com. ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user
Re: a metronome mark question
I also had this problem recently. I got round it by having a hidden, smaller staff running the whole length of the piece and only inserting the "notes" that I needed around the barline of the tempo change (in that case \times 2/3 {c16 c c} s16^"=" c16 c c )Very clumsy but it did get the desired result.- Original Message From: Paul Scott <[EMAIL PROTECTED]>To: Dave Phillips <[EMAIL PROTECTED]>Cc: lilypond-user@gnu.orgSent: Wednesday, 26 July, 2006 5:42:24 AMSubject: Re: a metronome mark questionDave Phillips wrote:> Greetings:>> I've written a part in even eight notes, but I want to indicate in > the metronome marking that the rhythm of the even eighths should be > played with a swing rhythm, i.e. an eighth-note triplet with a quarter > note followed by an eighth. In a score the rhythm would be {\times 2/3 > {c'4 c'8}}, and some jazz scores indicate that evenly notated eighths > should be played with this rhythmic figure.>> The Metronome Marks section of the manual (8.2.2 for LP 2.8.4) shows > how to do what I want, but only for single notes and not at all for > triplets.>> If I've made myself clear, does anyone know how to create the mark I > need ? In pseudo-LP code it's something like this:>> {c'8 c'} = {\times 2/3 {c'4 c'8}} Actually everything except the triplet bracket is in the manual:8.2.2 Metronome marksIf there isn't a way to do the triplet bracket I would consider cosponsoring this feature with you.Paul___lilypond-user mailing listlilypond-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
Slide, or "glissando" with no start point
Hi - Running LilyPond 2.8.4.1 under Windows XP SP2. I'd like to notate a slide up to a note. The time, in the music, would come out of the note following the slide notation. For those familiar with ABC notation, this would be similar to prefixing the note with a "J" in .abc. In this particular piece of music, the previous note is higher than the one being slid to. The only workaround I can figure out would be one involving \oneVoice. Is that my only option? I've searched the documentation, including list archives, and found a sort of related discussion back around 2.5 or 2.6, but it was actually about drops and raises after a note, not before, and there was no resolution I could find. Thanks for your help (someday I hope to be able to offer some), Ralph + Ralph Palmer Energy/Administrative Coordinator Keene State College Keene, NH 03435-2502 Phone: 603-358-2230 Cell: 603-209-2903 Fax: 603-358-2456 [EMAIL PROTECTED] ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user