latex
Gravering Noter
Sök…
LilyPond
LilyPond-noteringsgraveraren kan användas med LaTeX via lilypond-book
kommandot. Låt .lytex
först skapa ett LaTeX-dokument (med filändelsen .lytex
) för att bädda in vår musik i:
\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}
Sedan skapar vi vår LilyPond-fil ( .ly
), inklusive lilypond-book-preamble.ly
filen (som LilyPond kommer att veta hur man hittar):
\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)
}
}
}
att bygga kör vi sedan lilypond-book
:
lilypond-book --include=mymusicsourcedirectory/ --pdf TwaCorbies.lytex
som kommer att mata ut en PDF som innehåller din LilyPond-graverad musik:
Modified text is an extract of the original Stack Overflow Documentation
Licensierat under CC BY-SA 3.0
Inte anslutet till Stack Overflow