Producing white (void) notation: 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 3: | Line 3: | ||
This snippet demonstrates such notation, by setting the property <code>duration-log</code>. Correct beaming is obtained by setting the music in 3/4 time and changing the displayed time signature using <code>timeSignatureFraction</code>. | This snippet demonstrates such notation, by setting the property <code>duration-log</code>. Correct beaming is obtained by setting the music in 3/4 time and changing the displayed time signature using <code>timeSignatureFraction</code>. | ||
<lilypond version="2.24 | <lilypond version="2.24"> | ||
%% http://lsr.di.unimi.it/LSR/Item?id=440 | %% http://lsr.di.unimi.it/LSR/Item?id=440 | ||
Revision as of 18:57, 16 November 2025
In some French Baroque music, mainly in slow 3/2 time, a form of notation using open note heads was used, which is now known as “white” or “void” notation.
This snippet demonstrates such notation, by setting the property duration-log. Correct beaming is obtained by setting the music in 3/4 time and changing the displayed time signature using timeSignatureFraction.
\version "2.24"
%% http://lsr.di.unimi.it/LSR/Item?id=440
% from Louis-Antoine Dornel: Trio sonata in F major, op. 3/2
\relative c''' {
\time 3/4
\set Staff.timeSignatureFraction = #'(3 . 2)
\override NoteHead.duration-log = #1
a4 a a |
cis,^\markup { \bold + } cis a |
f'4. a8[ g f] |
e4 e8[ f e f] |
g2. ~ |
g4 f8 g a4 |
b4 e,4. fis16 g |
fis8[ a b a g fis] |
}