gnu-music-discuss
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: more lily questions


From: Mats Bengtsson
Subject: Re: more lily questions
Date: Thu, 25 Jan 2001 00:58:18 +0100

> 1. I'm trying to remove the page numbers from ly2dvi output.  the
>    command-line argument -N to ly2dvi doesn't seem to do the trick,
>    however, althought that's the advertised option.

The patch below should solve this bug.

> 2. I'm using commands like:
> 
>      \property Voice.Rest \override #'staff-position = #4
> 
>    to shift rests around.  These work except when I typeset a whole
>    rest with "R" (capital "R").  These rests always stay in the
>    middle, which is not usable when writing counterpoint.

Try \property Voice.MultiMeasureRest \override #'staff-position = #4


   /Mats

---------------------------------------------
diff -u scripts/ly2dvi.py~ scripts/ly2dvi.py
--- scripts/ly2dvi.py~  Wed Jan 17 14:15:35 2001
+++ scripts/ly2dvi.py   Thu Jan 25 00:55:12 2001
@@ -259,7 +259,6 @@
 \usepackage[latin1]{inputenc} 
 %%\usepackage[T1]{fontenc} 
 %%
-%s 
 %% don not waste unused space at bottom of page
 %% (unless we have footnotes ...)
 %%\headheight9pt
@@ -274,10 +273,11 @@
 %% UGR.
 address@hidden,}\quad\textbf{\thepage}}\hfil}%%
 address@hidden
+%s
 \begin{document}
 """ % ( program_id(), Props.get('filename'), now, Props.get('papersize'),
-        Props.get('language'), Props.get('pagenumber'), Props.get('linewidth'),
-        textheightsetting, Props.get('orientation'), Props.get('header') )
+        Props.get('language'), Props.get('linewidth'), textheightsetting, 
+        Props.get('orientation'), Props.get('header'), Props.get('pagenumber'))
         
         base, ext = os.path.splitext(file)
         this.__base = base



reply via email to

[Prev in Thread] Current Thread [Next in Thread]