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
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"
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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?
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
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
___
22 matches
Mail list logo