generated from boernel/lilypond-vorlagen
Initial commit
This commit is contained in:
176
liederbuecher/beispiel_liederbuch/beispiel_liederbuch.ly
Normal file
176
liederbuecher/beispiel_liederbuch/beispiel_liederbuch.ly
Normal file
@ -0,0 +1,176 @@
|
||||
\version "2.18"
|
||||
|
||||
% point and click blows up the pdf
|
||||
\pointAndClickOff
|
||||
|
||||
imagePagePath = "categories"
|
||||
songPath = "../../lieder"
|
||||
|
||||
\include "../../lilypond-custom-includes/base_config.ly"
|
||||
\include "../../lilypond-common-includes/book_include.ly"
|
||||
\include "../../lilypond-common-includes/toc_include.ly"
|
||||
|
||||
% Brauchen wir jedes Lied als Einzelausgabe mit Midi und PDF?
|
||||
#(define noStandaloneOutput #t)
|
||||
|
||||
%Liedteil -> hier werden alle Lieder inkludiert
|
||||
%Reihenfolge im Liederbuch: Von oben nach unten
|
||||
\blankpage
|
||||
\includeSong "vorlage_light"
|
||||
\imagepage #125 "see.eps"
|
||||
|
||||
%Zur Übersichtlichkeit:
|
||||
%A
|
||||
%B
|
||||
%C
|
||||
%D
|
||||
%E
|
||||
%F
|
||||
%G
|
||||
%H
|
||||
%I
|
||||
%J
|
||||
%K
|
||||
%L
|
||||
%M
|
||||
%N
|
||||
%O
|
||||
%P
|
||||
%Q
|
||||
%R
|
||||
%S
|
||||
%T
|
||||
%U
|
||||
%V
|
||||
%W
|
||||
%X
|
||||
%Y
|
||||
%Z
|
||||
|
||||
|
||||
\book {
|
||||
% Dateiname
|
||||
\bookOutputName "beispiel_liederbuch"
|
||||
|
||||
\header {
|
||||
pdfcomposer = "Irgendwer"
|
||||
pdftitle = "Beispielliederbuch ♫" % Unicode is geil!
|
||||
pdfsubject = "Ein anspruchsvolles Liederbuch mit Noten und etwas Hintergrundinformationen zu den Liedern."
|
||||
pdfkeywords = "Liederbuch, Pfadfinder, bündisch"
|
||||
}
|
||||
|
||||
\paper {
|
||||
first-page-number = 1
|
||||
}
|
||||
|
||||
%Eine Seite mit dem Cover könnte so aussehen:
|
||||
\bookpart {
|
||||
\paper {
|
||||
print-page-number = ##f
|
||||
inner-margin = 0
|
||||
outer-margin = 0
|
||||
binding-offset = 0
|
||||
top-margin = 0
|
||||
bottom-margin = 0
|
||||
last-bottom-spacing = #'((basic-distance . 0) (minimum-distance . 0) (padding . 0))
|
||||
page-count = 1
|
||||
}
|
||||
\markup {
|
||||
\title-to-pdf-toc "Titelseite"
|
||||
" "
|
||||
%\epsfile #X #120 #"images/front.eps"
|
||||
%\fill-line { \center-column { \vspace #1 \pad-x #9 \customEps #95 #"Dateiname.dt" \vspace #1 } }
|
||||
}
|
||||
}
|
||||
|
||||
% Seite
|
||||
\bookpart {
|
||||
\paper { print-page-number = ##f }
|
||||
\markup {
|
||||
\title-to-pdf-toc "Vorwort"
|
||||
\vspace #2
|
||||
\fill-line {
|
||||
\override #'(font-name . "Old Standard TT")
|
||||
\fontsize #0.5
|
||||
\override #'(line-width . 115)
|
||||
\left-column {
|
||||
\justify-string #"
|
||||
Hier steht lustiger Text"
|
||||
" "
|
||||
\fill-line { "blublub" }
|
||||
}
|
||||
}
|
||||
}
|
||||
% muss drinbleiben, damit die Kategoriebildchen alle reingeladen und referenziert werden können:
|
||||
\markuplist { \embed-category-images }
|
||||
}
|
||||
|
||||
% die Liederausgabe
|
||||
\songs
|
||||
|
||||
%Kategorienverzeichnis
|
||||
\bookpart {
|
||||
\markuplist {
|
||||
\index-in-columns-with-title #'categories \column {
|
||||
\title-to-pdf-toc "Kategorienverzeichnis"
|
||||
\fontsize #5 \sans \bold \fill-line { \null "Inhaltsverzeichnis nach Kategorien" \null }
|
||||
\vspace #1
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
\bookpart {
|
||||
\markuplist {
|
||||
\index-in-columns-with-title #'authors \column {
|
||||
\title-to-pdf-toc "Autor*innenverzeichnis"
|
||||
\fontsize #5 \sans \bold \fill-line { \null "Autor*innenverzeichnis" \null }
|
||||
\vspace #1
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
% Inhaltsverzeichnis
|
||||
\bookpart {
|
||||
\indexSection #"A" \markup { "A" }
|
||||
\indexSection #"B" \markup { "B" }
|
||||
\indexSection #"C" \markup { "C" }
|
||||
\indexSection #"D" \markup { "D" }
|
||||
\indexSection #"E" \markup { "E" }
|
||||
\indexSection #"F" \markup { "F" }
|
||||
\indexSection #"G" \markup { "G" }
|
||||
\indexSection #"H" \markup { "H" }
|
||||
\indexSection #"I" \markup { "I" }
|
||||
\indexSection #"J" \markup { "J" }
|
||||
\indexSection #"K" \markup { "K" }
|
||||
\indexSection #"L" \markup { "L" }
|
||||
\indexSection #"M" \markup { "M" }
|
||||
\indexSection #"N" \markup { "N" }
|
||||
\indexSection #"O" \markup { "O" }
|
||||
\indexSection #"P" \markup { "P" }
|
||||
\indexSection #"Q" \markup { "Q" }
|
||||
\indexSection #"R" \markup { "R" }
|
||||
\indexSection #"S" \markup { "S" }
|
||||
\indexSection #"T" \markup { "T" }
|
||||
\indexSection #"U" \markup { "U" }
|
||||
\indexSection #"V" \markup { "V" }
|
||||
\indexSection #"W" \markup { "W" }
|
||||
\indexSection #"X" \markup { "X" }
|
||||
\indexSection #"Y" \markup { "Y" }
|
||||
\indexSection #"Z" \markup { "Z" }
|
||||
\markuplist {
|
||||
\index-in-columns-with-title #'alphabetical \column {
|
||||
\title-to-pdf-toc "Inhaltsverzeichnis"
|
||||
\fontsize #5 \sans \bold \fill-line { \null "Inhaltsverzeichnis" \null }
|
||||
\vspace #.5
|
||||
\justify {
|
||||
Da die allermeisten Lieder unter verschiedenen Namen bekannt sind,
|
||||
wollen wir euch ein Inhaltsverzeichnis an die Hand geben, mit dem ihr hoffentlich auf verschiedene Arten fündig werdet.
|
||||
Die Liedtitel, die auch die Überschriften sind, findet ihr normal gedruckt.
|
||||
Alle weiteren Alternativtitel oder Liedanfänge sind zur Unterscheidung kursiv gedruckt.
|
||||
}
|
||||
\vspace #1
|
||||
}
|
||||
\write-toc-csv %gibt eine csv Datei mit allen Liedern aus
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user