From: Han-Wen Nienhuys Date: Sun, 19 Jun 2005 00:47:17 +0000 (+0000) Subject: * scm/lily.scm (lambda): default resolution 101.178 (7 pixels per X-Git-Tag: release/2.6.0~33 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=d4343c4c9e7590c9f4bf9bc01a3f3dc3aa3e22cc;p=lilypond.git * 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. --- diff --git a/ChangeLog b/ChangeLog index 2fee536c38..4ea75e8de8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2005-06-19 Han-Wen Nienhuys + * 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 + * 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. diff --git a/Documentation/user/introduction.itely b/Documentation/user/introduction.itely index 39fad96e90..4c218c765d 100644 --- a/Documentation/user/introduction.itely +++ b/Documentation/user/introduction.itely @@ -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 diff --git a/Documentation/user/tutorial.itely b/Documentation/user/tutorial.itely index 0ce658214a..7a2aa105d9 100644 --- a/Documentation/user/tutorial.itely +++ b/Documentation/user/tutorial.itely @@ -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 diff --git a/scm/lily.scm b/scm/lily.scm index 62948b224a..68a822d93a 100644 --- a/scm/lily.scm +++ b/scm/lily.scm @@ -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.")