X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fremoving-bar-numbers-from-a-score.ly;h=55e6503334b08e85ae0348787dc97e0b72f26562;hb=cea739616b8abfa29efbe1ea7df309411e07348c;hp=10ff50af8ad51865a4f0695d6db23cca38c545cc;hpb=5b1f3adfe5e3561eaa0f9440e0697054084b7107;p=lilypond.git diff --git a/Documentation/snippets/removing-bar-numbers-from-a-score.ly b/Documentation/snippets/removing-bar-numbers-from-a-score.ly index 10ff50af8a..55e6503334 100644 --- a/Documentation/snippets/removing-bar-numbers-from-a-score.ly +++ b/Documentation/snippets/removing-bar-numbers-from-a-score.ly @@ -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" } }