]> git.donarmstrong.com Git - lilypond.git/commitdiff
(Lilypond_snippet.notice_include):
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Sun, 8 Feb 2004 23:20:27 +0000 (23:20 +0000)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Sun, 8 Feb 2004 23:20:27 +0000 (23:20 +0000)
write .dep file.

Documentation/user/refman.itely
scripts/lilypond-book.py

index 2aa79478bebe908bdf1a8316f2562aa35f6cc271..5f7b04d4bcb771a4e9cfdb32a07b6e2703cb94db 100644 (file)
@@ -7533,7 +7533,6 @@ treatment of the difference between translation and layout.
 * Applyoutput::                 
 * Font selection::              
 * Text markup::                 
-* Common text markup commands::  
 @end menu
 
 
@@ -8061,9 +8060,10 @@ to more words:
 
 @noindent
 For clarity, you can also do this for single arguments, e.g.
-@example
-  \markup @{ is \italic @{ anyone @} home @}
-@end example
+
+@verbatim
+  \markup { is \italic { anyone } home }
+@end verbatim
 
 @cindex font size, texts
 
@@ -8071,8 +8071,14 @@ For clarity, you can also do this for single arguments, e.g.
 
 
 
+@menu
+* Common text markup commands::  
+* Markup construction in scheme::  
+* Markup command definition::   
+@end menu
+
 @node Common text markup commands
-@subsection Common text markup commands
+@subsubsection Common text markup commands
 
 
 The following size commands set absolute sizes:
index fe1157ccbd32350480e9d468580480137375d8a4..31f81f9b305f07a88a15ddebadee5913fa940667 100644 (file)
@@ -526,11 +526,11 @@ class Lilypond_snippet (Snippet):
                         + output[LATEX][AFTER])
                str += ('\n@end tex\n')
                
-               str += ('\n@html\n')
+               str += ('\n\n@html\n')
                str += (output[HTML][BEFORE] 
                        + (output[HTML][OUTPUT] % vars ())
                        + output[HTML][AFTER])
-               str += ('\n@end html\n')
+               str += ('\n@end html\n\n') # need par after picture.
 
                if  VERBATIM in self.options:
                        verb = verbatim_texinfo (self.substring ('code'))
@@ -796,7 +796,7 @@ def do_file (input_filename):
        output_file.writelines ([s.replacement_text () for s in chunks])
 
 
-       included_files = []
+       included_files = [input_filename]
        def notice_include (target, snip):
                included_files.append (snip.match.group ('filename'))
                included_files.append (os.path.join (output_name, snip.processed_filename ()))