Skip to content
Snippets Groups Projects
Commit a60af027 authored by Reinhold Kainhofer's avatar Reinhold Kainhofer
Browse files

Fix typos, incipit etc.

parent ff12cca9
No related branches found
No related tags found
No related merge requests found
...@@ -3,6 +3,7 @@ ...@@ -3,6 +3,7 @@
#(ly:set-option 'relative-includes #t) #(ly:set-option 'relative-includes #t)
#(ly:set-option 'incipit #t) #(ly:set-option 'incipit #t)
\include "oly_settings_fullscore.ily" \include "oly_settings_fullscore.ily"
#(ly:set-option 'incipit #f)
% Don't print short instruments name, they are clear from the beginning % Don't print short instruments name, they are clear from the beginning
OShortInstrumentName = \markup\null OShortInstrumentName = \markup\null
......
...@@ -182,11 +182,11 @@ SShortInstrumentName = "S." ...@@ -182,11 +182,11 @@ SShortInstrumentName = "S."
% SShortInstrumentName = ##f % SShortInstrumentName = ##f
AShortInstrumentName = "A." AShortInstrumentName = "A."
TShortInstrumentName = "T." TShortInstrumentName = "T."
TShortInstrumentName = "T.1" TIShortInstrumentName = "T.1"
TShortInstrumentName = "T.2" TIIShortInstrumentName = "T.2"
BShortInstrumentName = "B." BShortInstrumentName = "B."
BShortInstrumentName = "B.1" BIShortInstrumentName = "B.1"
BShortInstrumentName = "B.2" BIIShortInstrumentName = "B.2"
SSoloShortInstrumentName = "S.Solo" SSoloShortInstrumentName = "S.Solo"
ASoloShortInstrumentName = "A.Solo" ASoloShortInstrumentName = "A.Solo"
TSoloShortInstrumentName = "T.Solo" TSoloShortInstrumentName = "T.Solo"
...@@ -241,11 +241,11 @@ cueCh = "Coro" ...@@ -241,11 +241,11 @@ cueCh = "Coro"
cueS = "S." cueS = "S."
cueA = "A." cueA = "A."
cueT = "T." cueT = "T."
cueT = "T.1" cueTI = "T.1"
cueT = "T.2" cueTII = "T.2"
cueB = "B." cueB = "B."
cueB = "B.1" cueBI = "B.1"
cueB = "B.2" cueBII = "B.2"
cueO = "Org." cueO = "Org."
cueBC = "B.C." cueBC = "B.C."
...@@ -407,11 +407,11 @@ BMidiInstrument = "voice oohs" ...@@ -407,11 +407,11 @@ BMidiInstrument = "voice oohs"
SMidiInstrument = "synth voice" SMidiInstrument = "synth voice"
AMidiInstrument = "choir aahs" AMidiInstrument = "choir aahs"
TMidiInstrument = "voice oohs" TMidiInstrument = "voice oohs"
TMidiInstrument = \TMidiInstrument TIMidiInstrument = \TMidiInstrument
TMidiInstrument = \TMidiInstrument TIIMidiInstrument = \TMidiInstrument
BMidiInstrument = "synth voice" BMidiInstrument = "synth voice"
BMidiInstrument = \BMidiInstrument BIMidiInstrument = \BMidiInstrument
BMidiInstrument = \BMidiInstrument BIIMidiInstrument = \BMidiInstrument
SSoloMidiInstrument = "synth voice" SSoloMidiInstrument = "synth voice"
TSoloMidiInstrument = "synth voice" TSoloMidiInstrument = "synth voice"
BSoloMidiInstrument = "synth voice" BSoloMidiInstrument = "synth voice"
......
...@@ -22,6 +22,7 @@ ...@@ -22,6 +22,7 @@
% TShortInstrumentName = "" % TShortInstrumentName = ""
% BShortInstrumentName = "" % BShortInstrumentName = ""
% PShortInstrumentName = "" % PShortInstrumentName = ""
#(ly:set-option 'incipit #f)
\header { \header {
instrument = \VocalScoreTitle instrument = \VocalScoreTitle
......
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
% lilypond settings for vocal scores % lilypond settings for vocal scores
#(ly:set-option 'relative-includes #t) #(ly:set-option 'relative-includes #t)
\include "oly_settings_global.ily" \include "oly_settings_global.ily"
#(ly:set-option 'incipit #f)
\paper { \paper {
ragged-bottom = ##f ragged-bottom = ##f
......
...@@ -176,8 +176,8 @@ conditionalBreak = #(define-music-function (parser location) () ...@@ -176,8 +176,8 @@ conditionalBreak = #(define-music-function (parser location) ()
; Piano reduction ; Piano reduction
;("Piano" "SimultaneousMusic" ("Organ")) ;("Piano" "SimultaneousMusic" ("Organ"))
("OrganScore" "SimultaneousMusic" ("ChoralScore" "O")) ("OrganScore" "SimultaneousMusic" ("SoloChoirScore" "O"))
("VocalScore" "SimultaneousMusic" ("ChoralScore" "P")) ("VocalScore" "SimultaneousMusic" ("SoloChoirScore" "P"))
("Particell" "SimultaneousMusic" ("ChoralScore" "BassGroup")) ("Particell" "SimultaneousMusic" ("ChoralScore" "BassGroup"))
; Full scores: Orchestral score and long score including organ ; Full scores: Orchestral score and long score including organ
...@@ -546,7 +546,7 @@ orchestralVoiceTypes = #(define-music-function (parser location types) (list?) ...@@ -546,7 +546,7 @@ orchestralVoiceTypes = #(define-music-function (parser location types) (list?)
(cond (cond
((and (pair? music) (ly:music? (car music)) (not-null? (cdr music)) (ly:music? (cadr music))) ((and (pair? music) (ly:music? (car music)) (not-null? (cdr music)) (ly:music? (cadr music)))
;(ly:message "Part-combine with two music expressions") ;(ly:message "Part-combine with two music expressions")
(oly:staff_handler_internal parser piece name "Staff" (list (make-part-combine-music parser music)))) (oly:staff_handler_internal parser piece name "Staff" (list (make-part-combine-music parser music 0))))
((null? music) ((null? music)
;;(ly:warning "Part-combine without any music expressions") ;;(ly:warning "Part-combine without any music expressions")
'()) '())
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment