수색…


릴리 폰드

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