Compare commits

..

3 Commits

Author SHA1 Message Date
Jakob Krueger
7e7d6820fb Büdel-Layout: Title in bold 2023-07-23 10:49:39 +02:00
Jakob Krueger
2f0a5b4c18 Swing-Style 2023-07-23 10:49:25 +02:00
Jakob Krueger
108b97b6f1 Swing style 2023-07-23 10:49:12 +02:00
3 changed files with 50 additions and 1 deletions

View File

@ -14,6 +14,7 @@
\include "chord_settings.ly"
\include "verses_with_chords.ly"
\include "arrows_in_scores.ly"
\include "swing_style.ly"
% reset important variables
LAYOUT = \layout { \generalLayout }

View File

@ -1,7 +1,7 @@
songFormatAndSize = "a5"
songMargin = 5
songInfoFontSize = 0
songTitleFont = "Fontin"
songTitleFont = "Fontin Bold"
songChordFont = "Fontin"
songLyricFont = "FontinSans"
songChordFontSeries = #'bold

48
swing_style.ly Normal file
View File

@ -0,0 +1,48 @@
swing = \mark \markup {
\line \general-align #Y #DOWN {
\score {
\new Staff \with {
fontSize = #-2
\override StaffSymbol.line-count = #0
% \override VerticalAxisGroup.Y-extent = #'(0 . 0)
}
\relative {
\stemUp
\override Score.SpacingSpanner.common-shortest-duration = #(ly:make-moment 3 16)
\override Beam.positions = #'(2 . 2)
h'8[ h8]
}
\layout {
ragged-right= ##t
indent = 0
\context {
\Staff \remove "Clef_engraver"
\remove "Time_signature_engraver"
}
}
}
" ="
\score {
\new Staff \with {
fontSize = #-2
\override StaffSymbol.line-count = #0
% \override VerticalAxisGroup.Y-extent = #'(0 . 0)
}
\relative {
\stemUp
\override Score.SpacingSpanner.common-shortest-duration = #(ly:make-moment 3 16)
\override Stem.length = #4.5
\tuplet 3/2 { h'4 h8 }
}
\layout {
ragged-right= ##t
indent = 0
\context {
\Staff
\remove "Clef_engraver"
\remove "Time_signature_engraver"
}
}
}
}
}