如何在Lilypond中增加五线谱之间的距离?

huangapple go评论44阅读模式
英文:

How do you increase the distance between staves in Lilypond?

问题

我希望谱之间有更多的垂直间隔。

我完全迷失了,所以我不知道该尝试什么。抱歉。

英文:

I would like there to be more vertical space between the staves.

I am totally lost on this so I didn't know what to try. Sorry.

答案1

得分: 0

在Lilypond中,可以通过设置between-system-space属性来调整谱表之间的距离。此属性决定了在一个系统内谱表之间的间距以及系统之间的间距量。

英文:

Please provide a code snippet so that we can better help you. It's difficult to answer a question when little details about desired outcome nor any code is provided.

In Lilypond, the distance between staves can be adjusted by setting the between-system-space property. This property determines the amount of space between staves within a system, as well as the amount of space between systems.

答案2

得分: 0

以下是翻译好的部分:

这里查看有关此内容的文档。您感兴趣的属性是 system-system-spacing。我的\paper块看起来像这样(根据需要进行调整):

\paper {
  system-system-spacing =
    #'((basic-distance . 8) 
       (minimum-distance . 4)
       (padding . 2)
       (stretchability . 60)) % 默认值:12, 8, 1, 60
}
英文:

Look here for documentation on this. The property your are interested in is system-system-spacing. My \paper block looks like this (adjust to taste):

\paper {
  system-system-spacing =
    #'((basic-distance . 8) 
       (minimum-distance . 4)
       (padding . 2)
       (stretchability . 60)) % defaults: 12, 8, 1, 60
}

huangapple
  • 本文由 发表于 2023年4月17日 07:33:01
  • 转载请务必保留本文链接:https://go.coder-hub.com/76030821.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定