summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/generic/FAQ-en/html/FAQ-verbfile.html
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/doc/generic/FAQ-en/html/FAQ-verbfile.html')
-rw-r--r--Master/texmf-dist/doc/generic/FAQ-en/html/FAQ-verbfile.html62
1 files changed, 0 insertions, 62 deletions
diff --git a/Master/texmf-dist/doc/generic/FAQ-en/html/FAQ-verbfile.html b/Master/texmf-dist/doc/generic/FAQ-en/html/FAQ-verbfile.html
deleted file mode 100644
index 089679f7c6d..00000000000
--- a/Master/texmf-dist/doc/generic/FAQ-en/html/FAQ-verbfile.html
+++ /dev/null
@@ -1,62 +0,0 @@
-<head>
-<title>UK TeX FAQ -- question label verbfile</title>
-</head><body>
-<h3>Including a file verbatim in LaTeX</h3>
-<p/>A good way is to use Rainer Sch&#246;pf&#8217;s <i>verbatim</i> package,
-which provides a command <code>\</code><code>verbatiminput</code> that takes a file name as
-argument:
-<blockquote>
-<pre>
-\usepackage{verbatim}
-...
-\verbatiminput{verb.txt}
-</pre>
-</blockquote><p>
-Another way is to use the <code>alltt</code> environment, which
-requires the <i>alltt</i> package. The environment interprets its
-contents &#8216;mostly&#8217; verbatim, but executes any (La)TeX commands it
-finds:
-<blockquote>
-<pre>
-\usepackage{alltt}
-...
-\begin{alltt}
-\input{verb.txt}
-\end{alltt}
-</pre>
-</blockquote><p>
-of course, this is little use for inputting (La)TeX source
-code&#8230;
-<p/>The <i>moreverb</i> package extends the <i>verbatim</i> package,
-providing a <code>listing</code> environment and a <code>\</code><code>listinginput</code>
-command, which line-number the text of the file. The package also has
-a <code>\</code><code>verbatimtabinput</code> command, that honours TAB characters in
-the input (the package&#8217;s <code>listing</code> environment and the
-<code>\</code><code>listinginput</code> command also both honour TAB).
-<p/>The <i>sverb</i> package provides verbatim input (without recourse
-to the facilities of the <i>verbatim</i> package):
-<blockquote>
-<pre>
-\usepackage{sverb}
-...
-\verbinput{verb.txt}
-</pre>
-</blockquote><p>
-<p/>The <i>fancyvrb</i> package offers configurable implementations of
-everything <i>verbatim</i>, <i>sverb</i> and <i>moreverb</i>
-have, and more besides. It is nowadays the package of choice for the
-discerning typesetter of verbatim text, but its wealth of facilities
-makes it a complex beast and study of the documentation is strongly
-advised.
-<p/>The <i>memoir</i> class includes the relevant functionality of the
-<i>verbatim</i> and <i>moreverb</i> packages.
-<dl>
-<dt><tt><i>alltt.sty</i></tt><dd>Part of the LaTeX distribution.
-<dt><tt><i>fancyvrb.sty</i></tt><dd><a href="http://mirror.ctan.org/macros/latex/contrib/fancyvrb.zip">macros/latex/contrib/fancyvrb</a> (or <a href="http://mirror.ctan.org/macros/latex/contrib/fancyvrb/">browse the directory</a>); <a href="http://mirror.ctan.org/help/Catalogue/entries/fancyvrb.html">catalogue entry</a>
-<dt><tt><i>memoir.cls</i></tt><dd><a href="http://mirror.ctan.org/macros/latex/contrib/memoir.zip">macros/latex/contrib/memoir</a> (or <a href="http://mirror.ctan.org/macros/latex/contrib/memoir/">browse the directory</a>); <a href="http://mirror.ctan.org/help/Catalogue/entries/memoir.html">catalogue entry</a>
-<dt><tt><i>moreverb.sty</i></tt><dd><a href="http://mirror.ctan.org/macros/latex/contrib/moreverb.zip">macros/latex/contrib/moreverb</a> (or <a href="http://mirror.ctan.org/macros/latex/contrib/moreverb/">browse the directory</a>); <a href="http://mirror.ctan.org/help/Catalogue/entries/moreverb.html">catalogue entry</a>
-<dt><tt><i>sverb.sty</i></tt><dd>Distributed as part of <a href="http://mirror.ctan.org/macros/latex/contrib/mdwtools.zip">macros/latex/contrib/mdwtools</a> (or <a href="http://mirror.ctan.org/macros/latex/contrib/mdwtools/">browse the directory</a>); <a href="http://mirror.ctan.org/help/Catalogue/entries/sverb.html">catalogue entry</a>
-<dt><tt><i>verbatim.sty</i></tt><dd>Distributed as part of <a href="http://mirror.ctan.org/macros/latex/required/tools.zip">macros/latex/required/tools</a> (or <a href="http://mirror.ctan.org/macros/latex/required/tools/">browse the directory</a>); <a href="http://mirror.ctan.org/help/Catalogue/entries/verbatim.html">catalogue entry</a>
-</dl>
-<p/><p>This question on the Web: <a href="http://www.tex.ac.uk/cgi-bin/texfaq2html?label=verbfile">http://www.tex.ac.uk/cgi-bin/texfaq2html?label=verbfile</a>
-</body>