[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: ottava brackets and font size
From: |
Erik Sandberg |
Subject: |
Re: ottava brackets and font size |
Date: |
Tue, 28 Sep 2004 00:40:01 +0200 |
User-agent: |
KMail/1.6.2 |
Added separately as ottava-font-size and c-ottava-triplet-bracket.
I'm introducing a new convention now, bugs that involve collisions are called
c-*.ly (I just wanted some more structure)
On Sunday 26 September 2004 17.32, Werner LEMBERG wrote:
> %
> % address@hidden
>
> \version "2.3.18"
>
> \header { texidoc = "
> This example shows two problems:
>
> . Ottava brackets collide with tuplet brackets.
>
> . The `8va' string should become smaller, as is the `3' in the tuplet
> bracket, if `fontSize' is changed, since the `OttavaBracket' grob
> uses `font-interface' (according to the reference).
> " }
>
> \score {
> \context Staff \relative c' {
> #(set-octavation 1) \times 2/3 { c'4 c c } #(set-octavation 0) c c |
> \set fontSize = #-3
> #(set-octavation 1) \times 2/3 { c'4 c c } #(set-octavation 0) c c |
> }
> \paper {
> raggedright = ##t
> }
> }
>
> % EOF