generated from boernel/lilypond-vorlagen
Initial commit
This commit is contained in:
124
lieder/authors_sandbox/authors_sandbox.ly
Normal file
124
lieder/authors_sandbox/authors_sandbox.ly
Normal file
@ -0,0 +1,124 @@
|
||||
\version "2.25.8"
|
||||
|
||||
\include "../../lilypond-custom-includes/base_config.ly"
|
||||
|
||||
#(set! paper-alist (cons '("testformat" . (cons (* 176 mm) (* 15 mm))) paper-alist))
|
||||
\paper {
|
||||
#(set-paper-size "testformat")
|
||||
}
|
||||
|
||||
\bookpart {
|
||||
\header {
|
||||
authors = #'(
|
||||
("kumpelerbe" text melody))
|
||||
year_text = "1600"
|
||||
year_melody = "1600"
|
||||
}
|
||||
\markup { \print-songinfo }
|
||||
}
|
||||
|
||||
\bookpart {
|
||||
\header {
|
||||
authors = #'(
|
||||
("kumpel" text melody))
|
||||
year_text = "1600"
|
||||
year_melody = "1800"
|
||||
}
|
||||
\markup { \print-songinfo }
|
||||
}
|
||||
|
||||
\bookpart {
|
||||
\header {
|
||||
authors = #'(
|
||||
("kumpel" text melody))
|
||||
year_melody = "1800"
|
||||
}
|
||||
\markup { \print-songinfo }
|
||||
}
|
||||
|
||||
\bookpart {
|
||||
\header {
|
||||
year_text = "1500"
|
||||
authors = #'(
|
||||
("kumpel" text))
|
||||
}
|
||||
\markup { \print-songinfo }
|
||||
}
|
||||
|
||||
\bookpart {
|
||||
\header {
|
||||
authors = #'(
|
||||
("kumpel" melody))
|
||||
}
|
||||
\markup { \print-songinfo }
|
||||
}
|
||||
|
||||
\bookpart {
|
||||
\header {
|
||||
authors = #'(
|
||||
("kumpel" melody)
|
||||
("dude" text composition melody))
|
||||
}
|
||||
\markup { \print-songinfo }
|
||||
}
|
||||
|
||||
\bookpart {
|
||||
\header {
|
||||
authors = #'(
|
||||
("kumpel" (verse 1))
|
||||
("dude" melody (voice 1) (voice 2)))
|
||||
}
|
||||
\markup { \print-songinfo }
|
||||
}
|
||||
|
||||
\bookpart {
|
||||
\header {
|
||||
authors = #'(
|
||||
("kumpel" text (verse 2))
|
||||
("dude" (verse 2) (verse 3)))
|
||||
}
|
||||
\markup { \print-songinfo }
|
||||
}
|
||||
|
||||
\bookpart {
|
||||
\header {
|
||||
authors = #'(
|
||||
("kumpel" text (voice 2) (voice 3))
|
||||
("dude" (voice 2) (voice 3))
|
||||
("nocheiner" (voice 4)))
|
||||
}
|
||||
\markup { \print-songinfo }
|
||||
}
|
||||
|
||||
\bookpart {
|
||||
\header {
|
||||
year_composition = "2001"
|
||||
year_melody = "1901"
|
||||
authors = #'(
|
||||
("kumpel" text composition)
|
||||
("dude" composition))
|
||||
}
|
||||
\markup { \print-songinfo }
|
||||
}
|
||||
|
||||
\bookpart {
|
||||
\header {
|
||||
authors = #'(
|
||||
("kumpel" interlude)
|
||||
("dude" bridge)
|
||||
("" melody))
|
||||
}
|
||||
\markup { \print-songinfo }
|
||||
}
|
||||
|
||||
\bookpart {
|
||||
\header {
|
||||
year_melody = "1800"
|
||||
year_translation = "2010"
|
||||
authors = #'(
|
||||
("kumpel" translation)
|
||||
("dude" text (meloverse 1))
|
||||
("" melody))
|
||||
}
|
||||
\markup { \print-songinfo }
|
||||
}
|
93
lieder/sandbox/sandbox.ly
Normal file
93
lieder/sandbox/sandbox.ly
Normal file
@ -0,0 +1,93 @@
|
||||
\version "2.25.8"
|
||||
%songStyle = #'büdel
|
||||
|
||||
\include "../../lilypond-custom-includes/base_config.ly"
|
||||
\include "../../lilypond-song-includes/liedbausteine/sandbox.ly"
|
||||
|
||||
HEADER = \bookpart {
|
||||
|
||||
\paper {
|
||||
%page-count = #1 % dieser Befehl quetscht alles auf diese Seitenanzahl
|
||||
%markup-system-spacing.padding = 4 %Abstand zwischen Titel und Noten
|
||||
%top-system-spacing.padding = 6 %Abstand zwischen Seitenrand und obersten Notensystem (wenn was anderes da steht wie z.B. Titel/ Text, greift das nicht) gut um z.B. noten auf der zweiten Seite runter zu machen
|
||||
#(layout-set-staff-size 13) %Größe ändern
|
||||
}
|
||||
|
||||
\header {
|
||||
\basicSongInfo
|
||||
titlesize = 11
|
||||
titletopspace = 2
|
||||
categories = "see"
|
||||
}
|
||||
}
|
||||
|
||||
\transposeGlobal d e
|
||||
|
||||
MUSIC =
|
||||
{
|
||||
<<
|
||||
\songChords
|
||||
\new ChoirStaff = "firstStaff"
|
||||
<<
|
||||
\new Voice = "firstVoice" { << \firstVoice { s4 \repeat unfold 4 { s1 } \break } >> }
|
||||
\addlyrics { \firstVerse }
|
||||
\addlyrics { \refLyrics }
|
||||
>>
|
||||
>>
|
||||
}
|
||||
|
||||
TEXT = \markuplist
|
||||
{
|
||||
%\fontsize #-1 %Text in den Strophen kleiner
|
||||
%\vspace #1.5 %Abstand zwischen Strophen
|
||||
|
||||
\group-verses {
|
||||
\override #'(verse-vspace . 0.8) %abstand der Verse voneinander kleiner
|
||||
\chordverse #(stanza 3) \thirdVerseMarkup
|
||||
|
||||
\nochordverse \refString \fourthVerseMarkup
|
||||
}
|
||||
|
||||
\group-verses {
|
||||
\vspace #5
|
||||
|
||||
\nochordverse #(stanza 5) \fifthVerseMarkup
|
||||
|
||||
\nochordverse #(stanza 6) \sixthVerseMarkup
|
||||
|
||||
\nochordverse #(stanza 7) \seventhVerseMarkup
|
||||
}
|
||||
|
||||
\override #'(verse-cols . 2) %Spalten
|
||||
%\override #'(verse-ordering-horizontal . #t) % Verse horizontal fortlaufend anordnen
|
||||
% \override #'(verse-hspace . -5) %Abstand zwischen Spalten geringer
|
||||
%\translate #'(2 . 0) %das nächste was er printed, printed er nicht dahin wo es eigentlich hinkommt sondern verschiebt es um (x.y)
|
||||
\group-verses {
|
||||
\override #`(verse-break-voice . ,#{ s4 \repeat unfold 2 { s1 } \break #})
|
||||
\chordlyrics \refLyrics
|
||||
\chordverse #(stanza 8) \columnVerseMarkup
|
||||
|
||||
\chordverse #(stanza 9) \columnVerseMarkup
|
||||
|
||||
\override #'(intraverse-vspace . 3) % Abstand der Zeilen eines Verses vergrößern
|
||||
\chordverse #(stanza 10) \columnVerseMarkup
|
||||
|
||||
\chordverse #"XI." \columnVerseMarkup
|
||||
|
||||
\override #'(custom-verse-breaks "Strophen" "auch" "krass")
|
||||
\chordverse #(stanza 11) \columnVerseMarkup
|
||||
}
|
||||
\group-verses {
|
||||
%\override #'(baseline-skip . 1) %Damit verändert man den Abstand der Notenzeilen
|
||||
\bridgeverse
|
||||
\chordverse #""
|
||||
#"(,\\repeats-around-chords { a:m c } d)"
|
||||
\score {
|
||||
\chords { \repeats-around-chords { a4:m c } d }
|
||||
\layout { \generalLayout }
|
||||
}
|
||||
}
|
||||
\fret-chord #"x;2;4;4;4;o;" #"h:1.3.5.11"
|
||||
}
|
||||
|
||||
\include "../../lilypond-common-includes/standalone_output.ly"
|
14
lieder/vorlage_light/vorlage_light.ly
Normal file
14
lieder/vorlage_light/vorlage_light.ly
Normal file
@ -0,0 +1,14 @@
|
||||
\version "2.25.8"
|
||||
|
||||
\include "../../lilypond-custom-includes/base_config.ly"
|
||||
\include "../../lilypond-song-includes/liedbausteine/sandbox.ly"
|
||||
|
||||
HEADER = \bookpart {
|
||||
\header {
|
||||
\basicSongInfo
|
||||
%infotext = ""
|
||||
categories = ""
|
||||
}
|
||||
}
|
||||
|
||||
\include "../../lilypond-common-includes/standalone_output.ly"
|
37
lieder/vorlage_light/vorlage_light_old.ly
Normal file
37
lieder/vorlage_light/vorlage_light_old.ly
Normal file
@ -0,0 +1,37 @@
|
||||
\version "2.25.8"
|
||||
|
||||
\include "../../lilypond-custom-includes/base_config.ly"
|
||||
\include "../../lilypond-song-includes/liedbausteine/sandbox.ly"
|
||||
|
||||
HEADER = \bookpart {
|
||||
\header {
|
||||
\basicSongInfo
|
||||
categories = ""
|
||||
infotext = ""
|
||||
}
|
||||
}
|
||||
|
||||
breakVoice = \relative c' {
|
||||
s1 \break
|
||||
}
|
||||
|
||||
MUSIC = {
|
||||
<<
|
||||
\songChords
|
||||
\new Staff = "firstStaff"
|
||||
<<
|
||||
\new Voice = "firstVoice" { \melodyVoice }
|
||||
\addlyrics { \firstVerse \refLyrics }
|
||||
%\new Voice { \breakVoice }
|
||||
>>
|
||||
>>
|
||||
}
|
||||
|
||||
TEXT = \markuplist {
|
||||
\group-verses {
|
||||
\override #'(custom-verse-breaks "" "")
|
||||
\chordverse #(stanza 3) \thirdVerseMarkup
|
||||
}
|
||||
}
|
||||
|
||||
\include "../../lilypond-common-includes/standalone_output.ly"
|
Reference in New Issue
Block a user