From: Graham Percival Date: Tue, 17 Apr 2007 04:26:41 +0000 (-0700) Subject: Automagic update from LSR. X-Git-Tag: release/2.11.23-1~22^2^2 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=1813dbbb26ffa4282ba32c52ecfb7dc5e3601a5a;p=lilypond.git Automagic update from LSR. --- diff --git a/input/lsr/connecting/beam-across-line-breaks.ly b/input/lsr/connecting/beam-across-line-breaks.ly new file mode 100644 index 0000000000..d4113ed506 --- /dev/null +++ b/input/lsr/connecting/beam-across-line-breaks.ly @@ -0,0 +1,15 @@ +%% Do not edit this file; it is auto-generated from LSR! +\version "2.10.12" + +\header { texidoc = " +By default, beams can't be printed across line breaks. Here's a way to +force the line break, by setting the @code{#'breakable} property. See +also in the manual the \"Line Breaking\" and \"Manual beams\" sections. +" } + +\layout { ragged-right= ##t } + +\relative c'' { + \override Score.Beam #'breakable = ##t + \time 3/16 c16-[ d e \break f-] +} diff --git a/input/lsr/connecting/short-tremolos.ly b/input/lsr/connecting/short-tremolos.ly new file mode 100644 index 0000000000..b409f1ceb9 --- /dev/null +++ b/input/lsr/connecting/short-tremolos.ly @@ -0,0 +1,16 @@ +%% Do not edit this file; it is auto-generated from LSR! +\version "2.10.12" + +\header { texidoc = " +Short (smaller than 1/4) tremolos can be obtained; in such a case only +one beam is connected to the stems. +" } + +\layout { ragged-right = ##t } + +\context Staff \relative c' { + \repeat "tremolo" 2 { c32 e32 } + \stemDown + \repeat "tremolo" 2 { c32 e32 } +} + diff --git a/input/lsr/contemporary/feathered-beams.ly b/input/lsr/contemporary/feathered-beams.ly new file mode 100644 index 0000000000..ceaff8ea2c --- /dev/null +++ b/input/lsr/contemporary/feathered-beams.ly @@ -0,0 +1,20 @@ +%% Do not edit this file; it is auto-generated from LSR! +\version "2.10.12" + +\header { texidoc = " +Feathered beams can be obtained by setting the #'grow-direction +property; you may also want to use \featherDurations to adjust note +durations. (See also in tha manual : \"Feathered beams\") +" } + +\paper { + ragged-right = ##t + indent = #0.0 +} + +\featherDurations #(ly:make-moment 3 4) \relative c'' { + \override Beam #'grow-direction = #LEFT + c16[ + c c c + c c c c ] +} diff --git a/input/lsr/spacing/alignment-order.ly b/input/lsr/spacing/alignment-order.ly new file mode 100644 index 0000000000..f479639317 --- /dev/null +++ b/input/lsr/spacing/alignment-order.ly @@ -0,0 +1,44 @@ +%% Do not edit this file; it is auto-generated from LSR! +\version "2.10.12" + +\header { texidoc = " +This snippet shows of to use the @code{alignBelowContext} and +@code{alignAboveContext} properties, which may be needed for text +elements (e.g. lyrics) positioning, but also for musical contents such +as ossias. +" } + +% **************************************************************** +% ly snippet: +% **************************************************************** + +\paper { + ragged-right = ##t +} + +\relative << + \new Staff = "1" { c4 c s2 } + \new Staff = "2" { c4 c s2 } + \new Staff = "3" { c4 c s2 } + { \skip 2 + << + \lyrics { + \set alignBelowContext = #"1" + below8 first staff + } + \new Staff { + \set Staff.alignAboveContext = #"3" + \times 4/6 { + \override TextScript #'padding = #3 + c8^"this" d_"staff" e^"above" d_"last" e^"staff" f + } + } + >> } +>> + + + +% **************************************************************** +% end ly snippet +% **************************************************************** + diff --git a/input/lsr/spacing/alignment-vertical-spacing.ly b/input/lsr/spacing/alignment-vertical-spacing.ly index 9da4e58410..0a9eaca9ce 100644 --- a/input/lsr/spacing/alignment-vertical-spacing.ly +++ b/input/lsr/spacing/alignment-vertical-spacing.ly @@ -11,8 +11,8 @@ By setting @code{alignment-extra-space} or stretched vertically. -For technical reasons, @code{overrideProperty} has to be used for -setting properties on individual objects. @code{override} in a +For technical reasons, @code{\overrideProperty} has to be used for +setting properties on individual objects. @code{\override} in a @code{\context} block may still be used for global overrides. " }