]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/removing-bar-numbers-from-a-score.ly
Imported Upstream version 2.19.45
[lilypond.git] / Documentation / snippets / removing-bar-numbers-from-a-score.ly
index 10ff50af8ad51865a4f0695d6db23cca38c545cc..55e6503334b08e85ae0348787dc97e0b72f26562 100644 (file)
@@ -1,10 +1,10 @@
 %% DO NOT EDIT this file manually; it is automatically
-%% generated from LSR http://lsr.dsi.unimi.it
+%% 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.16.0"
+\version "2.18.0"
 
 \header {
   lsrtags = "contexts-and-engravers, rhythms"
@@ -17,11 +17,12 @@ Bar numbers can be removed entirely by removing the
   doctitle = "Removing bar numbers from a score"
 } % begin verbatim
 
-
 \layout {
   \context {
     \Score
-    \remove "Bar_number_engraver"
+    \omit BarNumber
+    % or:
+    %\remove "Bar_number_engraver"
   }
 }