Reputation: 23749
Here is my code:
\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}
It generates this:
What I need and don't know how to do:
Upvotes: 2
Views: 106
Reputation: 13618
The following code should do the trick:
\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' |
}
Just put it into a file named document.ly
(for example) and run lilypond on it:
lilypond --pdf document.ly
(replace --pdf
with --png
if you want a PNG as result). This should produce a PDF with the following content:
Tested with GNU LilyPond 2.18.2 on Ubuntu Vivid (15.04).
Upvotes: 1