【问题标题】:break line after some number of measures in lilypond在 lilypond 采取一些措施后断线
【发布时间】:2014-05-11 12:31:37
【问题描述】:

我将此作为示例符号示例。我将如何指定 每行正好 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 {
    }
}

【问题讨论】:

    标签: line lilypond measures


    【解决方案1】:

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

    \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
        }
    }
    

    【讨论】:

      【解决方案2】:

      您应该首先在文档中找到答案。如果您转到 Notation Reference 的索引并搜索“换行符”,您将找到 relevant chapter。 如果向下滚动,您会看到另一种添加换行符的方式,即使用包含间隔休止符的声音(如此不可见)并将换行符放置在那里。这种策略在this section 中有进一步的解释,它的优点是可以让您打开/关闭手动换行符。

      【讨论】:

        猜你喜欢
        • 1970-01-01
        • 2018-11-22
        • 1970-01-01
        • 2018-06-09
        • 1970-01-01
        • 1970-01-01
        • 2012-01-15
        • 1970-01-01
        • 1970-01-01
        相关资源
        最近更新 更多