]> git.donarmstrong.com Git - lilypond.git/commitdiff
LSR update
authorPhil Holmes <mail@philholmes.net>
Thu, 12 Sep 2013 14:57:45 +0000 (15:57 +0100)
committerPhil Holmes <mail@philholmes.net>
Thu, 12 Sep 2013 16:54:48 +0000 (17:54 +0100)
Documentation/de/notation/text.itely
Documentation/es/notation/text.itely
Documentation/fr/notation/text.itely
Documentation/ja/notation/text.itely
Documentation/notation/text.itely
Documentation/snippets/aligning-marks-with-various-notation-objects.ly [deleted file]
Documentation/snippets/text.snippet-list

index f751070399610dff0d1b9dbdd7d833311e5cfb06..fb2a9fce5c22718b6b16e9bae2ac6dae9fda79da 100644 (file)
@@ -304,9 +304,6 @@ c  c
 @lilypondfile[verbatim,quote,ragged-right,texidoc,doctitle]
 {printing-marks-at-the-end-of-a-line.ly}
 
-@lilypondfile[verbatim,quote,ragged-right,texidoc,doctitle]
-{aligning-marks-with-various-notation-objects.ly}
-
 @lilypondfile[verbatim,quote,ragged-right,texidoc,doctitle]
 {printing-marks-on-every-staff.ly}
 
index 450a4cacb6c45e426ae6f58d554364afa23547e4..cdf99dfbb40c4882b0fb3b05acddf8f885c7bea0 100644 (file)
@@ -301,9 +301,6 @@ c  c
 @lilypondfile[verbatim,quote,ragged-right,texidoc,doctitle]
 {printing-marks-at-the-end-of-a-line.ly}
 
-@lilypondfile[verbatim,quote,ragged-right,texidoc,doctitle]
-{aligning-marks-with-various-notation-objects.ly}
-
 @lilypondfile[verbatim,quote,ragged-right,texidoc,doctitle]
 {printing-marks-on-every-staff.ly}
 
index f2513575b46a60c53c6f0ea22cad3f05708a965a..88aaa3fe55025e2c271faacb8c4a2fdc6d4b3d97 100644 (file)
@@ -303,9 +303,6 @@ c  c
 @lilypondfile[verbatim,quote,ragged-right,texidoc,doctitle]
 {printing-marks-at-the-end-of-a-line.ly}
 
-@lilypondfile[verbatim,quote,ragged-right,texidoc,doctitle]
-{aligning-marks-with-various-notation-objects.ly}
-
 @lilypondfile[verbatim,quote,ragged-right,texidoc,doctitle]
 {printing-marks-on-every-staff.ly}
 
index d27a06a2d7108ab5034dd1cdc18fab7d5cd426b7..dfcfd646c63cd9682ed1941428a5930bac17d170 100644 (file)
@@ -292,9 +292,6 @@ c  c
 @lilypondfile[verbatim,quote,ragged-right,texidoc,doctitle]
 {printing-marks-at-the-end-of-a-line.ly}
 
-@lilypondfile[verbatim,quote,ragged-right,texidoc,doctitle]
-{aligning-marks-with-various-notation-objects.ly}
-
 @lilypondfile[verbatim,quote,ragged-right,texidoc,doctitle]
 {printing-marks-on-every-staff.ly}
 
index 98fb8b0191aef28a0c26aecd9fddc037d2c8e6bf..62aac77931fc2a33268c62ae90dfb67f065952d1 100644 (file)
@@ -283,9 +283,6 @@ c  c
 @lilypondfile[verbatim,quote,ragged-right,texidoc,doctitle]
 {printing-marks-at-the-end-of-a-line.ly}
 
-@lilypondfile[verbatim,quote,ragged-right,texidoc,doctitle]
-{aligning-marks-with-various-notation-objects.ly}
-
 @lilypondfile[verbatim,quote,ragged-right,texidoc,doctitle]
 {printing-marks-on-every-staff.ly}
 
diff --git a/Documentation/snippets/aligning-marks-with-various-notation-objects.ly b/Documentation/snippets/aligning-marks-with-various-notation-objects.ly
deleted file mode 100644 (file)
index 223cc1d..0000000
+++ /dev/null
@@ -1,79 +0,0 @@
-%% DO NOT EDIT this file manually; it is automatically
-%% generated from LSR http://lsr.dsi.unimi.it
-%% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
-%% and then run scripts/auxiliar/makelsr.py
-%%
-%% This file is in the public domain.
-\version "2.17.25"
-
-\header {
-  lsrtags = "text"
-
-  texidoc = "
-If specified, text marks may be aligned with notation objects other
-than bar lines.  These objects include @code{ambitus},
-@code{breathing-sign}, @code{clef}, @code{custos}, @code{staff-bar},
-@code{left-edge}, @code{key-cancellation}, @code{key-signature}, and
-@code{time-signature}.
-
-
-
-In such cases, text marks will be horizontally centered above the
-object. However this can be changed, as demonstrated on the second line
-of this example (in a score with multiple staves, this setting should
-be done for all the staves).
-
-
-
-"
-  doctitle = "Aligning marks with various notation objects"
-} % begin verbatim
-
-\relative c' {
-  e1
-
-  % the RehearsalMark will be centered above the Clef
-  \override Score.RehearsalMark.break-align-symbols = #'(clef)
-  \key a \major
-  \clef treble
-  \mark \markup { \char ##x2193 }
-  e1
-
-  % the RehearsalMark will be centered above the TimeSignature
-  \override Score.RehearsalMark.break-align-symbols = #'(time-signature)
-  \key a \major
-  \clef treble
-  \time 3/4
-  \mark \markup { \char ##x2193 }
-  e2.
-
-  % the RehearsalMark will be centered above the KeySignature
-  \override Score.RehearsalMark.break-align-symbols = #'(key-signature)
-  \key a \major
-  \clef treble
-  \time 4/4
-  \mark \markup { \char ##x2193 }
-  e1
-
-  \break
-  e1
-
-  % the RehearsalMark will be aligned with the left edge of the KeySignature
-  \once \override Score.KeySignature.break-align-anchor-alignment = #LEFT
-  \mark \markup { \char ##x2193 }
-  \key a \major
-  e1
-
-  % the RehearsalMark will be aligned with the right edge of the KeySignature
-  \once \override Score.KeySignature.break-align-anchor-alignment = #RIGHT
-  \key a \major
-  \mark \markup { \char ##x2193 }
-  e1
-
-  % the RehearsalMark will be aligned with the left edge of the KeySignature
-  % and then shifted right by one unit.
-  \once \override Score.KeySignature.break-align-anchor = #1
-  \key a \major
-  \mark \markup { \char ##x2193 }
-  e1
-}
index 9076d5318b76a21d8f81eee5cf7734d216017d80..e89b570d89d516fea4e4fbf2cfef7d89bfee7771 100644 (file)
@@ -1,7 +1,6 @@
 adding-the-current-date-to-a-score.ly
 adjusting-lyrics-vertical-spacing.ly
 aligning-and-centering-instrument-names.ly
-aligning-marks-with-various-notation-objects.ly
 aligning-objects-created-with-the--mark-command.ly
 aligning-syllables-with-melisma.ly
 blanking-staff-lines-using-the--whiteout-command.ly