From 49d69f1f1904e021a0e5b3349a778a353df11ea2 Mon Sep 17 00:00:00 2001 From: Mats Bengtsson Date: Tue, 22 Aug 2000 23:23:00 +0200 Subject: [PATCH] patch::: 1.3.80.mb1 1.3.80.mb1 ========== * Added two faq:s --- CHANGES | 5 +++++ Documentation/faq.texi | 43 ++++++++++++++++++++++++++++++++++++++++-- VERSION | 2 +- input/test/pedal.ly | 2 ++ 4 files changed, 49 insertions(+), 3 deletions(-) diff --git a/CHANGES b/CHANGES index 30dc75fd56..cea71eafa6 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,8 @@ +1.3.80.mb1 +========== + +* Added two faq:s + 1.3.79.jcn5 =========== diff --git a/Documentation/faq.texi b/Documentation/faq.texi index c7d8cd5d21..204e4d8777 100644 --- a/Documentation/faq.texi +++ b/Documentation/faq.texi @@ -181,9 +181,48 @@ Yes. See @file{input/test/grace.ly}. @node How do I -,, ,top @section How do I .... -@subsubsection How do I change the TeX layout? +@subsubsection How do I change the page layout? + +The height and width of the music on each page is set +using the paper variables @code{textheight} and @code{linewidth} in +the input file. +If you want to change the placement of the page number or the +layout of the title, you could run @code{lilypond infile.ly} and +include the generated @file{infile.tex} file in your own LaTeX +wrapper file. The easiest way is to start from the ly2dvi default +layout, using the following steps (assuming that the input file +is @file{infile.ly}: -See @file{lilyponddefs.tex}, it has some comments. Or use @file{ly2dvi}. +@itemize @bullet + + @item @code{ly2dvi -kK infile.ly} + + @item Edit the generated LaTeX file @file{infile_lyN.tex} (@code{N} is + some number) to get the desired layout. Some aspects are determined in + the file titledefs.tex. + + @item Run @code{latex infile_lyN.tex} + + @item If you update the Mudela file, run @code{lilypond infile.ly} + and then @code{latex infile_lyN.tex}. +@end itemize +Another alternative is to use @command{mudela-book}, where smaller or +larger music examples can be included in a LaTeX or Texinfo file. + +@subsubsection The tagline is visible in the .dvi file but is not printed on paper. + +The default page size is A4. If you use letter sized papers, +add the following at the top of your Mudela file. +@example +\paper@{ + papersize="letter"; +@} +\include "paper20.ly" +@end example +(Note that setting the papersize in the ordinary paper section inside +a score declaration will not have the desired effect.) +The default paper size can be set globally for the installation +in the file @file{declarations.ly}. @subsubsection How do I place lyrics under @emph{each} of the staves in a score, as choral music. I can work out how to put lyrics for each line all under the top line, or at the bottom but not between! diff --git a/VERSION b/VERSION index 023d39ade9..2fdcdd0a30 100644 --- a/VERSION +++ b/VERSION @@ -2,7 +2,7 @@ PACKAGE_NAME=LilyPond MAJOR_VERSION=1 MINOR_VERSION=3 PATCH_LEVEL=80 -MY_PATCH_LEVEL= +MY_PATCH_LEVEL=mb1 # use the above to send patches: MY_PATCH_LEVEL is always empty for a # released version. diff --git a/input/test/pedal.ly b/input/test/pedal.ly index a30ab93a09..1215159943 100644 --- a/input/test/pedal.ly +++ b/input/test/pedal.ly @@ -4,6 +4,8 @@ c4\sustaindown d e f\sustainup g\sustaindown b c c, [d16 \sustainup \sustaindown c c c] [e e \sustainup \sustaindown e e ] f4 \sustainup g\sustaindown b c \property Staff.stopStartSustain = #"-P" \property Staff.startSustain = #"P" +\property Staff.sustainPedalPadding = #10 + c,\sustainup\sustaindown d e f \sustainup g\sustaindown b c } \paper{ -- 2.39.5