/usr/share/doc/fweb/html-info/Output-files.html is in fweb-doc 1.62-13.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<!-- Created by GNU Texinfo 6.1, http://www.gnu.org/software/texinfo/ -->
<head>
<title>FWEB: Output files</title>
<meta name="description" content="FWEB: Output files">
<meta name="keywords" content="FWEB: Output files">
<meta name="resource-type" content="document">
<meta name="distribution" content="global">
<meta name="Generator" content="makeinfo">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link href="index.html#Top" rel="start" title="Top">
<link href="Concept-index.html#Concept-index" rel="index" title="Concept index">
<link href="Parameter-index.html#SEC_Contents" rel="contents" title="Table of Contents">
<link href="Files.html#Files" rel="up" title="Files">
<link href="Change-files.html#Change-files" rel="next" title="Change files">
<link href="Completion.html#Completion" rel="prev" title="Completion">
<style type="text/css">
<!--
a.summary-letter {text-decoration: none}
blockquote.indentedblock {margin-right: 0em}
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
blockquote.smallquotation {font-size: smaller}
div.display {margin-left: 3.2em}
div.example {margin-left: 3.2em}
div.lisp {margin-left: 3.2em}
div.smalldisplay {margin-left: 3.2em}
div.smallexample {margin-left: 3.2em}
div.smalllisp {margin-left: 3.2em}
kbd {font-style: oblique}
pre.display {font-family: inherit}
pre.format {font-family: inherit}
pre.menu-comment {font-family: serif}
pre.menu-preformatted {font-family: serif}
pre.smalldisplay {font-family: inherit; font-size: smaller}
pre.smallexample {font-size: smaller}
pre.smallformat {font-family: inherit; font-size: smaller}
pre.smalllisp {font-size: smaller}
span.nolinebreak {white-space: nowrap}
span.roman {font-family: initial; font-weight: normal}
span.sansserif {font-family: sans-serif; font-weight: normal}
ul.no-bullet {list-style: none}
-->
</style>
</head>
<body lang="en">
<a name="Output-files"></a>
<div class="header">
<p>
Next: <a href="Change-files.html#Change-files" accesskey="n" rel="next">Change files</a>, Previous: <a href="Input-files.html#Input-files" accesskey="p" rel="prev">Input files</a>, Up: <a href="Files.html#Files" accesskey="u" rel="up">Files</a> [<a href="Parameter-index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Concept-index.html#Concept-index" title="Index" rel="index">Index</a>]</p>
</div>
<hr>
<a name="Output-files-1"></a>
<h3 class="section">3.2 Output files</h3>
<a name="index-Files_002c-output"></a>
<p><small>FWEAVE</small> writes a variety of output files.
</p>
<blockquote>
<p><samp><i>name</i>.tex</samp> — Woven output to be processed with LaTeX.
</p>
<p><samp>CONTENTS.tex</samp> — Temporary file that accumulates
Table-of-Contents information. (For LaTeX, the <samp>aux</samp> file is
used instead.)
<a name="index-CONTENTS_002etex"></a>
</p>
<p><samp>INDEX.tex</samp> — Temporary file that stores indexing information.
<a name="index-INDEX_002etex"></a>
</p>
<p><samp>MODULES.tex</samp> — Temporary files that stores module list.
<a name="index-MODULES_002etex"></a>
</p></blockquote>
<p><a name="index-Output-files_002c-changing-names-of"></a>
The names of the three temporary files can be changed with style-file
parameters (see <a href="Style.html#Style">Style</a>). Commonly, one may put into the style file
<samp>fweb.sty</samp> commands such as
</p>
<div class="example">
<pre class="example">index.tex "#.ndx"
modules.tex "#.mds"
contents.tex "#.cts"
</pre></div>
<p>The ‘<samp>#</samp>’ is replaced by the root name of the <code>web</code> file.
</p>
<p><small>FTANGLE</small> writes files of the form
</p>
<blockquote>
<p><samp><i>name</i>.<i>ext</i></samp> — Compilable output file.
</p></blockquote>
<p>The extensions for the compilable output file(s) have certain defaults,
but can be changed by style-file parameters according to the following
table:
</p>
<blockquote>
<table>
<tr><td><span class="roman">Language</span></td><td><span class="roman">Style-file entry</span></td><td><span class="roman"><small>UNIX</small> default</span></td><td><span class="roman">non-<small>UNIX</small> default</span></td></tr>
<tr><td>C</td><td><code>suffix.C</code></td><td><code>c</code></td><td><code>c</code></td></tr>
<tr><td>C++</td><td><code>suffix.Cpp</code></td><td><code>C</code></td><td><code>C</code></td></tr>
<tr><td>Fortran–77</td><td><code>suffix.N</code></td><td><code>f</code></td><td><code>for</code></td></tr>
<tr><td>Fortran–90</td><td><code>suffix.N90</code></td><td><code>f90</code></td><td><code>for90</code></td></tr>
<tr><td>Ratfor–77</td><td><code>suffix.R</code></td><td><code>r</code></td><td><code>rat</code></td></tr>
<tr><td>Ratfor–90</td><td><code>suffix.R90</code></td><td><code>r90</code></td><td><code>rat90</code></td></tr>
<tr><td>TeX</td><td><code>suffix.X</code></td><td><code>sty</code></td><td><code>sty</code></td></tr>
<tr><td>VERBATIM</td><td><code>suffix.V</code></td><td><code>mk</code></td><td><code>mk</code></td></tr>
</table>
</blockquote>
<p>For example, to change the default extension for a C++ file from
‘<samp>C</samp>’ to ‘<samp>c++</samp>’, put into <samp>fweb.sty</samp> the line
</p>
<div class="example">
<pre class="example">suffix.C = "c++"
</pre></div>
</body>
</html>
|