]> git.donarmstrong.com Git - lilypond.git/blobdiff - mutopia/Coriolan/coriolan-part-paper.ly
patch::: 1.3.132.jcn1
[lilypond.git] / mutopia / Coriolan / coriolan-part-paper.ly
index 31fa654e0325d2aecbb99a1b7640b0a30c2702d7..e5ff529fe09f10c3b692e638ec52a7df93f6f972 100644 (file)
@@ -1,22 +1,57 @@
+\version "1.3.120"
 \paper {
-       textheight = 295.0\mm;
+       %\paperSixteen
+
+       % Fine for my a4 laserprinter:
+       %textheight = 285.0\mm;
+       %linewidth = 190.0\mm;
+
+       % Mandatory Mutopia settings:
+       textheight = 270.0\mm;
        linewidth = 180.0\mm;
 
-       \translator{ \HaraKiriStaffContext }
+       \translator {
+               \ThreadContext
+               \consists "Rest_engraver";
+               
+               % Set value for engraver at thread level,
+               % to override the default that is set in ScoreContext
+               % for added engraver at Voice level
+               devNullThread = #'()
+       }
+       \translator {
+               \VoiceContext
+               \remove "Rest_engraver";
 
+               % The staff combine (bassi part) needs a
+               % thread_devnull_engraver here.
+               % Instead of maintaining two separate hierarchies,
+               % we switch add it, but switch it off immediately.
+               % --> move to Score level to be able to override
+               % The staff combine part switches it on.
+               
+               %% devNullThread = #'never
+               \consists "Thread_devnull_engraver";
+       }
+       % We need the HaraKiri staff for Staff Combining,
+       % but we better remove the Instrument_name_engraver.
        \translator {
-               \ScoreContext
-               %\OrchestralScoreContext
+               \HaraKiriStaffContext
+               \consists "Mark_engraver";
+               \remove "Instrument_name_engraver";
+       }
+       \translator  {
+               \OrchestralScoreContext
                skipBars = ##t 
 
-               barScriptPadding = #2.0 % dimension \pt
-               markScriptPadding = #4.0
-               %% urg: in pt?
-               barNumberScriptPadding = #15
-               %% URG: this changes dynamics too
-               %%textStyle = #"italic"
-               timeSignatureStyle = #"C"
-               marginScriptHorizontalAlignment = #1
-               maximumRestCount = #1
+               soloText = #"I."
+               soloIIText = #"II."
+               % By default, turn off the Thread_devnull_engraver
+               % at Voice level
+               devNullThread = #'never
+               
+               TimeSignature \override #'style = #'C
+               BarNumber \override #'padding = #3
+               RestCollision \override #'maximum-rest-count = #1
        }
 }