खोज…


प्रचुरता का क्षेत्र

lilypond-book कमांड के माध्यम से लिलीपॉन्ड नोटेशन उत्कीर्णन का उपयोग लाटेक्स के साथ किया जा सकता है। पहले हमारे संगीत को एम्बेड करने के लिए एक फ़ाइल दस्तावेज़ (फ़ाइल एक्सटेंशन .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 फ़ाइल (बनाने .ly ), सहित lilypond-book-preamble.ly फ़ाइल (जो LilyPond लगाने के लिए कैसे पता चल जाएगा):

\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 उत्कीर्ण संगीत युक्त एक पीडीएफ आउटपुट करेगा:

यहाँ छवि विवरण दर्ज करें



Modified text is an extract of the original Stack Overflow Documentation
के तहत लाइसेंस प्राप्त है CC BY-SA 3.0
से संबद्ध नहीं है Stack Overflow