Remove time signature, keep barlines: Difference between revisions
Appearance
Import snippet from LSR |
m Replace version="2.24.0" with version="2.24" now that the LilyWiki extension supports auto-selecting the latest release in a stable series |
||
| Line 1: | Line 1: | ||
The following lines create a new staff without the time signature mark but they do print the barlines, which are positioned manually in the example. | The following lines create a new staff without the time signature mark but they do print the barlines, which are positioned manually in the example. | ||
<lilypond version="2.24 | <lilypond version="2.24"> | ||
%% http://lsr.di.unimi.it/LSR/Item?id=165 | %% http://lsr.di.unimi.it/LSR/Item?id=165 | ||
Revision as of 18:53, 16 November 2025
The following lines create a new staff without the time signature mark but they do print the barlines, which are positioned manually in the example.
\version "2.24"
%% http://lsr.di.unimi.it/LSR/Item?id=165
%LSR odified by P.P.Schneider on Feb.2014
\score{
\new Staff
\with {
\omit TimeSignature
% or:
%\remove "Time_signature_engraver"
}
{
c' d' e' f' g' f' e' d' c'
}
}