> From: Sean C Sieger <[EMAIL PROTECTED]>
> Date: Thu, 16 Jun 2005 01:34:20 -0400
> 
> Did...
> 
> makeinfo rms-essays.texi
> 
> and got...
> 
> /home/sean/rms-essays//editorsnote.texi:130: Unknown command 
> `unnumberedfootnote'.
> /home/sean/rms-essays//editorsnote.texi:130: Misplaced {.
> /home/sean/rms-essays//editorsnote.texi:137: Misplaced }.

These happen because the command `unnumberedfootnote' was defined for
TeX, but not for other forms of output.  The easiest way to work
around this is to add these 3 lines

@ifnottex
@alias unnumberedfootnote = footnote
@end ifnottex

to the beginning of rms-essays.texi.

> /home/sean/rms-essays//software_note.texi:26: warning: @image file 
> `images/code.txt' (for text) unreadable: No such file or directory.

To fix these, add the missing *.txt files.  If you don't care about
the images, an empty file will do.

> /home/sean/rms-essays//topic_guide.texi:21: Unknown command `sp1'.

Add this

@ifnottex
@macro sp1
@sp 1
@end macro
@end ifnottex

to the beginning of rms-essays.texi.

> /home/sean/rms-essays//fs_for_freedom.texi:40: Misplaced }.
> /home/sean/rms-essays//fs_for_freedom.texi:52: Misplaced {.

These happen only in fs_for_freedom.texi because it uses invalid
syntax:

   @heading{Comparing the Two Terms}

But @heading should not use braces.  Solution: remove the braces.


_______________________________________________
Texinfo home page: http://www.gnu.org/software/texinfo
[email protected]
http://lists.gnu.org/mailman/listinfo/help-texinfo

Reply via email to