Compare commits

..

2 Commits

5 changed files with 62 additions and 52 deletions

1
.gitignore vendored
View File

@ -3,6 +3,7 @@
*.ps *.ps
*.midi *.midi
*.mid *.mid
*.csv
*.log *.log
*~ *~

View File

@ -18,12 +18,12 @@ HEADER = \bookpart {
\header { \header {
title = "Liedtitel" title = "Liedtitel"
alttitle = "Alternativtitel" alttitle = #'("Alttitle A" "Alttitle B")
titlesize = 11 titlesize = 11
titletopspace = 2 titletopspace = 2
authors = #'( authors = #'(
("dude" melody) ("dude" melody)
("kumpel" text)) ("kumpel" text))
year_text = "2020" year_text = "2020"
year_melody = "2021" year_melody = "2021"
copyright = "Fumpeverlag" copyright = "Fumpeverlag"

View File

@ -1,13 +1,57 @@
\version "2.25.8" \version "2.18.0"
\include "../../lilypond-custom-includes/base_config.ly" \include "../../lilypond-custom-includes/base_config.ly"
\include "../../lilypond-song-includes/liedbausteine/"
HEADER = \bookpart { HEADER = \bookpart {
\header { \header {
\basicSongInfo title = "Titel"
%infotext = "" starttext = "Liedanfang"
categories = "" authors = #'(
("" ))
year_text = ""
year_melody = ""
infotext = ""
}
}
global = {
%Takt
\time 4/4
%Tonart
\key c \major
}
firstVerse = \lyricmode {
\set stanza = "1."
Lyrics
}
firstVoice = \relative c' {
\global
c
\bar "|."
}
verseChords = \chordmode { c }
MUSIC = {
<<
\chords {
c
}
\new ChoirStaff = "firstStaff"
<<
\new Voice = "firstVoice" { \firstVoice }
\addlyrics { \firstVerse }
>>
>>
}
%}
TEXT = \markuplist {
\group-verses {
\chordverse #"2."
#"(Stro,a:m)phen(text,g)
(G,a:m)ras (ist,c) (grün,f)"
} }
} }

View File

@ -1,40 +0,0 @@
\version "2.25.8"
\include "../../lilypond-custom-includes/base_config.ly"
\include "../../lilypond-song-includes/liedbausteine/"
HEADER = \bookpart {
\paper {
%page-count = 1
}
\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 2) \secondVerseMarkup
}
}
\include "../../lilypond-common-includes/standalone_output.ly"

View File

@ -15,7 +15,7 @@ songPath = "../../lieder"
%Liedteil -> hier werden alle Lieder inkludiert %Liedteil -> hier werden alle Lieder inkludiert
%Reihenfolge im Liederbuch: Von oben nach unten %Reihenfolge im Liederbuch: Von oben nach unten
\includeSong "sandbox" %\includeSong "sandbox"
\includeSong "vorlage" \includeSong "vorlage"
\blankpage \blankpage
\includeSong "vorlage_light" \includeSong "vorlage_light"
@ -81,7 +81,9 @@ songPath = "../../lieder"
% Seite % Seite
\bookpart { \bookpart {
\paper { print-page-number = ##f } \paper { print-page-number = ##f }
\markup { \vspace #2 \fill-line { \null \markup {
\title-to-pdf-toc "Vorwort"
\vspace #2 \fill-line { \null
\override #'(font-name . "Old Standard TT") \fontsize #0.5 \override #'(line-width . 115) \left-column { \justify-string #" \override #'(font-name . "Old Standard TT") \fontsize #0.5 \override #'(line-width . 115) \left-column { \justify-string #"
Hier steht lustiger Text" Hier steht lustiger Text"
" " " "
@ -100,6 +102,7 @@ songPath = "../../lieder"
\bookpart { \bookpart {
\markuplist { \markuplist {
\index-in-columns-with-title #'categories \column { \index-in-columns-with-title #'categories \column {
\title-to-pdf-toc "Kategorienverzeichnis"
\fontsize #5 \sans \bold \fill-line { \null "Inhaltsverzeichnis nach Kategorien" \null } \fontsize #5 \sans \bold \fill-line { \null "Inhaltsverzeichnis nach Kategorien" \null }
\vspace #1 \vspace #1
} }
@ -109,7 +112,8 @@ songPath = "../../lieder"
\bookpart { \bookpart {
\markuplist { \markuplist {
\index-in-columns-with-title #'authors \column { \index-in-columns-with-title #'authors \column {
\fontsize #5 \sans \bold \fill-line { \null "Autorenverzeichnis" \null } \title-to-pdf-toc "Autor*innenverzeichnis"
\fontsize #5 \sans \bold \fill-line { \null "Autor*innenverzeichnis" \null }
\vspace #1 \vspace #1
} }
} }
@ -145,6 +149,7 @@ songPath = "../../lieder"
\indexSection #"Z" \markup { "Z" } \indexSection #"Z" \markup { "Z" }
\markuplist { \markuplist {
\index-in-columns-with-title #'alphabetical \column { \index-in-columns-with-title #'alphabetical \column {
\title-to-pdf-toc "Inhaltsverzeichnis"
\fontsize #5 \sans \bold \fill-line { \null "Inhaltsverzeichnis" \null } \fontsize #5 \sans \bold \fill-line { \null "Inhaltsverzeichnis" \null }
\vspace #.5 \vspace #.5
\justify { \justify {
@ -155,7 +160,7 @@ songPath = "../../lieder"
} }
\vspace #1 \vspace #1
} }
\write-toc-csv %gibt eine csv Datei mit allen Liedern aus %\write-toc-csv
} }
} }
} }