Re: Removing fingerings from the general score

2013-06-07 Thread Jacques Menu
Hello folks, Thanks for the help about tags and Fingering_engraver, and a nice day! -- Jacques Menu Ch. de la Pierre 12 1023 Crissier mailto:jacques.m...@tvtmail.ch ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/

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