]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/changing-the-interval-of-lines-on-the-stave.ly
resolve merge
[lilypond.git] / Documentation / snippets / changing-the-interval-of-lines-on-the-stave.ly
diff --git a/Documentation/snippets/changing-the-interval-of-lines-on-the-stave.ly b/Documentation/snippets/changing-the-interval-of-lines-on-the-stave.ly
new file mode 100644 (file)
index 0000000..3d71b52
--- /dev/null
@@ -0,0 +1,42 @@
+%% 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.14.0"
+
+\header {
+  lsrtags = "pitches"
+
+  texidoc = "
+@code{staffLineLayoutFunction} is used to change the position of notes.
+This snippet shows setting its value to @code{ly:pitch-semitones} in
+order to produce a chromatic scale with the distance between each space
+and line of the stave equal to one semitone.
+
+"
+  doctitle = "Changing the interval of lines on the stave"
+} % begin verbatim
+
+scale = \relative c' {
+  a4 ais b c
+  cis4 d dis e
+  f4 fis g gis
+  a1
+}
+
+\new Staff \with {
+  \remove "Accidental_engraver"
+  staffLineLayoutFunction = #ly:pitch-semitones
+}
+{
+  <<
+    \scale
+    \context NoteNames {
+      \set printOctaveNames = ##f
+      \scale
+    }
+  >>
+}
+