サーチ…


LilyPond

LilyPond表記彫刻師は、 lilypond-bookコマンドを使用してLaTeXで使用できます。まず、LaTeXドキュメント(ファイル拡張子.lytex )を作成して、音楽を次の場所に埋め込みます。

\documentclass[letterpaper,12pt]{article}

\begin{document}

\begin{center}
    {\fontsize{24pt}{24pt}\textbf{Twa Corbies}}\\
\end{center}

\begin{flushright}
    \textsc{Your Name}
\end{flushright}

% We don't need to require anything for this because lilypond-book will process it.
\lilypondfile{TwaCorbies.ly}
\end{document}

次に、 lilypond-book-preamble.lyファイル(LilyPondが見つける方法を知っている)を含むLilyPondファイル( .ly )を作成します。

\version "2.16.2"

\include "lilypond-book-preamble.ly"

voice = <<
    \relative c' {
        \tempo "con affetto"
        \clef bass
        \key e \minor
        \time 3/4

        a a b | c a a | g a2 |
        a4 a b | c2 ~ c8 a8 | a8 g a2 |
        \bar "|."
    }
    \addlyrics{
        As I was wal -- king all a -- lane
        I heard twa cor -- bies make a mane.
    }
>>

\score {
    <<
        \new Staff = "voice" {
            \voice
        }
    >>
    \layout { }
    \midi {
        \context {
            \Score
            tempoWholesPerMinute = #(ly:make-moment 90 4)
        }
    }
}

ビルドするには、 lilypond-bookコマンドを実行します。

lilypond-book --include=mymusicsourcedirectory/ --pdf TwaCorbies.lytex

あなたのLilyPond刻まれた音楽を含むPDFを出力します:

ここに画像の説明を入力



Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow