在lilypond采取一些措施后,突破线

bra*_*ito 7 line lilypond measures

我有这个作为示例符号示例.我将如何指定在整个整个过程中每行准确地有4个度量.我搜索了整个文档,但没有找到这么简单的功能.我错过了什么吗?

\version "2.18.2"

% comment line

\header {
    title = "Ruska narodna pesma."
    composer = "Narodna pesma"
    subtitle = "-za gitaru-"
}

melody = {
    \key c \major
    \time 3/4

    e' f e |
    e, gis b |
    d c b |
    a c e |
}

\score {
    \relative c' <<
        \new Staff \melody
    >>
    \layout {
    }
}
Run Code Online (Sandbox Code Playgroud)

bra*_*ito 7

好的,我已经在邮件列表上找到了答案..所以这里作为未来可能有需要的人参考..*(感谢大卫)

\version "2.18.2"

% comment line

\header {
    title = "Ruska narodna pesma."
    composer = "Narodna pesma"
    subtitle = "-za gitaru-"
}

melody = {
    \key c \major
    \time 3/4

    e' f e |
    e, gis b |
    d c b |
    % **EDIT** use manual breaks where you want them to appear
    a c e | \break
}

\score {
    \relative c' <<
        \new Staff \melody
    >>
    \layout {
    % **EDIT** also here, specify ragged-right property
    ragged-right = ##f
    }
}
Run Code Online (Sandbox Code Playgroud)