英文:
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
}
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论