Re: Trying to start once again...

2009-01-18 Thread M Watts
Michael Falkenburg wrote: mich...@michael-desktop:~/Desktop$ lilypond 6_wheeled_cycle.ly GNU LilyPond 2.12.1 Processing `6_wheeled_cycle.ly' Parsing... 6_wheeled_cycle.ly:1:8: error: quoted string expected after \version \version =2.12.1-1 6_wheeled_cycle.ly:1:9: error: syntax error, unex

using ly:get-glyph, ly:font-get-glyph

2009-01-18 Thread Mark Polesky
Two interesting-looking functions (ly:get-glyph, ly:font-get-glyph) are listed here... http://lilypond.org/doc/v2.12/Documentation/user/lilypond-internals/Scheme-functions ...but I can't seem to get them to do anything. It says that each can "Retrieve a stencil", which strikes me as useful. I was

Re: Thin bars

2009-01-18 Thread Kieren MacMillan
Hi "Fibonacci Prower", Well, I just tried printing it, and the bars look even worse - not only are they too thick, they also seem to be a bit too long, so that they go beyond the limits of the staff on both sides I've used Lilypond since v1.8, and I've never seen something like what you're t

Re: Suggestion for Notation Reference

2009-01-18 Thread Lasse Rempe
Reinhold Kainhofer wrote: Tempo indications should not use \mark anyway. They should use \tempo "Allegro" instead. (Mis-)Using \mark in our official documentation is a bug in my eyes. For this \mark example I would rather use something like: c4 \mark "enters the stage" c c c Cheers, Reinhold

Re: splitting chords entered as <>^"with stuff" \etc

2009-01-18 Thread Gilles THIBAULT
goes to c d e f c' d' e' f' I don't know if it will help but i did for me something like that : #(define (has-duration? music) (ly:duration? (ly:music-property music 'duration))) #(define (not-has-duration? music) (not (has-duration? music))) keepsOnlyFirstN

Re: splitting chords entered as <>^"with stuff" \etc

2009-01-18 Thread Tim Woodall
And, of course, I found some bugs as soon as I'd posted. Quick breakdown of how it works incase anyone really wants to hack on it. First it splits the three parts out into three files. Basically all it does is remove the other two notes from inside <>. It does depend on the chord all being on on

Re: Thin bars

2009-01-18 Thread Fibonacci Prower
Well, I just tried printing it, and the bars look even worse - not only are they too thick, they also seem to be a bit too long, so that they go beyond the limits of the staff on both sides (not sure if I'm making myself clear on that one). Is there any way to change that? 2009/1/16 Mats Bengtsson

Re:Trying to start once again...

2009-01-18 Thread Michael Falkenburg
Here's a slight correction: I was seeing mich...@michael-desktop:~$ and didn't cd Desktop (with the capital D). Now that I've done THAT, I do see the '.ly' file I want to see. Now I'll try the 'lilypond...etc.' part and post the results. mich...@michael-desktop:~/Desktop$ lilypond 6

Re: splitting chords entered as <>^"with stuff" \etc

2009-01-18 Thread Tim Woodall
On Sun, 18 Jan 2009, Tim Woodall wrote: Surely the octaves can change? (I'm a very new lilypond user but a fairly confident sed user so I might be completely misunderstanding something) Well it was an interesting exercise. I believe that the following bash script does what is required. It wor

Re: Trying to start once again...

2009-01-18 Thread David Stocker
First, do: lilypond -v again to see that the new installation is recognized by Ubuntu. If you get: "GNU LilyPond 2.12.1 Copyright (c) 1996--2008 by Han-Wen Nienhuys Jan Nieuwenhuizen and others. This program is free software..." Then your installation went smoothly. Make sure you: cd

Re: Whole note tremolo repeats - bug ?

2009-01-18 Thread Mats Bengtsson
Werner LEMBERG wrote: Looking into the full score of Strauss's `Salome', I can confirm that (it's one bar before rehearsal number 68, page 50): the position of a whole note tremolo is exactly the same as if there were a stem. This is exactly the rule that's formulated in the book "Noter" by

Re: Trying to start once again...

2009-01-18 Thread Francisco Vila
2009/1/18 David Stocker : > Also, I'd encourage you to download the newest stable version (2.12.1-1) > since it contains many improvements. The up to date documentation is really > good as well. Don't forget to first run > > uninstall-lilypond > > in a terminal window before you run the install scr

Re: Trying to start once again...

2009-01-18 Thread Francisco Vila
2009/1/18 Michael Falkenburg : > 1) Trying to use Ubuntu (it's Ibex), I just can't seem to install LilyPond > (ver. 2.10.33-1) correctly. There's no icon for it on the Desktop. JEdit > (4.3pre16) works fine...but there no "obvious" connection between the > two...hence WHY I think I haven't install

Re: Trying to start once again...

2009-01-18 Thread David Stocker
You have LilyPond 2.10.33 installed on your system. To get started, have a look at 'First Steps ' from the Documentation. To compile a .pdf score from a .ly you'll have to type: lilypond filename.ly

Re: Trying to start once again...

2009-01-18 Thread Tim Woodall
On Sun, 18 Jan 2009, Michael Falkenburg wrote: ...after a VERY Long hiatus. There a couple of problems I'm experiencing: 1) Trying to use Ubuntu (it's Ibex), I just can't seem to install LilyPond (ver. 2.10.33-1) correctly. There's no icon for it on the Desktop. JEdit (4.3pre16) works fine.

Re: Trying to start once again...

2009-01-18 Thread David Stocker
Did you download version 2.12 from the website and install it via the shell command explained on the download page? On Linux, the installation doesn't result in any icons on the desktop. It installs the LilyPond executable (in your /home folder, unless you install it as root) and then you acce

Re: Suggestion for Notation Reference

2009-01-18 Thread Reinhold Kainhofer
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Am Sonntag, 18. Januar 2009 19:32:45 schrieb Lasse Rempe: > I have a couple of suggestions regardin the (excellent) notation reference. > > In 1.8.1, the following is used as an example for text marks: > > c4 > \mark "Allegro" > c c c Tempo indication

Trying to start once again...

2009-01-18 Thread Michael Falkenburg
...after a VERY Long hiatus. There a couple of problems I'm experiencing: 1) Trying to use Ubuntu (it's Ibex), I just can't seem to install LilyPond (ver. 2.10.33-1) correctly. There's no icon for it on the Desktop. JEdit (4.3pre16) works fine...but there no "obvious" connection between the

Re: splitting chords entered as <>^"with stuff" \etc

2009-01-18 Thread Tim Woodall
On Fri, 16 Jan 2009, David Raleigh Arnold wrote: Thanks Dave, Seems the script doesn't like the text in the file - using ^"some words" causes problems. Also, some of the articulations are a problem for it. When I finally got a resulting file the octaves were totally messed up, I had notes wi

Re: Suggestion for Notation Reference

2009-01-18 Thread Jonathan Kulp
Hi Lasse, Just a quick note--I'm not the one who wrote the Text section but I can explain a couple of things. The documentation policy requires that all examples in the main body of text be free of \override commands. Examples that have overrides are added as snippets. Since you have alrea

Suggestion for Notation Reference

2009-01-18 Thread Lasse Rempe
I have a couple of suggestions regardin the (excellent) notation reference. In 1.8.1, the following is used as an example for text marks: c4 \mark "Allegro" c c c Here the mark is presumably placed after the first note to give the appearance that the text stands at the beginning of the bar. In

Re: LilyPond 2.12.1 and TeXShop 2.18 - problems with LilypondLaTeX.engine solved (OS X 10.4 Tiger)

2009-01-18 Thread Kieren MacMillan
Hi, I believe to have solved the problem by modifying Nicola Vitacolonna's script I used your script, but still get the error: tcsh: cp: No match. Python 2.4 or newer is required to run this program. Please upgrade Python from http://python.org/download/, and if you use MacOS X, please r

Re: \skip substitute in lyrics?

2009-01-18 Thread Alberto Simões
Kieren MacMillan wrote: > Hi Alberto > >> Is there any way to compact this kind of construct? > > The simplest way is probably > > sopWordsB = \lyricmode { > \repeat "unfold" 48 { \skip 4 } > Re- cor- da- ... > } > > Of course, there are more complicated ways as well (using \set > associa

Re: \skip substitute in lyrics?

2009-01-18 Thread Kieren MacMillan
Hi Alberto Is there any way to compact this kind of construct? The simplest way is probably sopWordsB = \lyricmode { \repeat "unfold" 48 { \skip 4 } Re- cor- da- ... } Of course, there are more complicated ways as well (using \set associatedVoice, etc.). Hope this helps! Kieren. __

\skip substitute in lyrics?

2009-01-18 Thread Alberto Simões
Hello Is there any way to compact this kind of construct? sopWordsB = \lyricmode { \skip 4 \skip 4 \skip 4 \skip 4 \skip 4 \skip 4 \skip 4 \skip 4 \skip 4 \skip 4 \skip 4 \skip 4 \skip 4 \skip 4 \skip 4 \skip 4 \skip 4 \skip 4 \skip 4 \skip 4 \skip 4 \skip 4 \skip 4 \skip 4 \skip 4 \skip