diff options
Diffstat (limited to 'Master/texmf-doc/doc/english/FAQ-en/html/FAQ-verbfile.html')
-rw-r--r-- | Master/texmf-doc/doc/english/FAQ-en/html/FAQ-verbfile.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Master/texmf-doc/doc/english/FAQ-en/html/FAQ-verbfile.html b/Master/texmf-doc/doc/english/FAQ-en/html/FAQ-verbfile.html index 75137f91bb4..ce82fb7b42c 100644 --- a/Master/texmf-doc/doc/english/FAQ-en/html/FAQ-verbfile.html +++ b/Master/texmf-doc/doc/english/FAQ-en/html/FAQ-verbfile.html @@ -2,7 +2,7 @@ <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öpf's <i>verbatim</i> package, +<p>A good way is to use Rainer Schöpf’s <i>verbatim</i> package, which provides a command <code>\verbatiminput</code> that takes a file name as argument: <blockquote> @@ -11,10 +11,10 @@ argument: ... \verbatiminput{verb.txt} </pre> -</blockquote> +</blockquote><p> Another way is to use the <code>alltt</code> environment, which requires the <i>alltt</i> package. The environment interprets its -contents 'mostly' verbatim, but executes any (La)TeX commands it +contents ‘mostly’ verbatim, but executes any (La)TeX commands it finds: <blockquote> <pre> @@ -24,14 +24,14 @@ finds: \input{verb.txt} \end{alltt} </pre> -</blockquote> +</blockquote><p> of course, this is little use for inputting (La)TeX source code... <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's <code>listing</code> environment and the +the input (the package’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): @@ -41,7 +41,7 @@ to the facilities of the <i>verbatim</i> package): ... \verbinput{verb.txt} </pre> -</blockquote> +</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 |