snippets einzeln baubar und default layout
This commit is contained in:
parent
14e01900c2
commit
8b0fc2d7c9
23
all_base_includes.ly
Normal file
23
all_base_includes.ly
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
\include #(if (< (list-ref (ly:version) 1) 24) "legacy-lilypond-compatibility.ly" "void.ly")
|
||||||
|
|
||||||
|
#(define noStandaloneOutput (if (defined? 'noStandaloneOutput) noStandaloneOutput #f))
|
||||||
|
|
||||||
|
#(if (defined? 'LAYOUT) #f (load "json_parser.scm"))
|
||||||
|
#(use-modules (json parser))
|
||||||
|
\include "basic_format_and_style_settings.ly"
|
||||||
|
\include #(if (< (list-ref (ly:version) 1) 25) "legacy-lilypond-compatibility-pre-2.25.ly" "void.ly")
|
||||||
|
\include "eps_file_from_song_dir.ly"
|
||||||
|
\include "title_with_category_images.ly"
|
||||||
|
\include "auto_rest_merging.ly"
|
||||||
|
\include "chord_settings.ly"
|
||||||
|
\include "transposition.ly"
|
||||||
|
\include "verses_with_chords.ly"
|
||||||
|
\include "arrows_in_scores.ly"
|
||||||
|
\include "swing_style.ly"
|
||||||
|
\include "inline_score.ly"
|
||||||
|
|
||||||
|
% reset important variables
|
||||||
|
LAYOUT = \layout { \generalLayout }
|
||||||
|
HEADER = {}
|
||||||
|
MUSIC = {}
|
||||||
|
TEXT = \markuplist {""}
|
7
default_output.ly
Normal file
7
default_output.ly
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
#(define noDefaultOutput (if (defined? 'noDefaultOutput) noDefaultOutput #f))
|
||||||
|
HEADER = \bookpart {
|
||||||
|
\header {
|
||||||
|
\basicSongInfo
|
||||||
|
}
|
||||||
|
}
|
||||||
|
\include #(if noDefaultOutput "void.ly" "standalone_output.ly")
|
@ -1,27 +1,5 @@
|
|||||||
\version "2.18"
|
|
||||||
|
|
||||||
#(ly:set-option 'relative-includes #t)
|
#(ly:set-option 'relative-includes #t)
|
||||||
|
|
||||||
\include #(if (< (list-ref (ly:version) 1) 24) "legacy-lilypond-compatibility.ly" "void.ly")
|
#(define noDefaultOutput #t)
|
||||||
|
|
||||||
#(define noStandaloneOutput (if (defined? 'noStandaloneOutput) noStandaloneOutput #f))
|
\include "all_base_includes.ly"
|
||||||
|
|
||||||
#(if (defined? 'LAYOUT) #f (load "json_parser.scm"))
|
|
||||||
#(use-modules (json parser))
|
|
||||||
\include "basic_format_and_style_settings.ly"
|
|
||||||
\include #(if (< (list-ref (ly:version) 1) 25) "legacy-lilypond-compatibility-pre-2.25.ly" "void.ly")
|
|
||||||
\include "eps_file_from_song_dir.ly"
|
|
||||||
\include "title_with_category_images.ly"
|
|
||||||
\include "auto_rest_merging.ly"
|
|
||||||
\include "chord_settings.ly"
|
|
||||||
\include "transposition.ly"
|
|
||||||
\include "verses_with_chords.ly"
|
|
||||||
\include "arrows_in_scores.ly"
|
|
||||||
\include "swing_style.ly"
|
|
||||||
\include "inline_score.ly"
|
|
||||||
|
|
||||||
% reset important variables
|
|
||||||
LAYOUT = \layout { \generalLayout }
|
|
||||||
HEADER = {}
|
|
||||||
MUSIC = {}
|
|
||||||
TEXT = \markuplist {""}
|
|
8
snippet_include.ly
Normal file
8
snippet_include.ly
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
#(ly:set-option 'relative-includes #t)
|
||||||
|
|
||||||
|
#(define noDefaultOutput (if (defined? 'noDefaultOutput) noDefaultOutput #f))
|
||||||
|
|
||||||
|
\include #(if noDefaultOutput "void.ly" "all_base_includes.ly")
|
||||||
|
|
||||||
|
#(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 (call-with-input-file "../data/songs.json" json->scm)))
|
@ -5,7 +5,7 @@
|
|||||||
|
|
||||||
#(define songStyle
|
#(define songStyle
|
||||||
(if (not (defined? 'songStyle))
|
(if (not (defined? 'songStyle))
|
||||||
(if (not (defined? 'defaultSongStyle)) 'börnel defaultSongStyle)
|
(if (not (defined? 'defaultSongStyle)) 'default defaultSongStyle)
|
||||||
songStyle))
|
songStyle))
|
||||||
|
|
||||||
#(if (not (boolean? bookStyle))
|
#(if (not (boolean? bookStyle))
|
||||||
|
14
styles/default.ly
Normal file
14
styles/default.ly
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
songFormatAndSize = "a4portrait"
|
||||||
|
songMargin = 5
|
||||||
|
songInfoFontSize = -3.5
|
||||||
|
songTitleFont = "LilyPond Sans"
|
||||||
|
songChordFont = "LilyPond Serif"
|
||||||
|
songLyricFont = "LilyPond Sans"
|
||||||
|
songChordFontSeries = #'bold
|
||||||
|
songTextChordAlignment = #'center
|
||||||
|
songScoreChordFontSize = 0
|
||||||
|
songTextChordFontSize = \songScoreChordFontSize
|
||||||
|
songTextLineHeigth = 5
|
||||||
|
songTocColumns = 3
|
||||||
|
globalSize = 15
|
||||||
|
lyricSize = 1.6
|
Loading…
Reference in New Issue
Block a user