CVSROOT:        /cvsroot/lilypond
Module name:    lilypond
Branch:         
Changes by:     Han-Wen Nienhuys <[EMAIL PROTECTED]>    05/06/19 00:47:17

Modified files:
        .              : ChangeLog 
        Documentation/user: introduction.itely tutorial.itely 
        scm            : lily.scm 

Log message:
        * scm/lily.scm (lambda): default resolution 101.178 (7 pixels per
        space).
        
        * Documentation/user/tutorial.itely (Running LilyPond for the
        first time): separate subsections for windows, macos and unix.

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/lilypond/lilypond/ChangeLog.diff?tr1=1.3797&tr2=1.3798&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/lilypond/lilypond/Documentation/user/introduction.itely.diff?tr1=1.141&tr2=1.142&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/lilypond/lilypond/Documentation/user/tutorial.itely.diff?tr1=1.259&tr2=1.260&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/lilypond/lilypond/scm/lily.scm.diff?tr1=1.363&tr2=1.364&r1=text&r2=text

Patches:
Index: lilypond/ChangeLog
diff -u lilypond/ChangeLog:1.3797 lilypond/ChangeLog:1.3798
--- lilypond/ChangeLog:1.3797   Sat Jun 18 23:45:10 2005
+++ lilypond/ChangeLog  Sun Jun 19 00:47:16 2005
@@ -1,5 +1,8 @@
 2005-06-19  Han-Wen Nienhuys  <[EMAIL PROTECTED]>
 
+       * scm/lily.scm (lambda): default resolution 101.178 (7 pixels per
+       space).
+
        * Documentation/user/tutorial.itely (Running LilyPond for the
        first time): separate subsections for windows, macos and unix.  
 
@@ -8,6 +11,9 @@
 
 2005-06-18  Han-Wen Nienhuys  <[EMAIL PROTECTED]>
 
+       * Documentation/user/introduction.itely (Engraving): don't include
+       file, add file directly. 
+
        * lily/paper-outputter.cc (file): open file in binary mode. This
        fixes OTF embedding on windows.
 
Index: lilypond/Documentation/user/introduction.itely
diff -u lilypond/Documentation/user/introduction.itely:1.141 
lilypond/Documentation/user/introduction.itely:1.142
--- lilypond/Documentation/user/introduction.itely:1.141        Fri Jun 17 
12:34:06 2005
+++ lilypond/Documentation/user/introduction.itely      Sun Jun 19 00:47:17 2005
@@ -109,7 +109,60 @@
 spot which fragment is which?
 
 @cindex optical spacing
[EMAIL PROTECTED],noindent]{spacing-optical.ly}
[EMAIL PROTECTED] file spacing-optical.
[EMAIL PROTECTED] need to include it here,  because we want two images.
[EMAIL PROTECTED]
+\paper {
+  raggedright = ##t
+  indent = #0.0
+}
+
+music = {
+   c'4 e''4 e'4 b'4 |
+   \stemDown
+   b'8[ e'' a' e'']
+   \stemNeutral
+   e'8[ e'8 e'8 e'8]  
+}
+
+\score
+{
+  \music
+  \layout {
+    \context {
+      \Staff
+      \override NoteSpacing #'stem-spacing-correction = #0.6
+    }
+  }
+}
[EMAIL PROTECTED] lilypond
+
[EMAIL PROTECTED]
+\paper {
+  raggedright = ##t
+  indent = #0.0
+}
+
+music = {
+   c'4 e''4 e'4 b'4 |
+   \stemDown
+   b'8[ e'' a' e'']
+   \stemNeutral
+   e'8[ e'8 e'8 e'8]  
+}
+\score
+{
+  \music
+  \layout {
+    \context {
+      \Staff
+      \override NoteSpacing #'stem-spacing-correction = #0.0
+      \override NoteSpacing #'same-direction-correction = #0.0
+      \override StaffSpacing #'stem-spacing-correction = #0.0
+    }
+  }
+}
[EMAIL PROTECTED] lilypond
 
 @cindex regular rhythms
 @cindex regular spacing
Index: lilypond/Documentation/user/tutorial.itely
diff -u lilypond/Documentation/user/tutorial.itely:1.259 
lilypond/Documentation/user/tutorial.itely:1.260
--- lilypond/Documentation/user/tutorial.itely:1.259    Sat Jun 18 23:45:11 2005
+++ lilypond/Documentation/user/tutorial.itely  Sun Jun 19 00:47:17 2005
@@ -213,8 +213,8 @@
 then process it with the menu command @samp{Compile > Typeset File}.
 The resulting PDF file will be displayed on your screen.
 
-Be warned that first-ever run will take a minute or two, because all
-of the system fonts have to be analyzed first.
+Be warned that the first-ever run will take a minute or two, because
+all of the system fonts have to be analyzed first.
 
 @unnumberedsubsec Windows
 
Index: lilypond/scm/lily.scm
diff -u lilypond/scm/lily.scm:1.363 lilypond/scm/lily.scm:1.364
--- lilypond/scm/lily.scm:1.363 Tue Jun 14 00:44:14 2005
+++ lilypond/scm/lily.scm       Sun Jun 19 00:47:17 2005
@@ -18,7 +18,9 @@
            (old-relative #f
                          "relative for simultaneous music works
 similar to chord syntax")
-           (resolution 90 "resolution for generating bitmaps")
+
+           ;; at 101.178, a staff space is exactly 7 pixels. 
+           (resolution 101.178 "resolution for generating bitmaps")
            (preview-include-book-title #t "include book-titles in preview 
images.")
            (gs-font-load #f
                          "load fonts via Ghostscript.")


_______________________________________________
Lilypond-cvs mailing list
Lilypond-cvs@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-cvs

Reply via email to