Lilypond:跳过标题(命令行)

时间:2018-09-08 11:53:22

标签: command-line lilypond

我有一个至少有一个分数和一个标头的lilypond文件。编译单曲时与

  

lilypond-windows -ddelete-intermediate-files -dno-point-and-click --pdf example.ly

生成完整的歌曲(包括标题中的标题和作曲家):

enter image description here

是否可以添加仅显示分数而不显示标题信息的命令行开关,而不会消除编译完整独立文件的可能性?

MWE(如果更容易,我们也可以从单分数示例开始):

\header {
  title = "SUITE I."
  composer = "J. S. Bach."
}

\score {
  \new Staff \relative g, {
    \clef bass
    \key g \major
    \repeat unfold 2 { g16( d' b') a b d, b' d, } |
    \repeat unfold 2 { g,16( e' c') b c e, c' e, } |
  }
  \header {
    piece = "Prélude."
  }
}

\score {
  \new Staff \relative b {
    \clef bass
    \key g \major
    \partial 16 b16 |
    <g, d' b'~>4 b'16 a( g fis) g( d e fis) g( a b c) |
    d16( b g fis) g( e d c) b(c d e) fis( g a b) |
  }
  \header {
    piece = "Allemande."
  }
}

(分数/示例取自Lilypond manual

0 个答案:

没有答案