Next: , Up: Sample Texinfo Files


C.1 短い例

コメントの無い完全なTexinfoファイルの短い見本は以下のようになります.最 初の章でコメント付きのこのファイルを見ることが可能です.See Short Sample.

概略:makeinfoプログラムは,以下のようなTexinfoソースファイルを InfoファイルやHTMLファイルに変換します.そして,TeXは印刷されたマニュ アルに植字します.


     \input texinfo   @c -*-texinfo-*-
     @c %**start of header
     @setfilename sample.info
     @settitle Sample Manual 1.0
     @c %**end of header
     
     @copying
     This is a short example of a complete Texinfo file.
     
     Copyright (C) 2002 Free Software Foundation, Inc.
     @end copying
     
     @titlepage
     @title Sample Title
     @page
     @vskip 0pt plus 1filll
     @insertcopying
     @end titlepage
     
     @c Output the table of the contents at the beginning.
     @contents
     
     @ifnottex
     @node Top
     @top GNU Sample
     
     @insertcopying
     @end ifnottex
     
     @menu
     * First Chapter::    The first chapter is the
                           only chapter in this sample.
     * Index::            Complete index.
     @end menu
     
     
     @node First Chapter
     @chapter First Chapter
     
     @cindex chapter, first
     
     This is the first chapter.
     @cindex index entry, another
     
     Here is a numbered list.
     
     @enumerate
     @item
     This is the first item.
     
     @item
     This is the second item.
     @end enumerate
     
     
     @node Index
     @unnumbered Index
     
     @printindex cp
     
     @bye