Re: path to lilypond executable

2015-03-12 Thread Johan Vromans
On Thu, 12 Mar 2015 08:29:33 +0100 Urs Liska u...@openlilylib.org wrote: Am 12.03.2015 um 01:14 schrieb Mattes: Hmm, are you looking for the path to the current lilypond executable or the current lilypond input file? For the first '(car (command-line))' might be all you need. Yes,

Re: path to lilypond executable

2015-03-12 Thread and...@andis59.se
On 2015-03-12 08:29, Urs Liska wrote: Could anybody please tell me what \version 2.18.2 #(display (car (command-line))) displays on Windows (i.e. how the string is formatted)? Using Frescobaldi C:\lilypond-2-18-2-1\usr\bin\lilypond-windows.exe // Anders -- English isn't my first

Re: Spacing Cheat Sheet

2015-03-12 Thread Kaj
Hi Joram, Yes, of course, I can say now after your replay and explanation. Why didn't I see this myself? For what you point out, of course I have seen this with hierarchy and different kinds of staff grouping a lot of times when reading the documentation. But I did not realize the

Re: Time signature style with note in the denominator

2015-03-12 Thread Pierre Perol-Schneider
Hi Gilberto, Try : \version 2.19.15 #(define-public (format-time-sig-note grob) (let* ((frac (ly:grob-property grob 'fraction)) (num (if (pair? frac) (car frac) 4)) (den (if (pair? frac) (cdr frac) 4)) (m (markup #:override '(baseline-skip . 0.5)

Re: path to lilypond executable

2015-03-12 Thread Urs Liska
Am 12.03.2015 um 08:58 schrieb and...@andis59.se: On 2015-03-12 08:29, Urs Liska wrote: Could anybody please tell me what \version 2.18.2 #(display (car (command-line))) displays on Windows (i.e. how the string is formatted)? Using Frescobaldi

Re: path to lilypond executable

2015-03-12 Thread Urs Liska
Am 12.03.2015 um 09:11 schrieb Johan Vromans: On Thu, 12 Mar 2015 08:29:33 +0100 Urs Liska u...@openlilylib.org wrote: Am 12.03.2015 um 01:14 schrieb Mattes: Hmm, are you looking for the path to the current lilypond executable or the current lilypond input file? For the first '(car

Re: path to lilypond executable

2015-03-12 Thread Noeck
Hi Urs, I get = /home/uliska/lilypond/usr/bin/lilypond with each of the following: cd ~ lilypond test-script.ly cd ~/bin lilypond test-script.ly cd ~/lilypond/usr/bin lilypond test-script.ly The difference was whether you use path search or not: lilypond (execute it wherever it is

Re: path to lilypond executable

2015-03-12 Thread Wilbert Berendsen
Op Thu, 12 Mar 2015 09:11:33 +0100 Johan Vromans jvrom...@squirrel.nl schreef: Please be aware that on vanilla *ix systems this only works if the program is executed via a PATH search. E.g., if lilypond is in /usr/bin: cd /tmp lilypond -- /usr/bin/lilypond cd /usr/bin

Re: path to lilypond executable

2015-03-12 Thread Urs Liska
Am 12.03.2015 11:40, schrieb Wilbert Berendsen: But you could always ask LilyPond for its datadir, it always returns the absolute path to the ly, svg, ps, scm etc files. #(display (ly:get-option 'datadir)) Thank you very much, this is even closer to what I really want, namely the fonts dir,

Re: path to lilypond executable

2015-03-12 Thread Urs Liska
Am 12.03.2015 15:38, schrieb Noeck: I assume python has a function abspath or similar. os.path.abspath Yes, but I'm looking for a Scheme solution (which I now have). -- Urs Liska u...@openlilylib.org ___ lilypond-user mailing list

convert-ly adding linefeeds / carriage return

2015-03-12 Thread stephan.patter...@videotron.ca
Wilbert, Thanks for your help. I should have tried that before posting. It turns out that the problem is with Frescobaldi. Running convert-ly from the command-line works fine, no carriage return and/or linefeed added. ___ lilypond-user mailing list

Re: path to lilypond executable

2015-03-12 Thread Johan Vromans
On Thu, 12 Mar 2015 12:30:15 +0100 Urs Liska u...@openlilylib.org wrote: Am 12.03.2015 11:40, schrieb Wilbert Berendsen: But you could always ask LilyPond for its datadir, it always returns the absolute path to the ly, svg, ps, scm etc files. #(display (ly:get-option 'datadir)) Thank

Re: path to lilypond executable

2015-03-12 Thread Johan Vromans
On Thu, 12 Mar 2015 10:38:20 +0100 Urs Liska u...@openlilylib.org wrote: OK, this means if the result points to in the current dir then I should prepend it with the current dir (which is easily possible with the tools I already have). To be more precise: when the result is not an absolute

Re: path to lilypond executable

2015-03-12 Thread Noeck
I assume python has a function abspath or similar. os.path.abspath ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user

Re: Tweak Down causes extra space

2015-03-12 Thread Thomas Morley
2015-03-12 22:08 GMT+01:00 Thomas Morley thomasmorle...@gmail.com: 2015-03-12 20:35 GMT+01:00 Craig Dabelstein craig.dabelst...@gmail.com: Hi Lilyponders, Has anyone run into this before. When including a Da Capo markup at the end of a file, if it sits above the staff it is fine, but

Re: [savannah-help-public] Google Code will be no more at 2016-01-25

2015-03-12 Thread Werner LEMBERG
How many of those issues are the sort that affect users every second Tuesday after a a blue moon versus critical bugs? I don't understand what you are trying to ask. Please have a look at https://code.google.com/p/lilypond/issues/list to see how we are collecting reports. Note that we

Re: [savannah-help-public] Google Code will be no more at 2016-01-25

2015-03-12 Thread Werner LEMBERG
However, one extremely important feature is sorely missing from Savannah's bug tracker: the ability to directly display images, [...] Are there plans to implement image support? Realistically, no. Hmm. Perhaps it's time to open an issue in FusionForge (at least I assume that the Savane

Postsctipt arrows

2015-03-12 Thread Andrew Bernard
Greetings list, I want to make many different types of arrows using PostScript. The following function from the Adobe Blue Book works very nicely for what I need. It’s quite general. The question is, how do I incorporate something of this level of complexity this into a form where it can be

Re: [savannah-help-public] Google Code will be no more at 2016-01-25

2015-03-12 Thread Werner LEMBERG
Patches are always welcomed, but I do not know if anyone is interested in hacking on the current php code to add such a feature. Right, I'm not exactly interested, but if that single feature makes the difference between lilypond moving to savannah or somewhere, I'd at least

Re: convert-ly adding linefeeds / carriage return

2015-03-12 Thread Wilbert Berendsen
Op Thu, 12 Mar 2015 09:19:35 -0400 stephan.patter...@videotron.ca stephan.patter...@videotron.ca schreef: Thanks for your help. I should have tried that before posting. It turns out that the problem is with Frescobaldi. Running convert-ly from the command-line works fine, no carriage return

Re: Copying metronome marks to multiple \StaffGroup's

2015-03-12 Thread Kieren MacMillan
Hi Xavier, Actually it should be done easily by adding Metronome_mark_engraver to the StaffGroup. I find it about the same amount of work — but far more flexible — to add a new context. Unfortunately there is a bug in LilyPond and it does not work.

Re: Tweak Down causes extra space

2015-03-12 Thread Jim Long
We may be at cross purposes if you're creating score-oriented music. I generally create lead sheets. But no matter. I can understand your question, but will you eventually be generating single parts from your score? Would you not then WANT to have the D.C. included in every part? \global

Re: Tweak Down causes extra space

2015-03-12 Thread Craig Dabelstein
Hi Jim, When I put in the Da Capo as a text markup in the global section, it ends up appearing on every staff, rather than just the bottom one, whereas when it is in as a rehearsal mark it only appears once like it should. How do you overcome this? See attached file. Craig On Fri, 13 Mar 2015

Re: Tweak Down causes extra space

2015-03-12 Thread Thomas Morley
2015-03-12 20:35 GMT+01:00 Craig Dabelstein craig.dabelst...@gmail.com: Hi Lilyponders, Has anyone run into this before. When including a Da Capo markup at the end of a file, if it sits above the staff it is fine, but when I uncomment the \tweak direction #DOWN command it moves the

Tweak Down causes extra space

2015-03-12 Thread Craig Dabelstein
Hi Lilyponders, Has anyone run into this before. When including a Da Capo markup at the end of a file, if it sits above the staff it is fine, but when I uncomment the \tweak direction #DOWN command it moves the marking below the staff but adds a heap of extra space. Please see the attached

Re: Google Code will be no more at 2016-01-25

2015-03-12 Thread Federico Bruni
Il giorno gio 12 mar 2015 alle 21:08, Abel Cheung abelche...@gmail.com ha scritto: Time to start think about migrating issue tracker to somewhere else, especially when Lilypond has a huge project issues list, and storage is a dire requirement. It would take some time to make sure new issue

Re: Tweak Down causes extra space

2015-03-12 Thread Jim Long
Hi, Craig. Just for a different perspective, I always put form-related marks like D.C., D.S., Segnos, Codas, Fines, etc. in the global section. Since they (almost always) need to be in the same location for all parts, it makes the most sense to me to put them there once, and then use the \global

Re: [Frescobaldi] Re: ANN: Frescobaldi 2.18

2015-03-12 Thread Davide Liessi
Il 12/03/15 01.06, MarcM ha scritto: i just updated from MacPort but it installed 2.17.2 instead of 2.18. Il 12/03/15 01.42, safvet ha scritto: Likewise updated yesterday and received 2.17.2. There's nothing wrong with this: MacPorts still provides 2.17.2. I usually manage to have

Re: Tweak Down causes extra space

2015-03-12 Thread Craig Dabelstein
Hi Jim, Thanks for your quick response. I'll look into your solution now. Craig On Fri, 13 Mar 2015 at 06:23 Jim Long lilyp...@umpquanet.com wrote: Hi, Craig. Just for a different perspective, I always put form-related marks like D.C., D.S., Segnos, Codas, Fines, etc. in the global

Re: Scheme functions with #:

2015-03-12 Thread Andrew Bernard
Large thanks! I would never have found this. Now I also see that #: terms are guile keyword syntax. Andrew On 13 March 2015 at 10:52:49, David Nalesnik (david.nales...@gmail.com) wrote: Try here: http://lilypond.org/doc/v2.19/Documentation/extending/markup-construction-in-scheme --David 

Re: Pedal line staff sepation

2015-03-12 Thread Andrew Bernard
Thanks Trevor, this is great. Andrew ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user

Re: Google Code will be no more at 2016-01-25

2015-03-12 Thread Paul Morris
So that's what's behind the export to github button that appeared on google code today. The end of an era... Looks like google can export all issue data to a JSON file, so that's encouraging: http://code.google.com/p/support-tools/wiki/IssueExporterTool Just thinking out loud in terms of

Re: Graphical operators in markup

2015-03-12 Thread Paul Morris
Andrew Bernard wrote I am trying to use postscript in markup blocks. I see snippets using such things as \translate and \scale, which I need, along with all the other plane transformation operators. Where is the documentation for these operators? I have looked everywhere to no avail. Using

Re: [savannah-help-public] Google Code will be no more at 2016-01-25

2015-03-12 Thread Werner LEMBERG
Issues: Savannah supports web-based 'trackers' (for bugs, supports, tasks, etc.), for example: https://savannah.nongnu.org/bugs/?group=lwip and also using a DebBugs server, for example: http://debbugs.gnu.org/cgi/pkgreport.cgi?package=emacs However, one extremely important feature is

Re: Tweak Down causes extra space

2015-03-12 Thread Craig Dabelstein
Thanks to you both. I have it sorted now. Craig On Fri, 13 Mar 2015 at 07:39 Jim Long lilyp...@umpquanet.com wrote: We may be at cross purposes if you're creating score-oriented music. I generally create lead sheets. But no matter. I can understand your question, but will you eventually

Re: Copying metronome marks to multiple \StaffGroup's

2015-03-12 Thread Xavier Scheuer
On 11 March 2015 at 19:40, Kieren MacMillan kieren_macmil...@sympatico.ca wrote: Hi, Search for “ScoreMarks” or “MarkLine” in the archives and snippets. There are lots of discussions about this. Hi, Actually it should be done easily by adding Metronome_mark_engraver to the StaffGroup.

Re: path to lilypond executable

2015-03-12 Thread Urs Liska
Am 12.03.2015 um 10:59 schrieb Noeck: Hi Urs, I get = /home/uliska/lilypond/usr/bin/lilypond with each of the following: cd ~ lilypond test-script.ly cd ~/bin lilypond test-script.ly cd ~/lilypond/usr/bin lilypond test-script.ly The difference was whether you use path search or not:

Re: convert-ly adding linefeeds / carriage return

2015-03-12 Thread Wilbert Berendsen
Op Wed, 11 Mar 2015 20:16:21 -0400 stephan.patter...@videotron.ca stephan.patter...@videotron.ca schreef: I have just upgraded to the latest Lilypond, version 2.19.16. I'm using Frescobaldi 2.18 on Windows 8.1. Running convert-ly on any of my Lilypond scores, I find that carriage returns

Re: [savannah-help-public] Google Code will be no more at 2016-01-25

2015-03-12 Thread Shane Brandes
How many of those issues are the sort that affect users every second Tuesday after a a blue moon versus critical bugs? Shane On Thu, Mar 12, 2015 at 6:11 PM, Werner LEMBERG w...@gnu.org wrote: Issues: Savannah supports web-based 'trackers' (for bugs, supports, tasks, etc.), for example:

Re: Scheme functions with #:

2015-03-12 Thread David Nalesnik
Hi Andrew, On Thu, Mar 12, 2015 at 6:50 PM, Andrew Bernard andrew.bern...@gmail.com wrote: In some Scheme code I find functions prefaced with #:, such as #:roman, #:translate, and so on. What is this syntax? How does one find where such items are defined? Maybe I am no longer any good at

Re:Tweak Down causes extra space

2015-03-12 Thread Stephen MacNeil
How is this \version 2.18.2 \language english daCapo = { %\once %\override Score.RehearsalMark #'self-alignment-X = #RIGHT \once \override Score.RehearsalMark #'self-alignment-X = #0 \once \override Score.RehearsalMark #'break-visibility = #begin-of-line-invisible \tweak direction

Re: Tweak Down causes extra space

2015-03-12 Thread Craig Dabelstein
Thanks Stephen. I'll try it out and compare. Craig On Fri, 13 Mar 2015 at 09:06 Stephen MacNeil classicalja...@gmail.com wrote: How is this \version 2.18.2 \language english daCapo = { %\once %\override Score.RehearsalMark #'self-alignment-X = #RIGHT \once \override

Re: [savannah-help-public] Google Code will be no more at 2016-01-25

2015-03-12 Thread Karl Berry
Patches are always welcomed, but I do not know if anyone is interested in hacking on the current php code to add such a feature. Right, I'm not exactly interested, but if that single feature makes the difference between lilypond moving to savannah or somewhere, I'd at least try to look at

Graphical operators in markup

2015-03-12 Thread Andrew Bernard
I am trying to use postscript in markup blocks. I see snippets using such things as \translate and \scale, which I need, along with all the other plane transformation operators. Where is the documentation for these operators? I have looked everywhere to no avail. Using 2.19.16. While we are

Scheme functions with #:

2015-03-12 Thread Andrew Bernard
In some Scheme code I find functions prefaced with #:, such as #:roman, #:translate, and so on. What is this syntax? How does one find where such items are defined? Maybe I am no longer any good at finding things, but I have looked everywhere. Andrew

Re: Bug in articulate.ly

2015-03-12 Thread Flaming Hakama by Elaine
From: Simon Albrecht simon.albre...@mail.de Subject: Re: Bug in articulate.ly Another example is that you could indicate tempo rubato and then specify as interpretation one of the many possible actual tempo(s) that would be used for rendering the MIDI. If I may chime in with my opinion

Re: path to lilypond executable

2015-03-12 Thread Urs Liska
Am 12.03.2015 um 01:14 schrieb Mattes: Am Mittwoch, 11. März 2015 21:29 CET, Urs Liska u...@openlilylib.org schrieb: Sorry, but I don't seem to be able to find the right search terms ... How would I retrieve the path to the currently executed LilyPond from Scheme? Hmm, are you looking