]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/new/aligning-and-centering-instrument-names.ly
LSR: Update.
[lilypond.git] / input / new / aligning-and-centering-instrument-names.ly
diff --git a/input/new/aligning-and-centering-instrument-names.ly b/input/new/aligning-and-centering-instrument-names.ly
deleted file mode 100644 (file)
index 6ad24e9..0000000
+++ /dev/null
@@ -1,56 +0,0 @@
-\version "2.12.0"
-
-\header {
-  lsrtags = "text, paper-and-layout, titles"
-  texidoc = "The horizontal alignment of instrument names is tweaked
-by changing the @code{Staff.InstrumentName #'self-alignment-X} property.
-The @code{\\layout} variables @code{indent} and @code{short-indent}
-define the space in which the instrument names are aligned before the
-first and the following systems, respectively."
-  doctitle = "Aligning and centering instrument names"
-}
-
-\paper {
-  left-margin = 3\cm
-}
-
-\score {
-  \new StaffGroup <<
-    \new Staff {
-      \override Staff.InstrumentName #'self-alignment-X = #LEFT
-      \set Staff.instrumentName = \markup \left-column {
-        "Left aligned"
-        "instrument name"
-      }
-      \set Staff.shortInstrumentName = #"Left"
-      c''1
-      \break
-      c''1
-    }
-    \new Staff {
-      \override Staff.InstrumentName #'self-alignment-X = #CENTER
-      \set Staff.instrumentName = \markup \center-column {
-        Centered
-        "instrument name"
-      }
-      \set Staff.shortInstrumentName = #"Centered"
-      g'1
-      g'1
-    }
-    \new Staff {
-      \override Staff.InstrumentName #'self-alignment-X = #RIGHT
-      \set Staff.instrumentName = \markup \right-column {
-        "Right aligned"
-        "instrument name"
-      }
-      \set Staff.shortInstrumentName = #"Right"
-      e'1
-      e'1
-    }
-  >>
-  \layout {
-    ragged-right = ##t
-    indent = 4\cm
-    short-indent = 2\cm
-  }
-}