Re: Removing fingerings from the general score

2013-06-06 Thread Felix Janda
Hi, using something like \version "2.16.0" \notes = \relative c'' {a-. b-3 c-4 d\f} \score { \new Voice \with { \remove "Fingering_engraver" \remove "New_fingering_engraver" } \notes \layout {} } you can remove the fingerings from one Voice. To do so for all the entire score you can use ins

Re: Removing fingerings from the general score

2013-06-06 Thread Wim van Dommelen
Hi Jacques, I use tags as follows: %(definitions from my standard include-file) % Some easy clarinet fingering abbreviations: fingercolor = #blue fLfinger = ^\markup{ \bold \with-color \fingercolor "L" } fL = -\tag #'BCLfingering \fLfinger fRfinger = ^\markup{ \bold \with-color \fingercolor "R"

Re: Removing fingerings from the general score

2013-06-06 Thread Pierre Perol-Schneider
2013/6/6 Jacques Menu > > Is there a cleaner, more "Lilypond in spirit" way to achieve this? > > > Hi Jacques, You can use the "Tag" function : http://www.lilypond.org/doc/v2.16/Documentation/notation/different-editions-from-one-source#using-tags with something like : music = { \repeat volt

Removing fingerings from the general score

2013-06-06 Thread Jacques Menu
Hello, In order to display oboe fingerings, I define: myFingeringFourche = ^"F" myFingeringBis = ^"2" in my standard library file, which is included in the oboe part file: \repeat volta 2 { \barNumberCheck #1 r2 r8 f8\myFingeringFourche (c d |%2 Then I override these macros in the general sc

Re: Frecobaldi 2 Mac OS X install guide

2013-06-06 Thread Wilbert Berendsen
Op 06-06-13 12:35, Andrew Bernard schreef: As a result of this thread, I have decided the need is there for a macports bundle for frescobaldi, one that includes all the dependencies with no headaches. This seems to be what people want, short of a Mac GUI installed. I'll start in on that project

Re: Frecobaldi 2 Mac OS X install guide

2013-06-06 Thread Paul Morris
Andrew Bernard wrote > As a result of this thread, I have decided the need is there for a > macports bundle for frescobaldi, one that includes all the dependencies > with no headaches. This seems to be what people want, short of a Mac GUI > installed. I'll start in on that project tomorrow. Thi

Re: Discuss signature for new function \annotate

2013-06-06 Thread David Kastrup
Urs Liska writes: > When I replace symbol-list-or-music? with symbol? as the last > parameter it compiles fine with 'Script' for example. > So I could use that for now and only use it for grobs (and not as a > postfix tweak) (?). symbol-or-music? would likely work as well. You just can't write

Re: Frecobaldi 2 Mac OS X install guide

2013-06-06 Thread nothingwavering
Very easy to follow instructions! It took HOURS to download and install, but in the end, it seems to be working and looks stellar. Tim makes a good point that the application name IS titled Python, and it would be the icing on the cake to have it titled Frescobaldi instead. Hopefully this wou

Re: Discuss signature for new function \annotate

2013-06-06 Thread Urs Liska
Am 06.06.2013 14:16, schrieb David Kastrup: Putting an "item" of type symbol-list-or-music? last seems like a reasonably good idea. Hm, I think I see what you mean, but if I write annotate = #(define-void-function (parser location type properties annotation item) (string? list? string? symb

Re: Discuss signature for new function \annotate

2013-06-06 Thread David Kastrup
David Kastrup writes: > Urs Liska writes: > >> Am 06.06.2013 13:35, schrieb David Kastrup: > >>> Putting an "item" of type symbol-list-or-music? last seems like a >>> reasonably good idea. >> Hm, I think I see what you mean, >> but if I write >> >> annotate = >> >> #(define-void-function (parser

Re: Frecobaldi 2 Mac OS X install guide

2013-06-06 Thread Tim McNamara
On Jun 6, 2013, at 5:35 AM, Andrew Bernard wrote: > Yes, but Mac OS X Darwin does not use apt as far as I know, only Debian and > Debian derived systems such as Ubuntu and Mint. > > As a result of this thread, I have decided the need is there for a macports > bundle for frescobaldi, one that inc

Re: Frecobaldi 2 Mac OS X install guide

2013-06-06 Thread Tim McNamara
On Jun 5, 2013, at 11:59 PM, flup2 wrote: > Hello, > > While reading your error message, it seems that the python version used is > the one included in OS X (/Library/Frameworks...), not the one installed by > macports (/opt/local...) > > To be sure that the problem lies there, here are a few ste

Re: Discuss signature for new function \annotate

2013-06-06 Thread David Kastrup
David Kastrup writes: > Urs Liska writes: > >> I get an error "Zu viel Vorgriff" (too much read-ahead?). >> If I replace 'Script' with '{ c }' for example it compiles without message. >> ??? > > And if you do > > annotate = > #(define-music-function (parser location type properties annotation it

Re: Discuss signature for new function \annotate

2013-06-06 Thread David Kastrup
Urs Liska writes: > Am 06.06.2013 13:35, schrieb David Kastrup: >> Putting an "item" of type symbol-list-or-music? last seems like a >> reasonably good idea. > Hm, I think I see what you mean, > but if I write > > annotate = > > #(define-void-function (parser location type properties annotation

Re: Discuss signature for new function \annotate

2013-06-06 Thread Urs Liska
Am 06.06.2013 13:35, schrieb David Kastrup: Urs Liska writes: Am 06.06.2013 12:22, schrieb David Kastrup: If your first argument is something like Script, you might want to make it of type symbol? instead. I actually have a syntax sanitizing patch in limbo where unquoted words are not accep

Re: Stem spacing with change staff

2013-06-06 Thread Eluze
Janek Warchoł-2 wrote > 2013/6/6 Andrew Bernard < > andrew.bernard@ > >: >> Thanks, that works - but has the unfortunate side effect of spacing the >> rest >> of the score far too wide. Is there a way you can adjust proportional >> spacing for a single bar? > > I think that \newSpacingSection ca

Re: Discuss signature for new function \annotate

2013-06-06 Thread David Kastrup
Urs Liska writes: > Am 06.06.2013 12:22, schrieb David Kastrup: > >> If your first argument is something like Script, you might want to make >> it of type symbol? instead. I actually have a syntax sanitizing patch >> in limbo where unquoted words are not accepted as strings. It is not >> going

Re: Discuss signature for new function \annotate

2013-06-06 Thread Urs Liska
Hi David, thanks for your comments! Am 06.06.2013 12:22, schrieb David Kastrup: Urs Liska writes: I'm interested in - general thoughts on the signature design (as I still lack experience with Scheme functions) % Plain signature of the function draft annotate = #(define-void-function (parser

Re: Frecobaldi 2 Mac OS X install guide

2013-06-06 Thread Andrew Bernard
Yes, but Mac OS X Darwin does not use apt as far as I know, only Debian and Debian derived systems such as Ubuntu and Mint. As a result of this thread, I have decided the need is there for a macports bundle for frescobaldi, one that includes all the dependencies with no headaches. This seems t

Re: Discuss signature for new function \annotate

2013-06-06 Thread David Kastrup
Urs Liska writes: > I'm interested in > - general thoughts on the signature design (as I still lack experience > with Scheme functions) > % Plain signature of the function draft > annotate = > #(define-void-function (parser location grob type properties annotation) >(string? string? list?

Discuss signature for new function \annotate

2013-06-06 Thread Urs Liska
Hi, I want to develop a 'lilypond-doc' package that can be used to a) document the API of a project or a library and b) document the musical content of lilypond scores. You can see an overview of its goals on https://github.com/openlilylib/lilypond-doc/wiki I urgently need at least the functi

Re: Stem spacing with change staff

2013-06-06 Thread Janek Warchoł
2013/6/6 Andrew Bernard : > Thanks, that works - but has the unfortunate side effect of spacing the rest > of the score far too wide. Is there a way you can adjust proportional > spacing for a single bar? I think that \newSpacingSection can help you. hth, Janek ___