2 Commits

Author SHA1 Message Date
tux
8e6eff1cad better override system 2023-07-24 08:39:38 +02:00
5a2ead5510 global Size anpassen 2023-07-23 13:30:17 +02:00
4 changed files with 10 additions and 16 deletions

View File

@ -3,6 +3,8 @@
\include "styles.ly"
\include #(ly:format "styles/~a.ly" songStyle)
\include #(if (defined? 'customStyleOverridesFile) customStyleOverridesFile "void.ly")
#(set-default-paper-size songFormatAndSize)
#(set-global-staff-size globalSize)

View File

@ -52,6 +52,12 @@ bchord =
% additional bass notes should get uppercased
#(define (bassnote-name->german-markup-nosym pitch lowercase?)(note-name->german-markup-nosym pitch #f))
#(define chordNameExceptions
(if (defined? 'customChordPrintings)
(sequential-music-to-chord-exceptions customChordPrintings #t)
'()))
generalLayout = \layout {
\generalLayout
\context {
@ -66,6 +72,7 @@ generalLayout = \layout {
chordRootNamer = #note-name->german-markup-nosym
chordNoteNamer = #bassnote-name->german-markup-nosym
majorSevenSymbol = "maj7"
chordNameExceptions = \chordNameExceptions
% der baseline-skip der Akkorde beeinflusst, wie hoch die Hochstellung ist
\override ChordName.baseline-skip = #1.0
}

View File

@ -1,15 +0,0 @@
generalLayout = \layout {
\generalLayout
\context {
\ChordNames
chordNameExceptions = #(sequential-music-to-chord-exceptions customChordPrintings #t)
}
}
verseChordLayout = \layout {
\verseChordLayout
\context {
\ChordNames
chordNameExceptions = #(sequential-music-to-chord-exceptions customChordPrintings #t)
}
}

View File

@ -11,5 +11,5 @@ songTextChordFontSize = 2
songTextLineHeigth = 5
songInfoPoetAndComposerStacked = ##t
songTocColumns = 2
globalSize = 15
globalSize = 14
lyricSize = 1.6