Compare commits
No commits in common. "47bb7991b8a4dbca9f747631df7dbb7c42d4879e" and "f0ffd3f6305f61ab47cdae342e749c44d1f9b78f" have entirely different histories.
47bb7991b8
...
f0ffd3f630
@ -1,2 +0,0 @@
|
|||||||
\include "lilypond-book-preamble.ly"
|
|
||||||
#(ly:set-option 'separate-page-formats "pdf")
|
|
@ -4,5 +4,5 @@
|
|||||||
|
|
||||||
\include #(if noDefaultOutput "void.ly" "all_base_includes.ly")
|
\include #(if noDefaultOutput "void.ly" "all_base_includes.ly")
|
||||||
|
|
||||||
#(define AUTHOR_DATA (if (defined? 'AUTHOR_DATA) AUTHOR_DATA (parse-yml-file "../data/authors.yml")))
|
#(define AUTHOR_DATA (if (defined? 'AUTHOR_DATA) AUTHOR_DATA (call-with-input-file "../data/authors.json" json->scm)))
|
||||||
#(define SONG_DATA (if (defined? 'SONG_DATA) SONG_DATA (parse-yml-file "../data/songs.yml")))
|
#(define SONG_DATA (if (defined? 'SONG_DATA) SONG_DATA (call-with-input-file "../data/songs.json" json->scm)))
|
@ -18,19 +18,19 @@ TEXT = \markuplist {
|
|||||||
\TEXT
|
\TEXT
|
||||||
}
|
}
|
||||||
|
|
||||||
#(if (not noStandaloneOutput)
|
% nur Output wenn noStandaloneOutput auf false steht
|
||||||
(begin
|
output = #(if (not noStandaloneOutput)
|
||||||
(let ((header (ly:book-header HEADER)) (paper (ly:book-paper HEADER)))
|
#{
|
||||||
(if header (set! $defaultheader header))
|
\bookpart {
|
||||||
(if paper (set! $defaultpaper paper))
|
\HEADER
|
||||||
)
|
|
||||||
(add-score #{
|
|
||||||
\score {
|
\score {
|
||||||
\MUSIC
|
\MUSIC
|
||||||
\layout { \LAYOUT }
|
\layout { \LAYOUT }
|
||||||
}#})
|
}
|
||||||
(add-score TEXT)
|
|
||||||
(add-score #{
|
\TEXT
|
||||||
|
|
||||||
\score {
|
\score {
|
||||||
\unfoldRepeats { \MUSIC \INLINESCOREMUSIC }
|
\unfoldRepeats { \MUSIC \INLINESCOREMUSIC }
|
||||||
\midi {
|
\midi {
|
||||||
@ -40,5 +40,15 @@ TEXT = \markuplist {
|
|||||||
tempoWholesPerMinute = #(ly:make-moment midiQuarterNoteSpeed 4)
|
tempoWholesPerMinute = #(ly:make-moment midiQuarterNoteSpeed 4)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}#})
|
}
|
||||||
))
|
|
||||||
|
|
||||||
|
}
|
||||||
|
#}
|
||||||
|
)
|
||||||
|
|
||||||
|
% if we don't want a standalone output, cause we compile a book, we just have an empty output here,
|
||||||
|
% so lilypond does not generate output for this song
|
||||||
|
\book {
|
||||||
|
\bookpart { \output }
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user