XEmacs 21.4.21

2008-10-17 Thread Helge Kruse
Hello, I want to use Lilypond mode in XEmacs 21.4.21 with Lilypond 2.11.57. I configured the XEmacs init.el so: (setq load-path (append (list (expand-file-name "~/site-lisp")) load-path)) (autoload 'LilyPond-mode "lilypond-mode" "LilyPond Editing Mode" t) (add-to-list 'auto-mode-alist '("\\.ly$

Fall and doit

2008-10-17 Thread 胡Hu Haipeng
Hello: I'm constantly working on my piece for large orchestra and mixed chorus. It's very slow to compose using Lilypond. I'm now encountering a passage quoting a folk song of my place, with many special ornaments. In Chinese music, there are many glissando "tail"s after long notes. I s

Re: removing Dynamic_engraver not working?

2008-10-17 Thread Kieren MacMillan
Hi Neil, When I run the code on 2.11.57 - exactly as given in the email - removing the engraver does nothing. So, what's happened to our dynamic engraver? It's been swapped out with "New_dynamic_engraver", hasn't it? Check the (recent) archives… HTH! Kieren. ___

removing Dynamic_engraver not working?

2008-10-17 Thread Neil Thornock
Hi all, I'm following this email tip: http://www.mail-archive.com/lilypond-user@gnu.org/msg36047.html When I run the code on 2.11.57 - exactly as given in the email - removing the engraver does nothing. So, what's happened to our dynamic engraver? Neil -- Neil Thornock, D.M. Assistant Profess

Re: GDP NR 1.6 Staff notation ready for public review

2008-10-17 Thread Trevor Daniels
Till Rettig wrote Friday, October 17, 2008 11:39 AM Trevor Daniels wrote: (in response to) 1) 1.6 Why doesn't the headword show something really specific to staff notation? ( ossia, cut-out score, tab/rhythm/drum staff?) I agree it would be better if it did. Do you have any suggestions for

RE[2]: Lilypond - 2 voices in 1 score - cannot add lyrics

2008-10-17 Thread Frank . Weichert
many thanks this example is the only one witch works. --- Frank >If you read >http://lilypond.org/doc/v2.11/Documentation/user/lilypond-learning/Score-is-a-_0028single_0029-compound-musical-expression#Score-is-a-_0028single_0029-compound-musical-expression >and realize that the lyrics is not pa

Re: GDP NR 1.6 Staff notation ready for public review

2008-10-17 Thread Patrick McCarty
On Fri, Oct 17, 2008 at 1:52 AM, Trevor Daniels <[EMAIL PROTECTED]> wrote: > > Patrick McCarty wrote Thursday, October 16, 2008 8:15 PM > >> I thought we wanted to leave all of these examples here. Since they >> cover all of the easy-to-tweak properties of StaffSymbol, I think it >> would be bett

doits on a chord?

2008-10-17 Thread plutek-infinity
greetings! i'm trying to figure out how to apply doits to a chord, and neither of these produces anything: \score { 1-\bendAfter #+5 } \score { 1 } this has the desired effect, but seems messy and gives clashing note column errors: \score { \new Staff { <> } } does anyone have a solution for

Re: Lilypond - 2 voices in 1 score - cannot add lyrics

2008-10-17 Thread Jonathan Kulp
This score block seems to do the trick: \score { \new Staff { \time 4/4 \key c \major \clef "G_8" << \context Voice = "StimmeI" { \StimmeI } \context Voice = "StimmeII" { \StimmeII } \addlyrics { \verseI } \addlyrics { \verseII }

Re: Lilypond - 2 voices in 1 score - cannot add lyrics

2008-10-17 Thread Trevor Daniels
Yes, you're right. I was careless in my reply, although it happened to work in this particular case. Do you know what the TODO refers to? Trevor - Original Message - From: "Mats Bengtsson" <[EMAIL PROTECTED]> To: "Trevor Daniels" <[EMAIL PROTECTED]> Cc: Sent: Friday, October 17, 200

Re: Lilypond - 2 voices in 1 score - cannot add lyrics

2008-10-17 Thread Mats Bengtsson
No, you may get very surprising results if you create Lyrics contexts within a Staff context (there's actually a comment in vocal.itely saying @c TODO: document \new Staff << Voice \lyricsto >> bug even though I don't think it's a bug if it refers to what have in mind). /Mats Trevor Daniels w

Re: Lilypond - 2 voices in 1 score - cannot add lyrics

2008-10-17 Thread Trevor Daniels
Frank I don't think this is the problem, as it persists even when I know the quotes are straight. It is usually best to avoid the << \\ >> construct when trying to attach lyrics. You will find this construct works better: \score { \new Staff << \time 4/4 \key c \major \clef "G_

Re: Lilypond - 2 voices in 1 score - cannot add lyrics

2008-10-17 Thread Mats Bengtsson
If you read http://lilypond.org/doc/v2.11/Documentation/user/lilypond-learning/Score-is-a-_0028single_0029-compound-musical-expression#Score-is-a-_0028single_0029-compound-musical-expression and realize that the lyrics is not part of the Staff in LilyPond (in contrast to what you intuition might

Re: Lilypond - 2 voices in 1 score - cannot add lyrics

2008-10-17 Thread Mats Bengtsson
In addition to the answers you have already seen, I strongly recommend you to read the Learning Manual included in the documentation for LilyPond version 2.11, especially http://lilypond.org/doc/v2.11/Documentation/user/lilypond-learning/Voices-and-vocals#Voices-and-vocals which explains these t

Re: Lilypond - 2 voices in 1 score - cannot add lyrics

2008-10-17 Thread Jonathan Kulp
I got some of the lyrics to appear but not all. I've never done more than one verse before. Hope this helps somewhat. I don't have time to fiddle with it more although my curiousity begs me to :) Code: \version "2.10.33" \header { title = "Wem Gott will rechte Gunst erweisen"

Re: Lilypond - 2 voices in 1 score - cannot add lyrics

2008-10-17 Thread Mats Bengtsson
Sorry, my fingers slipped. Here comes the full answer. Make sure that you don't use any curled double quotes in your file. If you copied the solution by hand, it may help to use copy/paste from the email into your text editor to avoid that it inserts some fancy version of the double quotes instea

Re: Lilypond - 2 voices in 1 score - cannot add lyrics

2008-10-17 Thread Mats Bengtsson
Make sure that you don't use any curled double quotes in your file. If you copied the solution It seems that your text editor is playing you some tricks. /Mats [EMAIL PROTECTED] wrote: Thanks, but the problem still exists StimmeI = \new Voice = "StimmeI" \relative c { StimmeII =

RE[2]: Lilypond - 2 voices in 1 score - cannot add lyrics

2008-10-17 Thread Frank . Weichert
Thanks, but the problem still exists StimmeI = \new Voice = "StimmeI" \relative c { StimmeII = \new Voice = "StimmeII" \relative c { %lilypond %args "D:\Noten\Stimme\Stimme.ly" »D:/Noten/Stimme/Stimme.ly« wird verarbeitet Analysieren... Interpretation der Musik... D:/Noten/St

Re: LilyPond examples

2008-10-17 Thread Laura Conrad
> "Andrew" == Andrew Hawryluk <[EMAIL PROTECTED]> writes: >> 2) What doesn't it do as well? Andrew> No MIDI input. Well, rumor would work on Linux but I haven't been able Andrew> to get it to work, so I feel safe saying that there is no MIDI input Andrew> for almost all LilyP

Re: Lilypond - 2 voices in 1 score - cannot add lyrics

2008-10-17 Thread James E. Bailey
You have to name the voice StimmeI and StimmeII. Try StimmeI = \new Voice = "StimmeI" \relative c { music } and StimmeII = \new Voice = "StimmeII" \relative c' { music } Am 17.10.2008 um 16:52 schrieb [EMAIL PROTECTED]: Hi, when I put 2 voices into 1 staff I cannot add lyrics. Console-Erro

Lilypond - 2 voices in 1 score - cannot add lyrics

2008-10-17 Thread Frank . Weichert
Hi, when I put 2 voices into 1 staff I cannot add lyrics. Console-Error-Message is (backtranslatet from german): \context Lyrics = "StropheI" \lyricmode { -> \lyricsto "StimmeI" \verseI } StimmeI not found What I'm doing wrong? This is complete example: \version "2.10.33" \header {

Re: WANTED: Design for documentation (Photoshop power users!)

2008-10-17 Thread Risto Vääräniemi
Hello all, Just a side note... I noticed that when I browse a full page document it takes quite a long time for context menus (right click) to appear. I usually use that feature to get back to the previous view. When the context menu appears the horizontal and vertical scroll bars for the whole p

Re: LilyPond examples

2008-10-17 Thread Mats Bengtsson
Checking a bit more carefully, I can confirm that it's \tiny (i.e. font-size -2) that gives the correct size. /Mats Mats Bengtsson wrote: You are right, the markup should probably be \markup {\tiny \number 6 \super (1) } instead of \markup {\number 6 \super (1) } I didn't manage to deciphe

Re: LilyPond examples

2008-10-17 Thread Valentin Villenave
2008/10/17 Mats Bengtsson <[EMAIL PROTECTED]>: > Valentine, can you change the snippet? Done :-) -- btw: the name is Valentin, without a final `e' (`Valentine' being the French female version of Valentin :-) Cheers, Valentin ___ lilypond-user maili

Re: LilyPond examples

2008-10-17 Thread Mats Bengtsson
You are right, the markup should probably be \markup {\tiny \number 6 \super (1) } instead of \markup {\number 6 \super (1) } I didn't manage to decipher exactly how the font size setting is done for the normal bass figures, but using \tiny or \small for the markup seems to give a size that bet

Re: LilyPond examples

2008-10-17 Thread Risto Vääräniemi
2008/10/16 Kieren MacMillan <[EMAIL PROTECTED]>: > Difficult modern concepts are much easier in Lilypond than the others, e.g. > >figured bass: > Just out of curiosity (I don't know anything about figures bass)... :-) Is the number 6 on the

Re: GDP NR 1.6 Staff notation ready for public review

2008-10-17 Thread Till
Trevor Daniels wrote: > > > >> 1) 1.6 Why doesn't the headword show something really specific to staff >> notation? ( ossia, cut-out score, tab/rhythm/drum staff?) > > I agree it would be better if it did. Do you have any suggestions > for a replacement? > > > Just came to my mind: wh

Re: Is it possible to export a score to programs like Rosegarden

2008-10-17 Thread Valentin Villenave
2008/10/17 Francisco Vila <[EMAIL PROTECTED]>: > 2008/10/17 Mats Bengtsson <[EMAIL PROTECTED]>: >> If you have a 64bit processor, > > ... and an Ubuntu 64 bit distribution installed, Absolutely! Most people with modern computers have a 64-bits capable CPU and install the "standard" x86 distro (tha

Re: GDP NR 1.6 Staff notation ready for public review

2008-10-17 Thread Trevor Daniels
Patrick McCarty wrote Thursday, October 16, 2008 8:15 PM On Thu, Oct 16, 2008 at 10:32 AM, Trevor Daniels <[EMAIL PROTECTED]> wrote: James E. Bailey wrote Monday, October 13, 2008 2:57 PM 3) 1.6.2.1 Everything before \startStaff & \stopStaff seems like stuff from 5.3 (modifying properties)

Re: Is it possible to export a score to programs like Rosegarden

2008-10-17 Thread Francisco Vila
2008/10/17 Mats Bengtsson <[EMAIL PROTECTED]>: >> Question2 I work with Ubuntu Hardy, is there a preference between the Any >> linux-x86 fill and the linux-64? >> > > If you have a 64bit processor, ... and an Ubuntu 64 bit distribution installed, > then you should use the linux-64, otherwise > th

Re: Is it possible to export a score to programs like Rosegarden

2008-10-17 Thread Mats Bengtsson
Gyp wrote: Hi! I have 2 questions Question1 Is there any option to export a score made with Lilypond to programs like Rosegarden? Not really. Probably, the best option in that case is to generate a MIDI file from LilyPond and import into the other program. There has also been some discussio

Is it possible to export a score to programs like Rosegarden

2008-10-17 Thread Gyp
Hi! I have 2 questions Question1 Is there any option to export a score made with Lilypond to programs like Rosegarden? Question2 I work with Ubuntu Hardy, is there a preference between the Any linux-x86 fill and the linux-64? Thanks ___ lilypond-user