]> git.donarmstrong.com Git - lilypond.git/commitdiff
LSR: Update.
authorNeil Puttock <n.puttock@gmail.com>
Sun, 14 Dec 2008 18:32:38 +0000 (18:32 +0000)
committerNeil Puttock <n.puttock@gmail.com>
Sun, 14 Dec 2008 18:32:38 +0000 (18:32 +0000)
input/lsr/stand-alone-two-column-markup.ly
input/lsr/tick-bar-lines.ly
input/new/tick-bar-lines.ly [new file with mode: 0644]

index c53c28a90cd882a1d3aca6b178fd96f91bec61cc..69d0a94279f63a5eb9d1db7713fbbf6d27a74380 100644 (file)
@@ -5,6 +5,13 @@
 \header {
   lsrtags = "text"
 
+  texidoces = "
+Los textos independientes se pueden disponer en varias columnas
+utilizando instrucciones @code{\\markup}:
+
+"
+  doctitlees = "Elemento de marcado de texto independiente en dos columnas"
+
   texidoc = "
 Stand-alone text may be arranged in several columns using
 @code{\\markup} commands:
index 29d8156938d8e01e60da024f07268858fb51c793..bce7980715660df1dd377a305293964a6e04808e 100644 (file)
@@ -1,44 +1,19 @@
-%% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
+%% Do not edit this file; it is auto-generated from input/new
 %% This file is in the public domain.
-\version "2.11.64"
-
+\version "2.11.65"
 \header {
   lsrtags = "staff-notation"
-
   texidoc = "
 'Tick' bar lines are often used in music where the bar line is used
 only for coordination and is not meant to imply any rhythmic stress.
-
-This snippet uses overrides for the @code{'bar-size} and
-@code{'extra-offset} properties of @code{BarLine} to determine,
-respectively, the tick size and its vertical placement.
-
 "
   doctitle = "Tick bar lines"
 } % begin verbatim
 
-{
-  % Use 'bar-size to control the height of the tick,
-  % and 'extra-offset to determine its position.
-  %
-  % With 'extra-offset set to zero, the tick will be
-  % centered around the middle line of the staff.
-  %
-  % Replace Staff.BarLine with Score.BarLine to
-  % apply the method to the whole score.
-  
-  \override Staff.BarLine #'bar-size = #1
-  \override Staff.BarLine #'extra-offset = #'(0 . 2)
-  
-  c'4 d' e' f'
-  g'4 f' e' d'
-  c'4 d' e' f'
-  g'4 f' e' d'
-  
-  % Revert the overrides to get back a normal
-  % bar line at the end.
-  
-  \revert Staff.BarLine #'bar-size
-  \revert Staff.BarLine #'extra-offset
+\relative c' {
+  c4 d e f \bar "'"
+  g4 f e d \bar "'" 
+  c4 d e f \bar "'"
+  g4 f e d
   \bar "|."
 }
diff --git a/input/new/tick-bar-lines.ly b/input/new/tick-bar-lines.ly
new file mode 100644 (file)
index 0000000..8493fa5
--- /dev/null
@@ -0,0 +1,16 @@
+\version "2.11.65"
+\header {
+  lsrtags = "staff-notation"
+  texidoc = "
+'Tick' bar lines are often used in music where the bar line is used
+only for coordination and is not meant to imply any rhythmic stress.
+"
+  doctitle = "Tick bar lines"
+}
+\relative c' {
+  c4 d e f \bar "'"
+  g4 f e d \bar "'" 
+  c4 d e f \bar "'"
+  g4 f e d
+  \bar "|."
+}