]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/spacing-bar-whole-measure.ly
Fix 2241: Proper copyright/header/tagline handling with multiple bookparts
[lilypond.git] / input / regression / spacing-bar-whole-measure.ly
1 \header{
2   texidoc = "Notes that fill a whole measure are preceded by extra space. "
3   
4   }
5
6 \version "2.14.0"
7
8 \layout{
9   ragged-right=##t
10 }
11
12 \new Staff \relative c' {
13   \override Score.NonMusicalPaperColumn #'stencil = #ly:paper-column::print
14   \override Score.NonMusicalPaperColumn #'layer = #1
15   
16   \time 4/4
17   s1
18   c2. c4
19   \time 3/4
20   s2.
21   c2.
22   \override Score.NonMusicalPaperColumn #'full-measure-extra-space = #3.0
23   s2.
24   c2.
25 }