对 lillypond 文件的修改
Modifications to lillypond file
这是我的代码:
\begin{lilypond}
\version "2.17.27"
\language "english"
\relative{
\time 2/4
c' c _"C.1"|
c cs |
c d |
c ds |
c e |
c f |
c g' |
c, a' |
c, as' |
c, b' |
}
\end{lilypond}
它生成这个:
我需要但不知道怎么做:
- 删除谱号和仪表标记
- 而不是 "C.1" 放入俄语“Ч.1”
- 将 "C.1" 文本移至第一个间距下方,使其居中。
下面的代码应该可以解决问题:
\version "2.17.27"
\language "english"
\relative{
\omit Staff.Clef
\omit Staff.TimeSignature
\time 2/4
c' _"Ч.1" c |
c cs |
c d |
c ds |
c e |
c f |
c g' |
c, a' |
c, as' |
c, b' |
}
只要把它放到一个名为document.ly
的文件中(例如)和运行 lilypond就可以了:
lilypond --pdf document.ly
(如果您想要 PNG 作为结果,请将 --pdf
替换为 --png
)。这应该会生成包含以下内容的 PDF:
在 Ubuntu Vivid (15.04) 上使用 GNU LilyPond 2.18.2 进行测试。
这是我的代码:
\begin{lilypond}
\version "2.17.27"
\language "english"
\relative{
\time 2/4
c' c _"C.1"|
c cs |
c d |
c ds |
c e |
c f |
c g' |
c, a' |
c, as' |
c, b' |
}
\end{lilypond}
它生成这个:
我需要但不知道怎么做:
- 删除谱号和仪表标记
- 而不是 "C.1" 放入俄语“Ч.1”
- 将 "C.1" 文本移至第一个间距下方,使其居中。
下面的代码应该可以解决问题:
\version "2.17.27"
\language "english"
\relative{
\omit Staff.Clef
\omit Staff.TimeSignature
\time 2/4
c' _"Ч.1" c |
c cs |
c d |
c ds |
c e |
c f |
c g' |
c, a' |
c, as' |
c, b' |
}
只要把它放到一个名为document.ly
的文件中(例如)和运行 lilypond就可以了:
lilypond --pdf document.ly
(如果您想要 PNG 作为结果,请将 --pdf
替换为 --png
)。这应该会生成包含以下内容的 PDF:
在 Ubuntu Vivid (15.04) 上使用 GNU LilyPond 2.18.2 进行测试。