]> git.donarmstrong.com Git - lilypond.git/commitdiff
($(outdir)/%.texi): use variable for outdir.
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Sun, 28 Mar 2004 12:54:08 +0000 (12:54 +0000)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Sun, 28 Mar 2004 12:54:08 +0000 (12:54 +0000)
ChangeLog
Documentation/user/music-glossary.tely
Documentation/user/preface.itely
input/regression/span-bar.ly
make/ly-rules.make

index a6b69ee620c8b0ecb330e5388beb8295ffd04c6d..5608eadf117928c6f94798faf7665f3bd934251c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2004-03-28  Han-Wen Nienhuys   <hanwen@xs4all.nl>
 
+       * make/ly-rules.make ($(outdir)/%.texi): use variable for outdir.
+
        * input/mutopia/W.A.Mozart/mozart-hrn-3.ly: Mozart died in 1791
 
        * python/lilylib.py (command_name): don't return 1st path
index 8df5eec54585fbacdf075dd55bcef6723b389138..1d12f9c94539e027a41c41539aa0fd2af9a53161 100644 (file)
@@ -965,7 +965,7 @@ music of the baroque era, has been one of the most popular polyphonic
 composition methods.
 
 @lilypond[staffsize=11]
-\override Score.TimeSignature   #'style =\turnOff
+\set Score.TimeSignature =\turnOff
 \notes\context PianoStaff <<
   \context Staff = SA \relative c' {
     \key bes \major
@@ -2657,8 +2657,8 @@ The briefest intelligible and self-contained fragment of a musical theme or
 subject.
 
 @lilypond
-\override Score.TimeSignature   #'style = \turnOff
-%\override Score.TextScript   #'font-style = #'large
+\set Score.TimeSignature = \turnOff
+%\override Score.TextScript #'font-style = #'large
 \notes\relative c'' {
   \time 4/4
   \key g \major
index 95793ff2218f4fda409e2e2429468813c6e3dde3..ea788668eafa05cdb38cb3dd8e9559e08721b15f 100644 (file)
 @unnumberedsec Preface to version 2.2
 
 During the 2.1 development cycle, the cleanup of the existing features
-has continued unabated. Major areas of change are: orchestral
+has continued unabated. Major areas of change are orchestral
 notation, lyrics formatting and font size handling.
 
 Han-Wen and Jan
 
-Utrecht/Eindhoven, The Netherlands, March 2003
+Utrecht/Eindhoven, The Netherlands, March 2004
 
 
 @node Preface to version 2.0
index 68ce1f86384c4267a073d3e6685e0dd212c9c5be..19f191e85e470f0b902551774220e8d517d50e55 100644 (file)
@@ -2,22 +2,31 @@
 \header {
 texidoc = "Span bars are drawn only between staff bar lines. By setting 
 bar lines to transparent, they are shown only between systems.
+
+Setting @code{SpanBar} transparent does the removes the barlines
+between systems.
 "
 }
 
 \score {
  \notes \relative c' \new StaffGroup <<
- \new Staff { a1 a1 a1}
+ \new Staff {
+     \override Score.BarLine #'transparent = ##t
+     a1 a1
+     \revert Score.BarLine #'transparent = ##t
+     \overr Score.SpanBar #'transparent = ##t
+     a1 a1}
   \new Lyrics \lyrics <<
    { bla1 die bla }
    { foo bar foo }
   >>
-  \new Staff { f1 f1 f1}
+  \new Staff {
+      f1 f1 f1 f1}
  >>
  \paper {
   \context {
    \StaffContext
-   \override BarLine #'transparent = ##t
   }
   raggedright =##t 
  }
index adadab09425fca24515ce7b2b241fb805aede0ed..0e899a77719fc1e72edad6e38e1724590684e6e2 100644 (file)
@@ -10,13 +10,13 @@ $(outdir)/%.latex: %.doc
 # it is not, for --srcdir builds
 $(outdir)/%.texi: %.tely
        if [ -f $@ ]; then chmod a+w $@; fi
-       rm -f $$(grep -LF '\lilypondend' out/lily-*.tex 2>/dev/null)
+       rm -f $$(grep -LF '\lilypondend' $(outdir)/lily-*.tex 2>/dev/null)
        $(PYTHON) $(LILYPOND_BOOK) $(LILYPOND_BOOK_INCLUDES) --process='$(LILYPOND) $(LILYPOND_BOOK_INCLUDES)' --output=$(outdir) --format=$(LILYPOND_BOOK_FORMAT) --verbose $(LILYPOND_BOOK_FLAGS) $<
        chmod -w $@
 
 $(outdir)/%.texi: $(outdir)/%.tely
        if [ -f $@ ]; then chmod a+w $@; fi
-       rm -f $$(grep -LF '\lilypondend' out/lily-*.tex 2>/dev/null)
+       rm -f $$(grep -LF '\lilypondend' $(outdir)/lily-*.tex 2>/dev/null)
        $(PYTHON) $(LILYPOND_BOOK) $(LILYPOND_BOOK_INCLUDES) --process='$(LILYPOND) $(LILYPOND_BOOK_INCLUDES)' --output=$(outdir) --format=$(LILYPOND_BOOK_FORMAT) --verbose $(LILYPOND_BOOK_FLAGS) $<
 #
 # DON'T REMOVE SOURCE FILES, otherwise the .TEXI ALWAYS OUT OF DATE.