CVSROOT:        /cvsroot/lilypond
Module name:    lilypond
Branch:         
Changes by:     Han-Wen Nienhuys <[EMAIL PROTECTED]>    05/08/24 10:37:48

Modified files:
        .              : ChangeLog 
        Documentation/user: advanced-notation.itely basic-notation.itely 
        scm            : define-markup-commands.scm 

Log message:
        * Documentation/user/basic-notation.itely (Measure repeats): add
        countPercentRepeats example.
        
        * Documentation/user/advanced-notation.itely (Other text markup
        issues): remove remark about normal-font.  We have \normal-text

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/lilypond/lilypond/ChangeLog.diff?tr1=1.4072&tr2=1.4073&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/lilypond/lilypond/Documentation/user/advanced-notation.itely.diff?tr1=1.53&tr2=1.54&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/lilypond/lilypond/Documentation/user/basic-notation.itely.diff?tr1=1.39&tr2=1.40&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/lilypond/lilypond/scm/define-markup-commands.scm.diff?tr1=1.110&tr2=1.111&r1=text&r2=text

Patches:
Index: lilypond/ChangeLog
diff -u lilypond/ChangeLog:1.4072 lilypond/ChangeLog:1.4073
--- lilypond/ChangeLog:1.4072   Wed Aug 24 09:03:33 2005
+++ lilypond/ChangeLog  Wed Aug 24 10:37:47 2005
@@ -1,5 +1,11 @@
 2005-08-24  Han-Wen Nienhuys  <[EMAIL PROTECTED]>
 
+       * Documentation/user/basic-notation.itely (Measure repeats): add
+       countPercentRepeats example.
+
+       * Documentation/user/advanced-notation.itely (Other text markup
+       issues): remove remark about normal-font.  We have \normal-text
+
        * input/regression/tie-chord.ly: add note about remaining bugs.
 
        * lily/tie.cc (print): try Tie_column::set_directions () if
Index: lilypond/Documentation/user/advanced-notation.itely
diff -u lilypond/Documentation/user/advanced-notation.itely:1.53 
lilypond/Documentation/user/advanced-notation.itely:1.54
--- lilypond/Documentation/user/advanced-notation.itely:1.53    Tue Aug 23 
03:27:00 2005
+++ lilypond/Documentation/user/advanced-notation.itely Wed Aug 24 10:37:47 2005
@@ -38,7 +38,6 @@
 * Overview of text markup commands::  
 * Font selection::              
 * New dynamic marks::           
-* Other text markup issues::    
 @end menu
 
 
@@ -521,22 +520,6 @@
 @end lilypond
 
 
[EMAIL PROTECTED] Other text markup issues
[EMAIL PROTECTED] Other text markup issues
-
-To use a normal font within a title, you must define it manually
-
[EMAIL PROTECTED]
-#(def-markup-command (normal-font layout props arg) (markup?)
-  "Switch to normal text font"
-  (interpret-markup layout (cons '((font-series . 'medium) (font-shape . 
'upright)) props) arg))
-
[EMAIL PROTECTED]
-  title = [EMAIL PROTECTED] ABCD \normal-font ABCD @}
[EMAIL PROTECTED]
[EMAIL PROTECTED] example
-
-
 
 @node Preparing parts
 @section Preparing parts
@@ -1875,7 +1858,7 @@
 * Balloon help::                
 * Blank music sheet::           
 * Hidden notes::                
-* Shape note heads ::          
+* Shape note heads ::           
 * Easy Notation note heads::    
 * Analysis brackets::           
 * Coloring objects::            
Index: lilypond/Documentation/user/basic-notation.itely
diff -u lilypond/Documentation/user/basic-notation.itely:1.39 
lilypond/Documentation/user/basic-notation.itely:1.40
--- lilypond/Documentation/user/basic-notation.itely:1.39       Mon Aug 22 
22:51:04 2005
+++ lilypond/Documentation/user/basic-notation.itely    Wed Aug 24 10:37:47 2005
@@ -2931,15 +2931,27 @@
 }
 @end lilypond
 
-Isolated percents can also be printed. This is done by putting a multi
-measure rest, with a different print function,
+Measure repeats of more than 2 measures get a counter, if you switch
+on the @code{countPercentRepeats} property,
+
[EMAIL PROTECTED], quote,verbatim,raggedright]
+\set countPercentRepeats = ##t
+\new Voice
+  \repeat "percent" 4 { c1 }
[EMAIL PROTECTED] lilypond
+
 
 
+Isolated percents can also be printed. This is done by putting a multi
+measure rest with a different print function,
+
 @lilypond[fragment,verbatim]
 \override MultiMeasureRest #'print-function
   = #Multi_measure_rest::percent
 R1
 @end lilypond
+
+
 
 
 @seealso
Index: lilypond/scm/define-markup-commands.scm
diff -u lilypond/scm/define-markup-commands.scm:1.110 
lilypond/scm/define-markup-commands.scm:1.111
--- lilypond/scm/define-markup-commands.scm:1.110       Thu Aug 11 11:17:00 2005
+++ lilypond/scm/define-markup-commands.scm     Wed Aug 24 10:37:47 2005
@@ -384,10 +384,10 @@
 
 
 (define (wordwrap-stencils stencils
-                          justify base-space line-width 
-                          )
+                          justify base-space line-width)
   
   "Perform simple wordwrap, return stencil of each line."
+  
   (define space (if justify
                    
                    ;; justify only stretches lines.
@@ -771,8 +771,10 @@
   "Set all font related properties (except the size) to get the default normal 
text font, no matter what font was used earlier."
   ;; ugh - latin1
   (interpret-markup layout
-                    (cons '((font-family . roman) (font-shape . upright) 
(font-series . medium) (font-encoding . latin1)) props)
-                    arg)) 
+                    (cons '((font-family . roman) (font-shape . upright)
+                           (font-series . medium) (font-encoding . latin1))
+                         props)
+                    arg))
 
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 ;; symbols.


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

Reply via email to