]> git.donarmstrong.com Git - lilypond.git/commitdiff
* scm/lily.scm (lambda): default resolution 101.178 (7 pixels per
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Sun, 19 Jun 2005 00:47:17 +0000 (00:47 +0000)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Sun, 19 Jun 2005 00:47:17 +0000 (00:47 +0000)
space).

* Documentation/user/tutorial.itely (Running LilyPond for the
first time): separate subsections for windows, macos and unix.

ChangeLog
Documentation/user/introduction.itely
Documentation/user/tutorial.itely
scm/lily.scm

index 2fee536c3823b74b6bed8b5892fe434301a2c78e..4ea75e8de80acfe7537025010bb790543bc4b330 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2005-06-19  Han-Wen Nienhuys  <hanwen@xs4all.nl>
 
+       * 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  <hanwen@xs4all.nl>
 
+       * 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 39fad96e9068a8000e971fc5af999d888e301819..4c218c765db0bb9e019ea45cc3c4208f248ee021 100644 (file)
@@ -109,7 +109,60 @@ exact mathematical spacing, and once with corrections.  Can you
 spot which fragment is which?
 
 @cindex optical spacing
-@lilypondfile[quote,noindent]{spacing-optical.ly}
+@c file spacing-optical.
+@c need to include it here,  because we want two images.
+@lilypond
+\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
+    }
+  }
+}
+@end lilypond
+
+@lilypond
+\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
+    }
+  }
+}
+@end lilypond
 
 @cindex regular rhythms
 @cindex regular spacing
index 0ce658214a89adbb62dab0386d6e6a842cc02eb5..7a2aa105d95624dccb9a2b78868f321e32a1ca9a 100644 (file)
@@ -213,8 +213,8 @@ file. Save it, for example, to @file{test.ly} on your Desktop, and
 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 62948b224a4b54d168afb193d6b9b2c424aaa36f..68a822d93aa9a5b6686e8f2414b6949933798c86 100644 (file)
@@ -18,7 +18,9 @@ on errors, and print a stack trace.")
            (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.")