From e75a8ff277c43e9668d34a0435d592138c5bea6a Mon Sep 17 00:00:00 2001 From: Patrick McCarty Date: Sun, 5 Oct 2008 12:31:19 -0700 Subject: [PATCH] Docs: Update for staff.itely * some small fixes * added two snippets to input/new Signed-off-by: Patrick McCarty --- Documentation/user/staff.itely | 22 ++++++++--------- ...ging-the-tempo-without-a-metronome-mark.ly | 24 +++++++++++++++++++ ...creating-metronome-marks-in-markup-mode.ly | 21 ++++++++++++++++ 3 files changed, 56 insertions(+), 11 deletions(-) create mode 100644 input/new/changing-the-tempo-without-a-metronome-mark.ly create mode 100644 input/new/creating-metronome-marks-in-markup-mode.ly diff --git a/Documentation/user/staff.itely b/Documentation/user/staff.itely index de96d52b06..cef1fafc8a 100644 --- a/Documentation/user/staff.itely +++ b/Documentation/user/staff.itely @@ -591,7 +591,7 @@ example. << \new Staff = ossia \with { \remove "Time_signature_engraver" - \remove "Clef_engraver" + \override Clef #'transparent = ##t fontSize = #-3 \override StaffSymbol #'staff-space = #(magstep -3) \override StaffSymbol #'thickness = #(magstep -3) @@ -631,7 +631,7 @@ more information about @code{\RemoveEmptyStaffContext}, see << \new Staff = ossia \with { \remove "Time_signature_engraver" - \remove "Clef_engraver" + \override Clef #'transparent = ##t fontSize = #-3 \override StaffSymbol #'staff-space = #(magstep -3) \override StaffSymbol #'thickness = #(magstep -3) @@ -961,7 +961,7 @@ instrument names and short instrument names are centered by default. To center multi-line instrument names, @code{\center-column} must be used: -@lilypond[verbatim,quote,relative=2] +@lilypond[verbatim,quote,indent=1.5\cm,relative=2] << \new Staff { \set Staff.instrumentName = "Flute" @@ -969,7 +969,7 @@ default. To center multi-line instrument names, } \new Staff { \set Staff.instrumentName = \markup \center-column { - Clarinetti + Clarinet \line { "in B" \smaller \flat } } c4 b c2 @@ -987,13 +987,13 @@ these settings, see @ref{Horizontal dimensions}. @lilypond[verbatim,quote,ragged-right] \layout { - indent = 2.5\cm + indent = 3.0\cm short-indent = 1.5\cm } \relative c'' << \new Staff { - \set Staff.instrumentName = "Flute" + \set Staff.instrumentName = "Alto Flute in G" \set Staff.shortInstrumentName = "Fl." f2 g4 f \break g4 f g2 @@ -1035,10 +1035,10 @@ If an instrument @emph{switch} is needed, @code{\instrumentSwitch} to create a detailed list of the necessary changes for the switch. The @code{\addInstrumentDefinition} command has two arguments: an -identifying string, and an alist of context properties and values -to be used for the instrument. It must be placed in the toplevel -scope. @code{\instrumentSwitch} is used in the music expression -to declare the instrument switch: +identifying string, and an association list of context properties +and values to be used for the instrument. It must be placed in +the toplevel scope. @code{\instrumentSwitch} is used in the music +expression to declare the instrument switch: @lilypond[verbatim,quote,ragged-right] \addInstrumentDefinition #"contrabassoon" @@ -1222,7 +1222,7 @@ The previous section explains how to create quotations. The notes into a part. The syntax is as follows: @example - \cueDuring #@var{partname} #@var{voice} @var{music} +\cueDuring #@var{partname} #@var{voice} @var{music} @end example This command copies the corresponding measures from @var{partname} diff --git a/input/new/changing-the-tempo-without-a-metronome-mark.ly b/input/new/changing-the-tempo-without-a-metronome-mark.ly new file mode 100644 index 0000000000..bc873657d2 --- /dev/null +++ b/input/new/changing-the-tempo-without-a-metronome-mark.ly @@ -0,0 +1,24 @@ +\version "2.11.62" + +\header { + lsrtags = "staff-notation" + texidoc = "To change the tempo in MIDI output without printing +anything, make the metronome mark invisible, as in the following +example:" + + doctitle = "Changing the tempo without a metronome mark" +} + +\score { + \new Staff \relative c' { + \tempo 4 = 160 + c4 e g b + c4 b d c + \set Score.tempoHideNote = ##t + \tempo 4 =96 + d,4 fis a cis + d4 cis e d + } + \midi { } + \layout { } +} diff --git a/input/new/creating-metronome-marks-in-markup-mode.ly b/input/new/creating-metronome-marks-in-markup-mode.ly new file mode 100644 index 0000000000..299fcd49ca --- /dev/null +++ b/input/new/creating-metronome-marks-in-markup-mode.ly @@ -0,0 +1,21 @@ +\version "2.11.62" + +\header { + lsrtags = "staff-notation" + texidoc = "New metronome marks can be created in markup mode, +but they will not change the tempo in MIDI output." + + doctitle = "Creating metronome marks in markup mode" +} + +\relative c' { + \tempo \markup { + ( + \smaller \general-align #Y #DOWN \note #"16." #1 + = + \smaller \general-align #Y #DOWN \note #"8" #1 + ) + } + c1 + c4 c' c,2 +} -- 2.39.2