Am 18.02.2013 07:07, schrieb Nathan:
> On Sun, Feb 17, 2013 at 10:05 PM, Noeck <noeck.marb...@gmx.de
> <mailto:noeck.marb...@gmx.de>> wrote:
> 
>     Hi Guy,
> 
>     some hints for you:
> 
>     1) You should send code that actually compiles. For your example
>     \language "english" is missing and your global definitions are unknown
>     (and probably not necessary).
>     http://lilypond.org/website/tiny-examples.html
> 
>     2) What you want is probably:
>     \override Staff.OttavaBracket #'style = #'none
>     (But please be aware that this makes the notation ambiguous, because you
>     do not know where it ends.)
> 
> 
> Out of curiosity, is there any way to add a "loco" marking automatically?

That would be nice (it would remove the ambiguity), but I do not know
how. You can do it by hand, however, using a text spanner (mind the
different placement of \ottava and \startTextSpan!).

\version "2.16.0"
{
  \ottava #1
  \override Staff.OttavaBracket #'stencil = ##f
  \override TextSpanner #'(bound-details left text) = "8va"
  \override TextSpanner #'(bound-details right text) = "loco"
  \override TextSpanner #'style = #'none
  g''2
  \startTextSpan
  f''4
  \ottava #0
  e''
  \stopTextSpan
}

_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to