Re: LilyPond 2.12 and emacs on Ubuntu

2009-03-04 Thread Ralph Palmer
On Sat, Feb 28, 2009 at 7:56 PM, David Stocker wrote: > Ralph, > > If you haven't already tried it, have a look at this short, sweet > walkthrough for setting up lilypond-mode for emacs: > > http://www.geoffhorton.com/lilymacs.html > > Actually, following the above instructions turned out to be th

Re: Forcing markup to be IN the staff

2009-03-04 Thread aliteralmind
The mind boggles %-| For about three weeks now, I have been reading LY documentation, forum posts, snippets, and examples, yet I never came across this. There is SO much information to absorb. I'm feeling more and more like the documentation could be organized better. This is exactly what I ne

Re: LilyPond 2.12 and emacs on Ubuntu

2009-03-04 Thread Cameron Horsburgh
0;241;0cOn Wed, Mar 04, 2009 at 07:08:05AM -0500, Ralph Palmer wrote: >On Sat, Feb 28, 2009 at 7:56 PM, David Stocker ><[1]dstoc...@thenotesetter.com> wrote: > > Ralph, > > If you haven't already tried it, have a look at this short, sweet > walkthrough for setting up lilypo

Re: Forcing markup to be IN the staff

2009-03-04 Thread Valentin Villenave
2009/3/4 aliteralmind : > > The mind boggles  %-|   For about three weeks now, I have been reading LY > documentation, forum posts, snippets, and examples, yet I never came across > this. There is SO much information to absorb. I'm feeling more and more like > the documentation could be organized b

Re: Forcing markup to be IN the staff

2009-03-04 Thread Mats Bengtsson
Valentin Villenave wrote: I would have thought that the first place to look at would be the manual: Musical Notation -> Repeats -> Short repeats Can you think of anything more obvious? It would certainly not have been obvious to me that this has anything to do with repeats, if I didn't kn

Re: Forcing markup to be IN the staff

2009-03-04 Thread Kieren MacMillan
Hi Mats (et al), It would certainly not have been obvious to me that this has anything to do with repeats, if I didn't know that that's the syntax used in LilyPond. Certainly, it's related to repeating something, but I would be surprised if you could find it in any music notation handbook i

Re: Forcing markup to be IN the staff

2009-03-04 Thread James E. Bailey
El 04.03.2009, a las 14:17, Kieren MacMillan escribió: Hi Mats (et al), It would certainly not have been obvious to me that this has anything to do with repeats, if I didn't know that that's the syntax used in LilyPond. Certainly, it's related to repeating something, but I would be surpris

Re: Forcing markup to be IN the staff

2009-03-04 Thread aliteralmind
Valentin Villenave wrote: > > You have to know that we just have been spending about 18 months > reorganizing the docs, and we did put a lot of thoughts (and > arguments) into this process, to say the least. > > I would have thought that the first place to look at would be the manual: > Musica

Re: Forcing markup to be IN the staff

2009-03-04 Thread James E. Bailey
El 04.03.2009, a las 15:13, aliteralmind escribió: You gotta admit, it's a crazy amount of information for a newbie to sift through, even one that has some musical training. It's a crazy amount of information to sift through, period. I have such a new found respect for computer music notat

Re: LilyPond 2.12 and emacs on Ubuntu

2009-03-04 Thread Ralph Palmer
Hmmm - I tried M-x lilypond-mode, and got an emacs error message that lilypond-mode couldn't be found. I tried M-x LilyPond-mode, and got an emacs error message that lilypond-mode file couldn't be opened. Anyone have a suggestion? Ralph On Wed, Mar 4, 2009 at 7:22 AM, Cameron Horsburgh wrote:

Re: LilyPond 2.12 and emacs on Ubuntu

2009-03-04 Thread Valentin Villenave
2009/3/4 Ralph Palmer : > I tried M-x lilypond-mode, and got an emacs error message that lilypond-mode > couldn't be found. > Anyone have a suggestion? Mmmh... jEdit? OK, I'm out :) Regards, Valentin ___ lilypond-user mailing list lilypond-user@gnu.

Re: LilyPond 2.12 and emacs on Ubuntu

2009-03-04 Thread David Stocker
It shouldn't be this hard to set up lilypond-mode for emacs under Ubuntu 8.04. Ralph, check in your home folder and see if there is a folder called .emacs.d and if there is a file in that folder named init.el It should be there. If not, create that file and folder. We're going to get this wo

Re: LilyPond 2.12 and emacs on Ubuntu

2009-03-04 Thread Ralph Palmer
Dave, Does it make any/much/a significant difference that I'm running 8.10? I would think anything that worked under 8.04 should work under 8.10. Ralph On Wed, Mar 4, 2009 at 11:23 AM, David Stocker wrote: > It shouldn't be this hard to set up lilypond-mode for emacs under Ubuntu > 8.04. > > Ra

Re: LilyPond 2.12 and emacs on Ubuntu

2009-03-04 Thread David Stocker
I don't think it should matter. Are the folder and file there? Ralph Palmer wrote: Dave, Does it make any/much/a significant difference that I'm running 8.10? I would think anything that worked under 8.04 should work under 8.10. Ralph On Wed, Mar 4, 2009 at 11:23 AM, David Stocker mailto:d

Re: LilyPond 2.12 and emacs on Ubuntu

2009-03-04 Thread Ralph Palmer
Dave - Okay, in home/rpalmer/, I've got a .emacs.d. The only thing that contains is auto-save-list (a directory), which is empty. I'll create the init.el file in ~/.emacs.d. Ralph On Wed, Mar 4, 2009 at 11:59 AM, Ralph Palmer wrote: > Dave, > > Does it make any/much/a significant difference tha

Re: LilyPond 2.12 and emacs on Ubuntu

2009-03-04 Thread David Stocker
In the file /init.el/ paste in the following lines: (setq load-path (append (list (expand-file-name "~/emacs/site-lisp")) load-path)) (autoload 'LilyPond-mode "lilypond-mode" "LilyPond Editing Mode" t) (add-to-list 'auto-mode-alist '("\\.ly$" . LilyPond-mode)) (add-to-list 'auto-mode-alist '("

Re: LilyPond 2.12 and emacs on Ubuntu

2009-03-04 Thread Ralph Palmer
Getting close, I think - " So, the first line should actually read: (setq load-path (append (list ("/usr/local/lilypond/usr/share/emacs/site-lisp")) load-path)) if "/usr/local/lilypond/usr/share/emacs/site-lisp" is the (apparently appropriate) result of a $locate on /emacs/site-lisp? Ralph On

Re: LilyPond 2.12 and emacs on Ubuntu

2009-03-04 Thread David Stocker
If your LilyPond installation resides in /usr/local/ then that should be correct. Ralph Palmer wrote: Getting close, I think - " So, the first line should actually read: (setq load-path (append (list ("/usr/local/lilypond/usr/share/emacs/site-lisp")) load-path)) if "/usr/local/lilypond/usr/

Re: LilyPond 2.12 and emacs on Ubuntu

2009-03-04 Thread Ralph Palmer
Dave - Did what you said, as far as I could. Opened a .ly file, and got bounced. Opened the file again with the --debug-init option, and got: Debugger entered--Lisp error: (invalid-function "/usr/local/lilypond/usr/share/emacs/site-lisp") ("/usr/local/lilypond/usr/share/emacs/site-lisp") (lis

Re: LilyPond 2.12 and emacs on Ubuntu

2009-03-04 Thread David Stocker
Sure, Ralph. I'll do some digging and try to figure out what makes lilypond-mode work in my installation. In the meantime, check out: http://tldp.org/HOWTO/Emacs-Beginner-HOWTO-3.html#ss3.1 if you haven't already, just for some background information on modes in Emacs. Email me off-list if

Displaying staff/instrument name for ossia staff

2009-03-04 Thread Joseph Wakeling
Hello all, I've created an ossia staff in a score of mine, following the pattern of the following snippet: http://lilypond.org/doc/v2.12/Documentation/user/ee/lily-b93a4bcb.ly It works very nicely but is not quite perfect -- there are a couple of extra additions I'd like to make. First, is it po

Re: LilyPond 2.12 and emacs on Ubuntu

2009-03-04 Thread Peter Chubb
> "David" == David Stocker writes: David> If your LilyPond installation resides in /usr/local/ then that David> should be correct. David> Ralph Palmer wrote: >> Getting close, I think - " So, the first line should actually read: >> >> (setq load-path (append (list >> ("/usr/local/lilypond/u

Re: Movement numbers

2009-03-04 Thread Joseph Wakeling
Neil Thornock wrote: > Use \markup commands where you need precise layout control: > > \header { piece = \markup \fill-line {"I"} } > > or > > \header { piece = \markup \fill-line {\center-column {"I" "My Title"} } } > > should work (I haven't tested it). Marek Klein wrote: > Hello, > would th

MetronomeMark tweaks

2009-03-04 Thread Kieren MacMillan
Hi all, In LSR #444 (), it claims that the snippet is obsoleted by version 2.11.50. However, unless I'm mistaken, we don't have direct access to the parts of MetronomeMark (e.g., the size of the note is too big to my eye, \tempo doesn't support a

Re: MetronomeMark tweaks

2009-03-04 Thread Neil Puttock
2009/3/4 Kieren MacMillan : > Hi all, > > In LSR #444 (), it claims that > the snippet is obsoleted by version 2.11.50. > However, unless I'm mistaken, we don't have direct access to the parts of > MetronomeMark (e.g., the size of the note is too big to m

Re: MetronomeMark tweaks

2009-03-04 Thread Joseph Wakeling
Kieren MacMillan wrote: > However, unless I'm mistaken, we don't have direct access to the parts > of MetronomeMark (e.g., the size of the note is too big to my eye, > \tempo doesn't support a range of tempos like "ca. 66-72", etc.). > > Am I wrong? If not, isn't this snippet *not* obsolete? Does

Re: LilyPond 2.12 and emacs on Ubuntu

2009-03-04 Thread David Stocker
Peter, Are you referring to the apostrophe (or single-quote, if you will) just before the 3rd opening parenthesis in the first line? Ralph, it's worth a try. My XP init.el file doesn't contain this and it loads lilypond-mode with no error messages. I'm not sure if there's a difference betwee

Re: MetronomeMark tweaks

2009-03-04 Thread Kieren MacMillan
Hi Neil, It's obsolete since you can use \tempo \markup for all these tweaks. Looking through the MetronomeMark docs, I've been unable to figure out how to: 1. Change the size of the note (in parentheses) without changing the rest of the font size; or, 2. Indicate a range of tempos

Re: MetronomeMark tweaks

2009-03-04 Thread Joseph Wakeling
Kieren MacMillan wrote: > Hi Neil, > >> It's obsolete since you can use \tempo \markup for all these tweaks. > > Looking through the MetronomeMark docs, I've been unable to figure out > how to: >1. Change the size of the note (in parentheses) without changing the > rest of the font size; or,

Re: MetronomeMark tweaks

2009-03-04 Thread James E. Bailey
El 04.03.2009, a las 23:03, Kieren MacMillan escribió: Hi Neil, It's obsolete since you can use \tempo \markup for all these tweaks. Looking through the MetronomeMark docs, I've been unable to figure out how to: 1. Change the size of the note (in parentheses) without changing the res

Re: MetronomeMark tweaks

2009-03-04 Thread Kieren MacMillan
Hi Joseph, The following code shows how \tempo \markup can be used: Fabulous -- thanks! The first \tempo mark sets the speed as far as MIDI is concerned but the markup from the second is displayed. You can therefore customise its appearance as much as you like. I don't think I ever woul

Re: MetronomeMark tweaks

2009-03-04 Thread Joseph Wakeling
Kieren MacMillan wrote: > I don't think I ever would have thought to have two \tempo marks to > generate one tempo change... but I'm glad it works! > Now I'll just write a music function to do both at once. I was surprised that it worked in exactly that way -- when I wrote that snippet I was expec

Re: Editorial Annotation

2009-03-04 Thread Neil Puttock
2009/2/25 grisu_76 : > > Hi James, > > thanks for reply, you're right, without the center-align, it works;  - as > for I am a newbee,  I copied these lines form the notation reference manual > (I adapted the esample form the parenthesised dynamics). If you're attaching the trill to a note, you can

Again: stemBoth problem

2009-03-04 Thread 胡海鹏 - Hu Haipeng
Hello, I encounter a new problem with this function: stemBoth = #(define-music-function (parser location m) (ly:music?) #{ << \voiceOne $m \new Voice { \voiceTwo $m } >> \oneVoice #}) When I attach the slur, it is copied too. Now I want a function to write things like this: the first half of t