bug-lilypond
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Issue 2076 in lilypond: Doc: improve NR 1.6.3 Instrument names (better t


From: lilypond
Subject: Issue 2076 in lilypond: Doc: improve NR 1.6.3 Instrument names (better to use \with )
Date: Sun, 04 Dec 2011 16:35:36 +0000

Status: Accepted
Owner: ----
Labels: Type-Documentation

New issue 2076 by address@hidden: Doc: improve NR 1.6.3 Instrument names (better to use \with )
http://code.google.com/p/lilypond/issues/detail?id=2076

Per James Lowe and Xavier Scheuer
Dear bug squad, could you add this doc improvement request to the
tracker, as asked by James in this thread?  Thanks!
http://lists.gnu.org/archive/html/lilypond-devel/2011-12/msg00041.html

In NR 1.6.3 Writing parts > Instrument names , it should be recommended
to use

 \new Staff \with {
   instrumentName = #"Bassoon"
 }

and _not_ (advise against)

 \set Staff.instrumentName = #"Violin "

for the following reason: one _must_ use  \with {…}  to avoid the
instrument name _not to be printed!_ if a parallel voice starts with a
\grace .

This is not an "hypothetical issue", we got at least half a dozen
messages from users experiencing this "issue" (although they did
exactly what is said in the documentation) on the French users mailing
list.

Could you please change the doc, NR 1.6.3 Writing parts > Instrument
names , accordingly?

Thanks in advance.

Here is a snippet showing the relevance of this issue (typically what
a lambda user would encounter).

%%%%

\version "2.15.20"

\score {
 <<
   \new Staff \with {
     instrumentName = #"OK"
   } {
     c'1
   }
   \new Staff \with {
     instrumentName = #"OK"
   } {
     \grace b8 c'1
   }
 >>
}

\score {
 <<
   \new Staff {
     \set Staff.instrumentName = #"NOT PRINTED!!"
     c'1
   }
   \new Staff {
     \set Staff.instrumentName = #"NOT OK"
     \grace b8 c'1
   }
 >>
}

%%%%



reply via email to

[Prev in Thread] Current Thread [Next in Thread]