lilypond-user
[Top][All Lists]
Advanced

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

Re: how to force the placement of the ottava bracket to be below the not


From: Jean Abou Samra
Subject: Re: how to force the placement of the ottava bracket to be below the notes?
Date: Mon, 1 Nov 2021 23:46:36 +0100
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.1.2

Le 01/11/2021 à 23:20, Kenneth Wolcott a écrit :
   How to force the placement of the ottava bracket to be below the
notes? (or above?)

Below: just \override the direction. Above: prior
to version 2.23.3, you had to use the lesser known
\overrideProperty (see https://gitlab.com/lilypond/lilypond/-/merge_requests/762).

\version "2.22.1"

{
  \override Staff.OttavaBracket.direction = #DOWN
  \ottava 1
  c'1
}

{
  %% Does not work in 2.22, works from 2.23.3
  %% \override Staff.OttavaBracket.direction = #UP
  %% Works in all cases
  \overrideProperty Staff.OttavaBracket.direction #UP
  \ottava -1
  c'1
}

Best,
Jean



reply via email to

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