]> git.donarmstrong.com Git - lilypond.git/commitdiff
(texidoc): transpose up
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Thu, 28 Aug 2003 21:59:56 +0000 (21:59 +0000)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Thu, 28 Aug 2003 21:59:56 +0000 (21:59 +0000)
ChangeLog
Documentation/user/refman.itely
input/regression/breathing-sign.ly
python/lilylib.py

index 5a1829afb1fdbcb4cadc71287d1f0d8305c77271..de8abbeea205c20d81377033ca4d672c550dd2c8 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2003-08-29  Han-Wen Nienhuys  <hanwen@cs.uu.nl>
+
+       * input/regression/breathing-sign.ly (texidoc): transpose up
+
 2003-08-28  Juergen Reuter  <reuter@ipd.uka.de>
 
        * input/regression/breathing-sign.ly: changed ancient examples to
@@ -9,6 +13,9 @@
 
 2003-08-28  Han-Wen Nienhuys  <hanwen@cs.uu.nl>
 
+       * Documentation/user/refman.itely (Clef): give example of G_8 clef.
+       (Clef): index entries for clefs.
+
        * python/lilylib.py (system): remove errorlog files.
        
 2003-08-28  Heikki Junes  <hjunes@cc.hut.fi>
index f9a4e53500c319befdbb842ad7f9c21b4138e1c9..75b58f153bd64976ccee1056adacf8dcc3c9b5ce 100644 (file)
@@ -881,25 +881,36 @@ The clef can be set or changed with the @code{\clef} command:
 Supported clef-names include:
 @c Moved standard clefs to the top /MB
 @table @code
+@cindex treble clef
+@cindex violin clef
 @item treble, violin, G, G2
 G clef on 2nd line
 @item alto, C
+@cindex alto clef 
  C clef on 3rd line
 @item tenor
- C clef on 4th line
+@cindex tenor clef 
+ C clef on 4th line. 
 @item bass, F
+@cindex bass clef
  F clef on 4th line
 @item french
+@cindex french clef
  G clef on 1st line, so-called French violin clef
 @item soprano
+@cindex soprano clef
  C clef on 1st line
 @item mezzosoprano
+@cindex mezzosoprano clef
  C clef on 2nd line
 @item baritone
+@cindex baritone clef
  C clef on 5th line
 @item varbaritone
+@cindex varbaritone clef
  F clef on 3rd line
 @item subbass
+@cindex subbass clef
  F clef on 5th line
 @item percussion
  percussion clef
@@ -909,9 +920,12 @@ By adding @code{_8} or @code{^8} to the clef name, the clef is
 transposed one octave down or up, respectively. Argument @var{clefname} 
 must be enclosed in quotes when it contains underscores or digits. For
 example,
-@example
-       \clef "G_8"
-@end example
+
+
+@cindex choral tenor clef  
+@lilypond[verbatim,fragment,relative]
+       \clef "G_8" c4
+@end lilypond
 
 This command is equivalent to setting @code{clefGlyph},
 @code{clefPosition} (which controls the Y position of the clef),
index 35cbe66591b728b347a9eaa646a70468846686c0..bef66328e3895db6b285c95c8f8e5b1e3fb8c530 100644 (file)
@@ -21,12 +21,13 @@ finalis, the latter three looking similar to bar glyphs.
 \include "gregorian-init.ly"
 
 \score {
+
   {
     %
     % Modern notation:
     %
-    \context Staff {
-      \notes \relative c' {
+    \new Staff {
+      \notes \relative c'' {
        \key es \major \time 3/4
 
        % this bar contains no \breathe
index e221817bd12b9791d1301548fa87f62311787379..ba339854bccbdd17244d1a22bc91a7bda353db77 100644 (file)
@@ -260,7 +260,6 @@ def read_pipe (cmd, mode = 'r'):
        signal = 0x0f & status
        exit_status = status >> 8
 
-       print 'errorlog', error_log_file 
        if status:
                error (_ ("`%s\' failed (%d)") % (cmd, exit_status))
                
@@ -280,9 +279,7 @@ def read_pipe (cmd, mode = 'r'):
                progress ('\n')
 
        if error_log_file:
-               print 'unlinking errorlog', error_log_file 
                os.unlink (error_log_file)
-       print 'reachin end', error_log_file 
                
        return output