]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/just-friends.ly
release commit
[lilypond.git] / input / just-friends.ly
index 359affb7ca71ddf650c2ca65f6b5d0e8b961466c..6e445967ac05a99863f581ede72a3088f63ee4b8 100644 (file)
@@ -1,12 +1,13 @@
+\version "1.7.6"
 \header {
-  filename =    "just-friends.ly";
-  title =       "Just Friends";
-  description = "Jazz chords example with bar lines";
-  opus =        "";
-  source =      "mutex@gmd.de";
-  composer =    "";
-  enteredby =   "jcn";
-  copyright =   "Public Domain";
+  filename =    "just-friends.ly"
+  title =       "Just Friends"
+  description = "Jazz chords example with bar lines"
+  opus =        ""
+  source =      "mutex@gmd.de"
+  composer =    ""
+  enteredby =   "jcn"
+  copyright =   "Public Domain"
 }
 
 %{
@@ -29,10 +30,22 @@ of a certain tune (Jazz, Real Book, for example), like
 
 %}
 
+%{
+
+FIXME
+
+This should (and once used to) look like:
+
+    | Fmaj7  | Fmaj7  | F7 | Bes7 |
+
+but all bar lines (note bar line at line start) are now gone.
+
+%}
+
 \score{
        \context ChordNames \chords{
                \property Score.barAtLineStart = 1
-               \repeat semi 2 {
+               \repeat volta 2 {
                        f1:maj f:maj f:7 bes:7
                        c:maj c:maj es es
                        d:7 g:7 b2:7/fis e:7 a1:7\break
@@ -45,15 +58,22 @@ of a certain tune (Jazz, Real Book, for example), like
                }
        }
        \paper{
-               indent = 0.0\mm;
-               linewidth = 100.0\mm;
+               indent = 0.0\mm
+               linewidth = 120.0\mm
                \translator{
                        \ChordNamesContext
-                       barAuto = "1";
-                       \consists Bar_engraver;
-                       \consists "Repeat_engraver";
+                       barNonAuto = ##f
+
+                       % added 
+                       barAuto = ##t
+                       defaultBarType = #"|"
+                       Bar \override #'bar-size = #4
+                       %ChordName \override #'word-space = #3
+                       
+                       \consists Bar_engraver
+                       \consists "Volta_engraver"
                }
        }
 }
 
-\version "1.3.110";
+