]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/vertical-line-as-a-baroque-articulation-mark.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / Documentation / snippets / vertical-line-as-a-baroque-articulation-mark.ly
index 5e3168e80ee28a7e95fce81225a20afa7c509465..222c20f0a5eb7ebb2564f2e45d2534549e908748 100644 (file)
@@ -1,15 +1,18 @@
-%% Do not edit this file; it is automatically
-%% generated from LSR http://lsr.dsi.unimi.it
+%% DO NOT EDIT this file manually; it is automatically
+%% generated from LSR http://lsr.di.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.13.4"
+\version "2.18.0"
 
 \header {
-  lsrtags = "expressive-marks, ancient-notation"
+  lsrtags = "ancient-notation, expressive-marks"
 
   texidoc = "
 This short vertical line placed above the note is commonly used in
 baroque music.  Its meaning can vary, but generally indicates notes
-that should be played with more \"weight\".  The following example
+that should be played with more @qq{weight}.  The following example
 demonstrates how to achieve such a notation.
 
 "
@@ -17,7 +20,7 @@ demonstrates how to achieve such a notation.
 } % begin verbatim
 
 upline =
-#(let ((m stopped))
+#(let ((m (make-articulation "stopped")))
    (set! (ly:music-property m 'tweaks)
          (acons 'font-size 3
                 (acons 'stencil (lambda (grob)
@@ -29,5 +32,5 @@ upline =
 
 
 \relative c' {
-  a'^\upline a( c d')_\upline
+  a'4^\upline a( c d')_\upline
 }